HoS_PRC8/_mod/_module/nss/art_notdeployed.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

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;
}