Cohesion Test and Big Units
Posted: Sat Mar 28, 2020 2:51 pm
Hello all, I'm interested on giving a re-roll bonus to Cohesion Tests to really big units. How can I do it?
I tried adding the *bold* lines to a dopied MoraleTools.BSF I dropped in my custom campaign folder:
Will this work? Will it give units with more than 2999 men +2 to the cohesion test or just +1?
Also, is it true that Above Average gets no bonus/reroll during Cohesion Tests? In the manual there is nothing about it, only for Untrained, Superior and Elite.
I tried adding the *bold* lines to a dopied MoraleTools.BSF I dropped in my custom campaign folder:
Code: Select all
[b]if (strength > 2999)
{
modifiers += 1;
Log("Extremely Deep Ranks +1", me);
}
if (strength > 1999)
{
modifiers += 1;
Log("Deep Ranks +1", me);
}
[/b]
if (strength < 3 * quarter)
{
modifiers -= 1;
Log("Below 75% strength -1", me);
}
if (strength < 2 * quarter)
{
modifiers -= 1;
Log("Below 50% strength -1", me);
}
Also, is it true that Above Average gets no bonus/reroll during Cohesion Tests? In the manual there is nothing about it, only for Untrained, Superior and Elite.