D dagriggstar King Joined Mar 23, 2006 Messages 928 Location Adelaide, Australia Nov 23, 2011 #1 Hey, I want to change the amount of food each population point consumes to 3 (instead of 2). Ideas ?
PawelS Ancient Druid Joined Dec 11, 2003 Messages 2,811 Location Poland Nov 24, 2011 #2 GlobalDefines.XML, FOOD_CONSUMPTION_PER_POPULATION I haven't checked if it works, but I'm going to make this change in my mod too.
GlobalDefines.XML, FOOD_CONSUMPTION_PER_POPULATION I haven't checked if it works, but I'm going to make this change in my mod too.
D dagriggstar King Joined Mar 23, 2006 Messages 928 Location Adelaide, Australia Nov 24, 2011 #3 Yea I did find the field, but couldn't get it to update...Currently using a short-term work around by actually changing the value in the base game.
Yea I did find the field, but couldn't get it to update...Currently using a short-term work around by actually changing the value in the base game.
PawelS Ancient Druid Joined Dec 11, 2003 Messages 2,811 Location Poland Nov 25, 2011 #4 You can do it in XML too, but I prefer SQL: Code: UPDATE Defines SET Value = 3 WHERE Name = "FOOD_CONSUMPTION_PER_POPULATION";
You can do it in XML too, but I prefer SQL: Code: UPDATE Defines SET Value = 3 WHERE Name = "FOOD_CONSUMPTION_PER_POPULATION";