21 lines
430 B
Plaintext
21 lines
430 B
Plaintext
#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 == 131)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|
|
|