Scripting tweaks

Scripting tweaks
This commit is contained in:
Jaysyn904 2024-02-21 19:08:03 -05:00
parent 2bb2c470e0
commit 95df1aa540
18 changed files with 8 additions and 4 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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

View File

@ -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

View File

@ -298,7 +298,7 @@ return FALSE;
void DoDebug(object oPC, string sDebug)
{
if (DEBUG)
if (HGDEBUG)
{
WriteTimestampedLogEntry(sDebug);
SendMessageToPC(oPC, sDebug);

View File

@ -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);