Request - increased support cost for units

agonistes

wants his subs under ice!
Joined
May 30, 2007
Messages
2,555
Location
Vermont
I'm trying to reduce the number of units running around.

So far, I've just upped the support cost of all units. Will see how that goes.


Anyone care to help with changing the two unit maintenance policy cards to be +2/+4 defense, respectively, instead of reducing unit support cost?

-----------
I'm also using the mods that reduce commercial city-state gold by 50%, and giving city-states walls at the start of the game.
 
Last edited:
Welt, the code I'm using for upping the support cost of units didn't take.
 
How did you do it? Can you give a code example?
Code:
UPDATE Units
SET Maintenance = Maintenance + 2;

should increase all maintenance by 2 for all units. For example you can use
Code:
UPDATE Units
SET Maintenance = Maintenance + 2
WHERE Combat != 0;
IF you want to increase the cost for all units with a combat strength.

If you want to change the policies, that's a bit trickier. You have to change the ModifierId in Table PolicyModifiers and make a custom Modifier for you mod, which increases str.
 
Back
Top Bottom