National Wonder limit

justinian66

Chieftain
Joined
Jul 22, 2010
Messages
70
Is there a way to change the amount of national wonders a city can build? Does it involve XML or python changes, or a mix of both?

Edit: I know this is in the wrong forum. Can't figure out how to delete it though :confused:
 
its very easy to change the amount of nation wonders a city can build, at least if they have implemented the code to make it work. About half of the global defines are not functional at this point in time, its not documented which ones work and don't so you'll just have to try.

All you'll need to do is change this;
Code:
<Row Name="MAX_NATIONAL_WONDERS_PER_CITY">
			<Value>-1</Value>
		</Row>

to a value that you want. You should actually create a mod and use the update tags to change this value. It only accepts whole integers.

Edit: oops just realized the prefix was BTS, its about the same deal for civ4, except you will need a GlobalDefinesAlt.xml just change the value in that file.
 
Back
Top Bottom