15 lines
208 B
Plaintext
15 lines
208 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oAngel;
|
|
|
|
iResult = FALSE;
|
|
|
|
oAngel= GetObjectByTag(GetLocalString(OBJECT_SELF,"Quest3"));
|
|
|
|
if (!GetIsObjectValid(oAngel))
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|