Hey guys,
Can someone help me understand how these triggers work, please? BTW this is 2.04a.
First, here's the info for the RomanMilitaryService trait:
Your points in this trait are ticked up 1 per turn when you end the turn outside of a settlement. So it would take 10 turns to reach the first level, 20 to reach the second, and 30 to achieve RomanMilitaryService = 3.Code:Trait RomanMilitaryService Characters family Hidden Level Military_Service Description Hidden_desc EffectsDescription Hidden_effects_desc Threshold 10 Level Half_Service Description Hidden_desc EffectsDescription Hidden_effects_desc Threshold 20 Level Full_Service Description Hidden_desc EffectsDescription Hidden_effects_desc Threshold 30 Effect Command 1 Effect Authority 1
Now here are the triggers for using that trait for attaining the rank of Military Tribune:
My question is, does 'and Trait RomanMilitaryService > 1' find people who have 11 points in RomanMilitaryService, or does it only start evaluating true for them when they've reached 20 points and thus are at the second level [Half_Service]?Code:;------------------------------------------ Trigger Elected_MilitaryTribune1 WhenToTest CharacterTurnEnd Condition FactionType f_rome and I_EventCounter ecWinter = 1 and Trait RomanRank = 1 and Trait MilitaryTribune < 1 and Trait RomanMilitaryService > 1 Affects MilitaryTribune 1 Chance 10 ;------------------------------------------ Trigger Elected_MilitaryTribune2 WhenToTest CharacterTurnEnd Condition FactionType f_rome and I_EventCounter ecWinter = 1 and Trait RomanRank = 1 and Trait MilitaryTribune < 1 and Trait RomanMilitaryService > 2 Affects MilitaryTribune 1 Chance 25 ;------------------------------------------ Trigger Elected_MilitaryTribune3 WhenToTest CharacterTurnEnd Condition FactionType f_rome and I_EventCounter ecWinter = 1 and Trait RomanRank = 1 and Trait MilitaryTribune < 1 and Trait RomanMilitaryService = 3 Affects MilitaryTribune 1 Chance 100
If it's the latter, then isn't Elected_MilitaryTribune2 a useless trigger, since RomanMilitaryService > 2 would make you have a 25% chance of getting the office once you reach the 3rd rank, immediately followed by a 100% chance of getting the office now that you're at the 3rd rank thanks to Elected_MilitaryTribune3?
ETA: I meant to title this Roman Military TribUNE, but I'm a dork and I can't edit it now.




Reply With Quote





