If you remove the Augustus requirement from the reform, you will get the new units, but you won't get an emperor. If you want to get both an emperor and the new units, you have to change the EDCT.
Ok,
Code:
;------------------------------------------
Trigger General_Becomes_Highly_Ambitious
WhenToTest CharacterTurnEnd
Condition FactionType seleucid
and Trait ICERating > 7
and Trait MarianControl > 0
and Trait GoodAdministrator > 1
and Trait Superbus > 1
and Trait Augustus < 1
and Trait AugustusControl < 1
and Trait GoodRecruiter > 1
and Trait Selflessness < 4
Affects Augustus 1 Chance 100
;------------------------------------------
ICE rating means the guy is Sharp, Charasmatic, Energentic.
Marian control, means that the Marian reform has happened.
"Skilled Bureaucrat" is level two (out of five) of "GoodAdministrator" (In case you are wondering, cheat would be:
Code:
give_trait "Firstmiddle Last" GoodAdministrator 2
)
"Arrogans" is level two of "Superbus"
The next requirement just makes sure you aren't getting two emperors.
"Expert Recruiter" is level two of the "GoodRecruiter" trait. This one is the one that is bugged. If you find someone with everything else, you can get the reform by giving the guy
Code:
give_trait "Firstmiddle Last" GoodRecruiter 2
The last requirement is for the selfishness trait.
For what you want, you need to just have:
Code:
;------------------------------------------
Trigger General_Becomes_Highly_Ambitious
WhenToTest CharacterTurnEnd
Condition FactionType seleucid
and Trait ICERating > 7
and Trait MarianControl > 0
and Trait Augustus < 1
and Trait AugustusControl < 1
and Attribute Command > 2
Affects Augustus 1 Chance 100
;------------------------------------------
But you're probably going to get a random guy who isn't important getting the trait.
Bookmarks