Page 1 of 1

Experience System

Posted: Tue Feb 21, 2017 9:46 pm
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.

Re: Experience System

Posted: Wed Feb 22, 2017 7:05 am
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).

Re: Experience System

Posted: Fri Feb 24, 2017 12:22 am
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?

Re: Experience System

Posted: Sat Feb 25, 2017 4:35 pm
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.

Re: Experience System

Posted: Tue Feb 28, 2017 4:55 pm
by darthanimal
Thank you very much for your response. I am going to keep testing diferent values.