EN4_PRC8/_module/nss/qst_c_overall2.nss

21 lines
430 B
Plaintext
Raw Permalink Normal View History

#include "sql_db_partywide"
int StartingConditional()
{
int iResult;
int iOverallQuest;
string sQuestTargetMob;
object oTarget;
iResult = FALSE;
iOverallQuest = SQLocalsUUID_GetInt(GetPCSpeaker(),"OverallQuest");
sQuestTargetMob = GetLocalString(GetPCSpeaker(),"QuestTargetMob");
oTarget = GetObjectByTag(sQuestTargetMob);
if (!GetIsObjectValid(oTarget) && iOverallQuest == 110)
iResult = TRUE;
return iResult;
}