Added NESS. Updated Level 10

Added NESS.  Updated Level 10.  Full compile.
This commit is contained in:
Jaysyn904
2023-04-20 23:24:24 -04:00
parent c3cd31b87b
commit 71a604d04a
179 changed files with 76115 additions and 81 deletions

View File

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