I want to remove the limit on # of Wonders per city

RegentBob

Chieftain
Joined
Feb 9, 2002
Messages
61
Location
Texas
How can I remove the limit on how many Great and National Wonders can be placed in a single city?

Seriously-- the Statue of Liberty, Wall St., Broadway, the United Nations . . . all in New York City!!!

And while I'm asking, how can I force each civ to complete their own "Manhattan Project" before they can build the bomb?
 
Um there can be as many world wonders as you want in one city...
 
The number of buildings, wonders, etc per city can be changed in the GlobalDefines.xml file. That file is in the Assets/XML folder. To change the number of National Wonders allowed per city just open the file in notepad (or another XML editor) and search for this tag here:

Code:
	<Define>
		<DefineName>MAX_NATIONAL_WONDERS_PER_CITY</DefineName>
		<iDefineIntVal>2</iDefineIntVal>
	</Define>

The <iDefineIntVal>2</iDefineIntVal> tag here means that you can only have two National Wonders in each city. If you want to just have a higher limit, increase the number. If you want to remove the limit completely, enter the value -1 into the tag.

Dusty4prez is right about the Great Wonders. They and normal buildings are already set at -1, meaning you can have as many as you want in a city.


For your other question, I'm not sure how to change that correctly. But it should be possible.
 
Back
Top Bottom