I have been having problems getting the ModifyReputation action to work. One thing I noticed, the modifier flag cannot be set to a value under zero although in the manual, it says modifier can have a range of -100 to 100.
Take the following example, triggered by something like maybe sacking a certain city:
ModifyReputation
who=Romans
whom=everybody
modifier=100
So, when this action is triggered, everyone should really hate the Romans for awhile, right? But when I go into my scenario and use cheats to trace the progress of attitude, I don't see any changes.
Is it that you can't use wildcards for whom? And I wasn't sure which direction was good or bad but any negative value given for "modifier" gives a rules.txt error although the manual says it should accept a negative number.
Also, I was toying with the idea of making the killing of a certain side's settlers or trade units in my scenario a really bad thing which must be avoided, so I did something like this:
@IF
UnitKilled
unit=Caravan
attacker=Anybody
defender=Romans
@THEN
ModifyReputation
who=TriggerAttacker
betray=10
@ENDIF
However, after a bit of playtesting, I didn't notice any appreciable change in world view to the attacker of some poor unarmed Roman caravan.
As the function of ModifyReputation is different than what is said in the manual (negative numbers not being allowed for 'modifier'), I would like to have how to use it clarified. Are wildcards acceptable? What wildcards? How come you can't use negative numbers anymore? Are the Modifier values absolute like the Betray value? (a modifier=100 means that attitude now equals 100?).
This is a really cool new action as it gives me lots of ideas on how to make the AI look like its reacting to certain things that happen in the game, so I need some clarification on its use.
Take the following example, triggered by something like maybe sacking a certain city:
ModifyReputation
who=Romans
whom=everybody
modifier=100
So, when this action is triggered, everyone should really hate the Romans for awhile, right? But when I go into my scenario and use cheats to trace the progress of attitude, I don't see any changes.
Is it that you can't use wildcards for whom? And I wasn't sure which direction was good or bad but any negative value given for "modifier" gives a rules.txt error although the manual says it should accept a negative number.
Also, I was toying with the idea of making the killing of a certain side's settlers or trade units in my scenario a really bad thing which must be avoided, so I did something like this:
@IF
UnitKilled
unit=Caravan
attacker=Anybody
defender=Romans
@THEN
ModifyReputation
who=TriggerAttacker
betray=10
@ENDIF
However, after a bit of playtesting, I didn't notice any appreciable change in world view to the attacker of some poor unarmed Roman caravan.
As the function of ModifyReputation is different than what is said in the manual (negative numbers not being allowed for 'modifier'), I would like to have how to use it clarified. Are wildcards acceptable? What wildcards? How come you can't use negative numbers anymore? Are the Modifier values absolute like the Betray value? (a modifier=100 means that attitude now equals 100?).
This is a really cool new action as it gives me lots of ideas on how to make the AI look like its reacting to certain things that happen in the game, so I need some clarification on its use.
Comment