s.bernbaum
Mostly lurking
It's quite easy to remove Global Warming from the game. The GlobalDefines.xml, which exists for every version of the game (vanilla, Warlords, and BTS), holds many game parameters. Global Warming is one of them.
The file is located in each version as follows:
...\Civilization 4\Assets\XML
...\Civilization 4\Warlords\Assets\XML
...\Civilization 4\Beyond The Sword\Assets\XML
Code to look for is:
<Define>
<DefineName>GLOBAL_WARMING_PROB</DefineName>
<iDefineIntVal>20</iDefineIntVal>
</Define>
Changing the "20" to "0" will remove Global Warming from the game. However, don't do this in the file itself. Either create a mod or copy the GlobalDefines.xml file from the main XML directory into the XML directory in CustomAssets. Change the 20 to 0 in the copy. Any settings in CustomAssets override identically named ones in the main directory. It is easy to do and can be reversed easily by removing the change from CustomAssets.
I don't like Global Warming in the game, so I used the CustomAssets method years ago and have played happily without Global Warming since then. (I also don't like nukes, so I got rid of them too, using the same method, by making the Manhatten Project unbuildable.)
The file is located in each version as follows:
...\Civilization 4\Assets\XML
...\Civilization 4\Warlords\Assets\XML
...\Civilization 4\Beyond The Sword\Assets\XML
Code to look for is:
<Define>
<DefineName>GLOBAL_WARMING_PROB</DefineName>
<iDefineIntVal>20</iDefineIntVal>
</Define>
Changing the "20" to "0" will remove Global Warming from the game. However, don't do this in the file itself. Either create a mod or copy the GlobalDefines.xml file from the main XML directory into the XML directory in CustomAssets. Change the 20 to 0 in the copy. Any settings in CustomAssets override identically named ones in the main directory. It is easy to do and can be reversed easily by removing the change from CustomAssets.
I don't like Global Warming in the game, so I used the CustomAssets method years ago and have played happily without Global Warming since then. (I also don't like nukes, so I got rid of them too, using the same method, by making the Manhatten Project unbuildable.)