Changing NCE movement min

Post Reply
Phrozehn
Posts: 41
Joined: Tue Feb 14, 2017 3:35 pm

Changing NCE movement min

Post 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 >.<
LordYanaek
Posts: 940
Joined: Mon Jan 23, 2017 1:34 pm

Re: Changing NCE movement min

Post 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)
Phrozehn
Posts: 41
Joined: Tue Feb 14, 2017 3:35 pm

Re: Changing NCE movement min

Post 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 :)
Post Reply