36 lines
810 B
Plaintext
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;
|
|
|
|
}
|