14 lines
181 B
Plaintext
14 lines
181 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
object oGuard;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
oGuard = GetObjectByTag("RP1_P_S");
|
||
|
|
||
|
if (!GetIsObjectValid(oGuard))
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|