14 lines
207 B
Plaintext
14 lines
207 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
string sTag;
|
|
|
|
iResult = TRUE;
|
|
|
|
sTag=GetLocalString(OBJECT_SELF,"QuestStep1MobTag");
|
|
if (GetIsObjectValid(GetObjectByTag(sTag)))
|
|
iResult=FALSE;
|
|
|
|
return iResult;
|
|
}
|