Installed NESS 4.1.9

Installed NESS 4.1.9.  Tweaked main city.  Full compile.
This commit is contained in:
Jaysyn904
2023-08-09 07:17:50 -04:00
parent ce81a30d31
commit 15c0c0da79
1054 changed files with 63227 additions and 30846 deletions

View File

@@ -15,6 +15,7 @@
//:: Modified On: 22 Jan 03
//:://////////////////////////////////////////////
//Version Numbers. Do NOT change these
void sp_VersionInfo();
void sp_VersionInfo()
{
@@ -32,6 +33,7 @@ void sp_DestroyObject(object oNearest, string sTagType);
void sp_CheckVars(object oNearest, string sCurrentName);
void sp_Spawn(object oNearest, string sTemplate, int iSpawnX);
void sp_TagObject(object oNearest, string sTagType, object oNewObject);
void sp_TagItem(object oNearest, string sTagType, object oNewItem);
void sp_SpawnCamp(object oNearest, location lCurrentWP);
void sp_CheckTrap(object oNearest, object oPC);
void sp_AreaEffect(object oNearest);
@@ -511,6 +513,7 @@ void sp_Spawn(object oNearest, string sTemplate, int iSpawnX)
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eSpawn, lCurrentWP);
}
oNewObject = CreateObject(OBJECT_TYPE_CREATURE, sTemplate, lCurrentWP, FALSE);
CreateObject(OBJECT_TYPE_ITEM, sTemplate, lCurrentWP, FALSE);
SetLocalInt(oNearest, "Spawning", GetLocalInt(oNearest, "Spawning") - 1);
sp_TagObject(oNearest, "Creature", oNewObject);
}