EN4_PRC8/_module/nss/nh_q3_c6.nss

17 lines
282 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
int iResult;
object oMob;
iResult = FALSE;
if (GetLocalInt(GetPCSpeaker(),"NHQuest") == 5)
{
oMob = GetObjectByTag(GetLocalString(OBJECT_SELF,"QuestCreatures"));
if (!GetIsObjectValid(oMob))
iResult = TRUE;
}
return iResult;
}