EN4_PRC8/_module/nss/rd_chkazone.nss

19 lines
363 B
Plaintext
Raw Normal View History

int StartingConditional()
{
int iResult;
int iQuest;
string sQuestGiver;
iResult = FALSE;
iQuest = GetLocalInt(GetPCSpeaker(),"Quest");
sQuestGiver = GetLocalString(GetPCSpeaker(),"QuestGiver");
if (GetLocalInt(GetModule(),"AdventureZone") == 1)
iResult = TRUE;
if (iQuest > 0 && sQuestGiver == GetTag(OBJECT_SELF))
iResult = FALSE;
return iResult;
}