Hi folks !
I'm playing as Pergamon and aiming at the kingship's reform (needed for top-tier government... I want my hetairoi ! :D)
For thoses who don't know it, we require some regions (fine) and to win a major battle against Galatians rebels and another against the Seleucids.

Here is the part of the script for galatian battle
Code:
declare_counter pergamon_num_maj_battles_galatia
    monitor_event PostBattle FactionType f_pergamon
        and WonBattle
        and GeneralFoughtFaction slave
        and IsRegionOneOf region_103
        and I_BattleEnemyArmyNumberOfUnits > 10
        and NumFriendsInBattle > 1500
        and not I_ConflictType Naval
        and not I_ConflictType Withdraw
        
        inc_counter pergamon_num_maj_battles_galatia 1
        if I_CompareCounter pergamon_num_maj_battles_galatia > 1
            terminate_monitor
        end_if
    end_monitor
So, I need to beat a galatian army of 10 units (or 11, i don't know if > means ">" or ">=") to achieve this condition.
The problem is that the galatian garrison in Akyra has only 9 units : How can I get my reform ?
If i modify the script to lower conditions, would it work and be save-compatible ? Or should I cheat to add a unit in garrison (It would be more fair than modding, but IDK if it's possible) ?
In all cases, I think team should fix this for next major update :)

BTW, is there any point to recruit Hippeis instead of Xystophoroi ? They are twice as expensive and only get 6 armor instead of 5 and a lower attack value, and they lose the armour piercing ability. I think it's a balance problem, excepted if Hippeis are meant to be used only by factions that can't recruit Xystophoroi.