EN4_PRC8/_module/nss/qst_c_host1.nss

20 lines
360 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)
iResult = TRUE;
return iResult;
}