10 lines
262 B
Plaintext
10 lines
262 B
Plaintext
// art_notdeployed
|
|
int StartingConditional()
|
|
{
|
|
object oMe=OBJECT_SELF;
|
|
int bDeployed=GetLocalInt(oMe,"bDeployed");
|
|
object oDeployed=GetLocalObject(oMe,"oDeployed");
|
|
if (bDeployed==TRUE&&oDeployed!=OBJECT_INVALID) return FALSE;
|
|
return TRUE;
|
|
}
|