Alangara_PRC8/_module/nss/bastorian_q1_d_4.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

36 lines
810 B
Plaintext

#include "mn_i_pwfunctions"
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetHitDice(oPC) < 20) return FALSE;
// *** Have the hammer *** //
if (GetItemPossessedBy(oPC, "alchymihammer") == OBJECT_INVALID) return FALSE;
// *** Have the 3 Crystals *** //
if (GetItemPossessedBy(oPC, "focuscrystal1") == OBJECT_INVALID) return FALSE;
if (GetItemPossessedBy(oPC, "focuscrystal2") == OBJECT_INVALID) return FALSE;
if (GetItemPossessedBy(oPC, "focuscrystal2") == OBJECT_INVALID) return FALSE;
if (GetGold(oPC) < 25000) return FALSE;
// return TRUE;
// *** has done the first quest *** //
string questId = "quest_0301";
int iResult;
iResult = CheckQuestStatus(GetPCSpeaker(), questId, QUEST_COMPLETED);
return iResult;
}