20 lines
360 B
Plaintext
20 lines
360 B
Plaintext
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;
|
|
}
|
|
|