Page 1 of 1

Changing NCE movement min

Posted: Thu Jul 27, 2017 2:21 am
by Phrozehn
Is it possible to change stat ranges with NCE without it being just a flat out buff making soldiers stronger in general? I just can't cope with these 13 mob rookies >.<

Re: Changing NCE movement min

Posted: Thu Jul 27, 2017 7:39 am
by LordYanaek
XComLW_Toolbox.ini
Change any of those values to modify the min/max stats for NCE.

Code: Select all

;These are the max allowed deltas for each stat type
+STAT_CAPS=(Stat=eStat_Offense, Min=-10, Max=10)
+STAT_CAPS=(Stat=eStat_Defense, Min=-10, Max=10)
+STAT_CAPS=(Stat=eStat_Dodge, Min=-15, Max=15)
+STAT_CAPS=(Stat=eStat_Will, Min=-15, Max=15)
+STAT_CAPS=(Stat=eStat_Hacking, Min=-4, Max=15)
+STAT_CAPS=(Stat=eStat_HP, Min=-1, Max=3)
+STAT_CAPS=(Stat=eStat_Mobility, Min=-2, Max=3)
+STAT_CAPS=(Stat=eStat_PsiOffense, Min=-15, Max=15)
To have a minimum movement of 14 rather than 13 you want

Code: Select all

+STAT_CAPS=(Stat=eStat_Mobility, Min=-1, Max=3)
Note that by preventing some stats from dropping you prevent "stat points" from being recovered to increase other stats so you'll probably see less high health soldiers (since health and movement are the most costly stats)

Re: Changing NCE movement min

Posted: Thu Jul 27, 2017 4:15 pm
by Phrozehn
Thanks Yanek! I'm glad that I wont see quite as strong benefits, too. I was hoping it behaved just as you described. As long as I'm not gonna accidentally overpower my soldiers somehow I'm cool with it :)