No, not my mod, richterm and others then horred, they get all the credit and/or blame Many here have helped me to get this beast running so I try to help others when I can.I did not import any erf files as i read that was just to update your previous mod to the latest version.
I asked if you impoerted an erf file because I dont think you have the right inc_letoscript.nss file.
inc_letoscript in Nordock-CEP-PRC-Plagued.mod v11:
#include "inc_debug" //constants defining directories //must be changed to each install const string NWN_DIR = "C:/NeverwinterNights/NWN/"; const string MOD_DIR = "modules/Nordock-CEP-PRC-Plagued"; const string DB_NAME = "NWN"; const string DB_GATEWAY_VAR = "NWNXLeto"; const string WP_LIMBO = ""; //Script Types //taken from the build03.18 release notes /* SCRIPT, taking a LetoScript script as a parameter. Example: void main() { SendMessageToAllDMs("Firing LetoScript test..."); string LetoTest; SetLocalString(GetModule(), "NWNX!LETO!SCRIPT", "<file:open BOB 'g:/nwn/localvault/bob.bic'><FirstName> <LastName>"); LetoTest = GetLocalString(GetModule(), "NWNX!LETO!SCRIPT"); SendMessageToAllDMs("Result: #" + LetoTest + "#"); }
Your inc_letoscript:
#include "aps_include" //constants defining directories //must be changed to each install //alternativly it will use a local string on the module named NWN_DIR if set //in preference to the constant const string NWN_DIR = "E:/program files/NWN/"; const string MOD_DIR = "E:/program files/nwn/modules/"; const string DB_NAME = "NWNXLeto"; const string DB_GATEWAY_VAR = "NWNXLeto"; const string WP_LIMBO = ""; //set this to true if using build 18 or earlier of letoscript.dll const int PHEONIX_SYNTAX = TRUE; /*YOU MUST ADD THE FOLLOWING TO YOUR ON CLIENT EXIT EVENT object oPC = GetExitingObject(); LetoPCExit(oPC); */
As you can see from just the first line #include "inc_debug" vs #include "aps_include" and others they are not the same file. Something is buggered here!