Page 1 of 1
How to remove max 200 POA?
Posted: Tue Apr 06, 2021 5:34 pm
by GryfoCezar
I tried doing it in CombatTools.BSF, but didn't work.
Re: How to remove max 200 POA?
Posted: Wed Apr 07, 2021 6:37 am
by rbodleyscott
There are two lines in the ResolveCloseCombat() function in CloseCombatLogic.BSF
Code: Select all
// Max difference is 200 either way
difference = Min(difference, 200);
difference = Max(difference, -200);
Try commenting them out. (As always, we strongly recommend against modding files in your main build!)
Re: How to remove max 200 POA?
Posted: Wed Apr 07, 2021 6:47 pm
by GryfoCezar
Worked, thanks.