Rune_PRC8/_module/nss/spawnb_cc_dactiv.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

17 lines
272 B
Plaintext

//
// Spawn Banner
// Conversation Check
//
int StartingConditional()
{
object oSpawn = GetLocalObject(OBJECT_SELF, "ParentSpawn");
if (GetLocalInt(oSpawn, "SpawnDeactivated") == FALSE)
{
return TRUE;
}
else
{
return FALSE;
}
}