View Full Version : Request: the know-how to manually set a wonder cap of 3 per city.


Cethegus
May 04, 2009, 03:51 PM
Quite recently the cap of national wonders per city was set from 2 to 3 in RFC. I would like to know which file I need to modify to set a similiar cap to apply for world wonders too. Reasons for this are to add variety to the game and to increase the strategic value for wonders and the cities they are built in.

All I want to know is which file this is issued in, I can figure the rest out later by myself. Thanks in advance.

(I'm sure this isn't an issue big enough to need its own thread but I figured this would be one of the few places I could post it and be assured that it would get the coverage it needs. Besides, a smaller thread like this must liven up the board if even just a little.)

sedna17
May 04, 2009, 04:09 PM
Assets/XML/GlobalDefines.xml, beginning at line 310:

World Wonders at -1 means no limit.


<Define>
<DefineName>MAX_WORLD_WONDERS_PER_CITY</DefineName>
<iDefineIntVal>-1</iDefineIntVal>
</Define>
<Define>
<DefineName>MAX_TEAM_WONDERS_PER_CITY</DefineName>
<!-- Rhye -->
<iDefineIntVal>5</iDefineIntVal>
</Define>
<Define>
<DefineName>MAX_NATIONAL_WONDERS_PER_CITY</DefineName>
<!-- Rhye -->
<iDefineIntVal>3</iDefineIntVal>
</Define>

Cethegus
May 04, 2009, 04:23 PM
Thanks a lot for the quick answer! :) This will be a great help to me.