Jaysyn904 151d074880 Added "Removed Files" folder
Added "Removed Files" folder in case we needed to review any of them.
2022-10-10 10:39:34 -04:00

40 lines
1.7 KiB
Plaintext

// This lists all of the constant ints that are to be used for LL
// This is the path to your servervault. It must be set correctly for Letoscript to work.
const string NWNPATH = "C:/NeverwinterNights/NWN/servervault/";//windows sample
// const string NWNPATH = "/home/funkyswerve/nwn/servervault/";//linux 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 DEV_CRIT_DISABLED = FALSE;//set this to TRUE to disable devastating critical feat selection on levelup
// Experience Requirements for Legendary Levels
// Adjust as desired. These were set by increasing the additional amount required for the
// previous level by 25%. Level 40 required 39000 experience points, so Level 41 was set
// to require 39000 x 1.25 = 48800 experience points. This will be ALOT on some worlds,
// and not enough on others, so adjust to suit your needs
const int BASE_XP_LVL_40 = 780000;
const int XP_REQ_LVL41 = 821000;
const int XP_REQ_LVL42 = 863000;
const int XP_REQ_LVL43 = 900000;
const int XP_REQ_LVL44 = 100000;
const int XP_REQ_LVL45 = 1100000;
const int XP_REQ_LVL46 = 1200000;
const int XP_REQ_LVL47 = 1300000;
const int XP_REQ_LVL48 = 1400000;
const int XP_REQ_LVL49 = 1600000;
const int XP_REQ_LVL50 = 1800000;
const int XP_REQ_LVL51 = 2200000;
const int XP_REQ_LVL52 = 2400000;
const int XP_REQ_LVL53 = 2600000;
const int XP_REQ_LVL54 = 2800000;
const int XP_REQ_LVL55 = 3000000;
const int XP_REQ_LVL56 = 3400000;
const int XP_REQ_LVL57 = 3800000;
const int XP_REQ_LVL58 = 4200000;
const int XP_REQ_LVL59 = 4600000;
const int XP_REQ_LVL60 = 5000000;