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