Trying to change Urban defense modifier

chibirobo1

Chieftain
Joined
Dec 23, 2010
Messages
30
Hello, I was trying to find the modifier attached to urban defence so I can lower the defence it gives. I was able to lower walls by changing the OuterDefenseHitPoints = 5. I'm trying to add some dynamics in a domination game I want to see the ai taking cities. I'm new to modding as well so if anyone knows any other ways to make the ai more effective id gladly hear them out. Thank you in advance.
 
You want the modifier argument for 'STEEL_UNLOCK_URBAN_DEFENSES'. To update in a mod replace the below XXX with the value you want.
Code:
UPDATE ModifierArguments SET Value = XXX
WHERE ModifierId = 'STEEL_UNLOCK_URBAN_DEFENSES' AND Name = 'DefenseValue';
 
Back
Top Bottom