diff --git a/_module/ncs/ac_guilesdmblade.ncs b/_module/ncs/ac_guilesdmblade.ncs index d3274812..344125ac 100644 Binary files a/_module/ncs/ac_guilesdmblade.ncs and b/_module/ncs/ac_guilesdmblade.ncs differ diff --git a/_module/ncs/ac_shadowsword44.ncs b/_module/ncs/ac_shadowsword44.ncs index 0b034150..c52f9c3f 100644 Binary files a/_module/ncs/ac_shadowsword44.ncs and b/_module/ncs/ac_shadowsword44.ncs differ diff --git a/_module/ncs/ac_timecrystal.ncs b/_module/ncs/ac_timecrystal.ncs index 8acd0a46..bf9dd2c7 100644 Binary files a/_module/ncs/ac_timecrystal.ncs and b/_module/ncs/ac_timecrystal.ncs differ diff --git a/_module/ncs/ammo_maker.ncs b/_module/ncs/ammo_maker.ncs index 1e37a3e0..d3a91b9d 100644 Binary files a/_module/ncs/ammo_maker.ncs and b/_module/ncs/ammo_maker.ncs differ diff --git a/_module/ncs/dreamweaver23.ncs b/_module/ncs/dreamweaver23.ncs index 6573c4e1..1676e068 100644 Binary files a/_module/ncs/dreamweaver23.ncs and b/_module/ncs/dreamweaver23.ncs differ diff --git a/_module/ncs/geg_death_treas.ncs b/_module/ncs/geg_death_treas.ncs index 2b725bb5..12308cfc 100644 Binary files a/_module/ncs/geg_death_treas.ncs and b/_module/ncs/geg_death_treas.ncs differ diff --git a/_module/ncs/geg_death_treas2.ncs b/_module/ncs/geg_death_treas2.ncs index 2b725bb5..12308cfc 100644 Binary files a/_module/ncs/geg_death_treas2.ncs and b/_module/ncs/geg_death_treas2.ncs differ diff --git a/_module/ncs/gen_geg_treas.ncs b/_module/ncs/gen_geg_treas.ncs index 86b2f547..3b1941eb 100644 Binary files a/_module/ncs/gen_geg_treas.ncs and b/_module/ncs/gen_geg_treas.ncs differ diff --git a/_module/ncs/gen_gem.ncs b/_module/ncs/gen_gem.ncs index c281ffac..336df563 100644 Binary files a/_module/ncs/gen_gem.ncs and b/_module/ncs/gen_gem.ncs differ diff --git a/_module/ncs/hellrod.ncs b/_module/ncs/hellrod.ncs index 65d3f864..43c991cc 100644 Binary files a/_module/ncs/hellrod.ncs and b/_module/ncs/hellrod.ncs differ diff --git a/_module/ncs/kopcwand.ncs b/_module/ncs/kopcwand.ncs index 21117fe5..71c57102 100644 Binary files a/_module/ncs/kopcwand.ncs and b/_module/ncs/kopcwand.ncs differ diff --git a/_module/ncs/myhook.ncs b/_module/ncs/myhook.ncs index a4ebc708..0d12926f 100644 Binary files a/_module/ncs/myhook.ncs and b/_module/ncs/myhook.ncs differ diff --git a/_module/ncs/napper.ncs b/_module/ncs/napper.ncs index 89ff8760..8324529d 100644 Binary files a/_module/ncs/napper.ncs and b/_module/ncs/napper.ncs differ diff --git a/_module/ncs/oncliententer.ncs b/_module/ncs/oncliententer.ncs index 18db708e..291a28d1 100644 Binary files a/_module/ncs/oncliententer.ncs and b/_module/ncs/oncliententer.ncs differ diff --git a/_module/nss/gen_chat_inc.nss b/_module/nss/gen_chat_inc.nss index 2bf0bb07..d6e7510a 100644 --- a/_module/nss/gen_chat_inc.nss +++ b/_module/nss/gen_chat_inc.nss @@ -15,7 +15,10 @@ and save it after you have edited & saved this script! #include "fky_chat_misc" #include "setxp_inc" #include "_inc_color_text_" -#include "gen_inc_color" +//#include "gen_inc_color" +#include "inc_utility" + +void main (){} ///////////////////////////////////////////////////////////////////////// //Taken from SimTools diff --git a/_module/nss/hgll_const_inc.nss b/_module/nss/hgll_const_inc.nss index e6d474a5..da75e5af 100644 --- a/_module/nss/hgll_const_inc.nss +++ b/_module/nss/hgll_const_inc.nss @@ -6,7 +6,7 @@ const string NWNPATH = "C:/NeverwinterNights/NWN/servervault/";//windows sample const int PHOENIX = FALSE;//set this to true if you are using the older version of Letoscript, 3-18, rather than the newer 3-24 (other versions are 'bridge' versions with bugs) -const int DEBUG = FALSE;//set this to TRUE to enable debugging +const int HGDEBUG = FALSE;//set this to TRUE to enable debugging const int DEV_CRIT_DISABLED = FALSE;//set this to TRUE to disable devastating critical feat selection on levelup diff --git a/_module/nss/hgll_func_inc.nss b/_module/nss/hgll_func_inc.nss index 08a788bd..28abd9f6 100644 --- a/_module/nss/hgll_func_inc.nss +++ b/_module/nss/hgll_func_inc.nss @@ -298,7 +298,7 @@ return FALSE; void DoDebug(object oPC, string sDebug) { -if (DEBUG) +if (HGDEBUG) { WriteTimestampedLogEntry(sDebug); SendMessageToPC(oPC, sDebug); diff --git a/_module/nss/oncliententer.nss b/_module/nss/oncliententer.nss index f083a2ce..efa95e64 100644 --- a/_module/nss/oncliententer.nss +++ b/_module/nss/oncliententer.nss @@ -29,7 +29,8 @@ location bTarget; #include "x3_inc_horse" //Required Include For Color Messages(Read include to learn more) -#include "gen_inc_color" +//#include "gen_inc_color" +#include "inc_utility" //PROTOTYPE DECLARED void SendMessageToAllPC(string sMessage);