Can someone please explain how to get the Pergamon reforms fighting Galatians? I find the guide and the script to be in conflict.
The guide says:
Code:
Fight against the Galatians
Defeat 6 large Galatian armies (8+ units) inside Galatia to provoke an invasion of Pergamon.
Defeat the Galatian invasion and own Ephesos, Sardis and Ipsos to declare yourself Basileus. Galatian raids cease.
But, actually, the script defines battles like this:
Code:
; --- testing for battle size
if I_BattleEnemyArmyNumberOfUnits > 7
and I_BattleEnemyArmyNumberOfUnits < 12
set_counter medium_battle 1 ; this was a medium sized battle
end_if
if I_BattleEnemyArmyNumberOfUnits > 11
set_counter large_battle 1 ; this was a large sized battle
end_if
And here's the Pergamon reform requirements:
Code:
if I_CompareCounter large_battle > 0
inc_counter pergamon_num_maj_battles 2
set_counter large_battle 0
historic_event HE_PERGAMON_DEFEATS_GALATIANS factions { f_pergamon, }
end_if
if I_CompareCounter medium_battle > 0
inc_counter pergamon_num_maj_battles 1
set_counter medium_battle 0
historic_event HE_PERGAMON_DEFEATS_GALATIANS factions { f_pergamon, }
end_if
if I_CompareCounter pergamon_num_maj_battles > 6
terminate_monitor
end_if
So, the guide says you have to fight armies large battles of 8 units or more for it to count. The script says a large battle is only against 12 units or more, but has lines mentioning also medium battles, why? Besides the need to update the guide, we must assume medium battles are useless towards the needed count for the reform or do they also play a role, albeit minor?
Furthermore, I find 6 battles inside Galatia to be nearly impossible to achieve. At the start there's only one "large" army inside Galatia. Some armies spawn, ok, but not all of them are big enough. Also Pontos sometimes attacks Galatia, withering their numbers down. Spawned armies outside Pergamon do not count. But I have found the "Galatian Shakedown" section, generating random armies. But still, not all of them count as not being big enough and not being inside Galatia.
In my current campaign I got the "Galatians are defeated! Raids will cease and people hail you as their Basileos" even after just a single battle against a large galatian army inside Galatia, but no reform ensued and raids continued.