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