EN4_PRC8/_module/nss/qst_onquest.nss

18 lines
293 B
Plaintext
Raw Normal View History

int StartingConditional()
{
int iResult;
int iQuest;
string sQuestGiver;
string sQuestTarget;
iQuest = GetLocalInt(GetPCSpeaker(),"Quest");
iResult = FALSE;
if (iQuest > 0 && sQuestGiver == GetTag(OBJECT_SELF) && sQuestTarget != GetTag(OBJECT_SELF))
iResult = TRUE;
return iResult;
}