diff --git a/_module/ncs/ac_guilesdmblade.ncs b/_module/ncs/ac_guilesdmblade.ncs index d327481..344125a 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 0b03415..c52f9c3 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 8acd0a4..bf9dd2c 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 1e37a3e..d3a91b9 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 6573c4e..1676e06 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 2b725bb..12308cf 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 2b725bb..12308cf 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 86b2f54..3b1941e 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 c281ffa..336df56 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 65d3f86..43c991c 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 21117fe..71c5710 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 a4ebc70..0d12926 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 89ff876..8324529 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 18db708..291a28d 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 2bf0bb0..d6e7510 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 e6d474a..da75e5a 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 08a788b..28abd9f 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 f083a2c..efa95e6 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);