15 lines
213 B
Plaintext
15 lines
213 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
string sTag;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
|
||
|
sTag = GetLocalString(GetPCSpeaker(),"QuestStep1Mob");
|
||
|
|
||
|
if (!GetIsObjectValid(GetObjectByTag(sTag)))
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|