10 lines
232 B
Plaintext
10 lines
232 B
Plaintext
// art_notdest
|
|
int StartingConditional()
|
|
{
|
|
object oMe=OBJECT_SELF;
|
|
int bDeployed=GetLocalInt(oMe,"bDeployed");
|
|
object oDeployed=GetLocalObject(oMe,"oDeployed");
|
|
if (bDeployed==FALSE) return TRUE;
|
|
return FALSE;
|
|
}
|