Initial commit

Initial commit.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-06-13 15:08:33 -04:00
parent c0bd67a6a7
commit a6f6db7303
5236 changed files with 4203994 additions and 0 deletions

29
_module/nss/en5_test2.nss Normal file
View File

@@ -0,0 +1,29 @@
#include "en5_misc"
#include "en5_encounters"
void spawn(int iLevel)
{
GetPlanar(iLevel);
}
void main()
{
SetLocalString(GetModule(),"SPAWN_Zone",GetMyZone(OBJECT_SELF));
SetLocalString(GetModule(),"SPAWN_CampType","Q");
SetLocalInt(GetModule(),"SPAWN_Camp",3);
SetLocalInt(GetModule(),"SPAWN_Boss",2);
//GetClassTest(25);
GetPlanar(15);
DelayCommand(10.0,spawn(12));
DelayCommand(20.0,spawn(16));
/*
DelayCommand(30.0,spawn(11));
DelayCommand(40.0,spawn(13));
*/
}