// 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; //780000 const int XP_REQ_LVL41 = 821000; //48800 const int XP_REQ_LVL42 = 863000; //60900 const int XP_REQ_LVL43 = 900000; //76200 const int XP_REQ_LVL44 = 1000000; //95200 const int XP_REQ_LVL45 = 1100000; //119000 const int XP_REQ_LVL46 = 1200000; //148800 const int XP_REQ_LVL47 = 1300000; //186000 const int XP_REQ_LVL48 = 1400000; //232500 const int XP_REQ_LVL49 = 1600000; //290600 const int XP_REQ_LVL50 = 1800000; //363200 const int XP_REQ_LVL51 = 2200000; //454000 const int XP_REQ_LVL52 = 2400000; //567500 const int XP_REQ_LVL53 = 2600000; //709400 const int XP_REQ_LVL54 = 2800000; //886800 const int XP_REQ_LVL55 = 3000000; //1108400 const int XP_REQ_LVL56 = 3200000; //1385600 const int XP_REQ_LVL57 = 3400000; //1731900 const int XP_REQ_LVL58 = 3600000; //2164900 const int XP_REQ_LVL59 = 3800000; //2706200 const int XP_REQ_LVL60 = 4000000; //3382700