...or problem and solution actually ;-).
In my seleukid campaign I noticed that I didn't get the reform precursor buildings in Alexandreia-Ariana, Alexandreia-Eschate and Baktra despite I had the reforms.
I had conquered Alexandreia-Eschate and Baktra after the reform, while I had Alexandreia-Ariana all the time.
A quick look into the EBBS told me that the code for Alexandreia-Ariana is missing.
And after a while I also suspected that a typo caused the reform to happen only once, and therefore not in newly conquered cities.
With these changes I got the missing precursor buildings in all 3 cities:
Typo:
Code:
monitor_event CharacterTurnEnd FactionType romans_julii
and Trait SeleukidsDevelopCats > 0
set_counter Seleukid_Reform 1 ------ an r was missing here (Refom)
end_monitor
Code for Alexandreia-Ariana:
Code:
monitor_event SettlementTurnStart SettlementName Alexandreia-Ariana
and I_CompareCounter Seleukid_Reform = 1
and not SettlementBuildingExists = cataphract
and I_SettlementOwner Alexandreia_Ariana = romans_julii
console_command create_building Alexandreia-Ariana "cataphract"
end_monitor
Bookmarks