Files
HeroesStone_PRC8/_module/nss/spawnb_cc_dactiv.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -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;
}
}