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

19 lines
334 B
Plaintext

//
// Spawn Banner
// Conversation Check
// Spawn Delay Debugging on
//
int StartingConditional()
{
object oSpawn = GetLocalObject(OBJECT_SELF, "ParentSpawn");
object oArea = GetArea(oSpawn);
if (GetLocalInt(oArea, "SpawnDelayDebug") == FALSE)
{
return TRUE;
}
else
{
return FALSE;
}
}