Page 1 of 1

Changing proportion of allies?

Posted: Sat Feb 13, 2021 9:45 am
by kronenblatt
Is there a way to change the proportion of allies in the army's FP (from the 25% in the base game)?

If yes, how?

Re: Changing proportion of allies?

Posted: Sat Feb 13, 2021 10:35 am
by rbodleyscott
There are two lines in ArmyListTools.bsf which say

Code: Select all

allyPoints = points / 4;
In

ReadArmyListWithAllies()

and

ReadArmyListWithAlliesForCustomBattlePreview()

Changing those two lines should do it. Obviously they both need to be the same.

As always, don't do this in your main build or you will bork MP.

Re: Changing proportion of allies?

Posted: Sat Feb 13, 2021 11:41 am
by kronenblatt
rbodleyscott wrote: Sat Feb 13, 2021 10:35 am There are two lines in ArmyListTools.bsf which say

Code: Select all

allyPoints = points / 4;
In

ReadArmyListWithAllies()

and

ReadArmyListWithAlliesForCustomBattlePreview()

Changing those two lines should do it. Obviously they both need to be the same.

As always, don't do this in your main build or you will bork MP.
Thanks, Richard!