17 lines
282 B
Plaintext
17 lines
282 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
string sQuestTargetMob;
|
|
object oTarget;
|
|
|
|
iResult = TRUE;
|
|
|
|
sQuestTargetMob = GetLocalString(GetPCSpeaker(),"QuestTargetMob");
|
|
oTarget = GetObjectByTag(sQuestTargetMob);
|
|
if (!GetIsObjectValid(oTarget))
|
|
iResult = FALSE;
|
|
|
|
return iResult;
|
|
}
|
|
|