EN4_PRC8/_module/nss/qst_c_1_1.nss

20 lines
430 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
int iResult;
int iQuest;
string sQuestTargetMob;
object oTarget;
iQuest = GetLocalInt(GetPCSpeaker(),"QuestType");
iResult = FALSE;
sQuestTargetMob = GetLocalString(GetPCSpeaker(),"QuestTargetMob");
oTarget = GetObjectByTag(sQuestTargetMob);
if (!GetIsObjectValid(oTarget) && iQuest == 1 && GetLocalString(GetPCSpeaker(),"QuestGiver") == GetTag(OBJECT_SELF))
iResult = TRUE;
return iResult;
}