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