Experience System

Post Reply
darthanimal
Posts: 4
Joined: Tue Feb 21, 2017 9:38 pm

Experience System

Post by darthanimal »

Hi there to all.

I would like to know the files and lines that are necessary to modify in order to decrease the experienced gained as also increase the experienced required for each rank (level up).

Thank you in advance.
Ithuriel
Posts: 176
Joined: Sat Jan 21, 2017 10:18 pm

Re: Experience System

Post by Ithuriel »

I actually just looked at this! I made a post http://www.pavonisinteractive.com/phpBB ... 15&t=24935 which tells you the mechanics.

From what I can tell, the exact lines are
DEFAULT_MISSION_EXPERIENCE_WEIGHT=5.7f

Code: Select all

+CLASS_MISSION_EXPERIENCE_WEIGHTS=(SoldierClass="LWS_Assault", MissionExperienceWeight=5.7f)
+CLASS_MISSION_EXPERIENCE_WEIGHTS=(SoldierClass="LWS_Shinobi", MissionExperienceWeight=5.8f)
+CLASS_MISSION_EXPERIENCE_WEIGHTS=(SoldierClass="LWS_Sharpshooter", MissionExperienceWeight=5.7f)
+CLASS_MISSION_EXPERIENCE_WEIGHTS=(SoldierClass="LWS_Ranger", MissionExperienceWeight=5.7f)
+CLASS_MISSION_EXPERIENCE_WEIGHTS=(SoldierClass="LWS_Gunner", MissionExperienceWeight=5.7f)
+CLASS_MISSION_EXPERIENCE_WEIGHTS=(SoldierClass="LWS_Grenadier", MissionExperienceWeight=5.75f)
+CLASS_MISSION_EXPERIENCE_WEIGHTS=(SoldierClass="LWS_Specialist", MissionExperienceWeight=5.9f)
+CLASS_MISSION_EXPERIENCE_WEIGHTS=(SoldierClass="LWS_Technical", MissionExperienceWeight=5.8f)
+CLASS_MISSION_EXPERIENCE_WEIGHTS=(SoldierClass="PsiOperative", MissionExperienceWeight=5.8f)
+CLASS_MISSION_EXPERIENCE_WEIGHTS=(SoldierClass="Spark", MissionExperienceWeight=5.7f)
from XComLWOverhall.ini to set experience weighting per class, and to set necessary experience per rank is everything in XComGameData_XpData.ini (this also lets you customize per difficulty).
darthanimal
Posts: 4
Joined: Tue Feb 21, 2017 9:38 pm

Re: Experience System

Post by darthanimal »

Thanks for the response. I already changed those lines in the XComLW_Overhaul.ini and in the XComGameData_XpData.ini but still the soldiers were leveling up quite.

So, maybe I have to assign higher values for each Requiredxp rank or maybe do I have to change bUseFullXpSystem to true?
User avatar
johnnylump
Site Admin
Posts: 1262
Joined: Wed Nov 11, 2015 4:12 am

Re: Experience System

Post by johnnylump »

There is a bug in the XP system that's causing some abnormally fast level-ups, particularly on soldiers acquired in the Black Market. Otherwise, the files you noted are the right ones.
darthanimal
Posts: 4
Joined: Tue Feb 21, 2017 9:38 pm

Re: Experience System

Post by darthanimal »

Thank you very much for your response. I am going to keep testing diferent values.
Post Reply