UW2_PRC8/_module/nss/spawnb_cc_sdlog.nss
Jaysyn904 522ac455fd Added NESS
Added NESS.  Hopefully fixed Master of the Void spawn in.  Full compile.  Updated release archive.
2024-10-09 13:59:44 -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;
}
}