This is a python file. When you run it from the Civ4 python console it will create a new mapscript based on the current map. It saves goody huts, resources, terrain, features(with feature variety), rivers, and the starting plot for each player.
Instructions:
1. Put my savemap.py file into your C:\Program Files\Firaxis Games\Sid Meier's Civilization 4\Assets\Python directory.
2. In the CivilizationIV.ini file, enable cheating by changing CheatCode = 0 to CheatCode = chipotle
3. Run CIV4. Load a scenario or load a game with the map you want to save.
4. If you want, use WorldBuilder to make any changes to the map.
5. Open up the python console by pressing Shift ~
6. Type "import savemap"
7. Here you have several options depending on what you want the filename to be.
7a)If you want the filename to be civ4map.py, type "savemap.savemap()"
7b)If you want the filename to be civ4mapx.py, where x is a number, type "savemap.savemap(x)"
Example: savemap.savemap(8) will make a file named civ4map8.py
7c)If you want to set the filename yourself(.py will be added on at the end), type "savemap.savemap("filename")"
Example: savemap.savemap("Earth") will make a file named Earth.py
8) Quit Civ4
9) Run Civ4
10) You can now select the map when you start a new game.
Instructions:
1. Put my savemap.py file into your C:\Program Files\Firaxis Games\Sid Meier's Civilization 4\Assets\Python directory.
2. In the CivilizationIV.ini file, enable cheating by changing CheatCode = 0 to CheatCode = chipotle
3. Run CIV4. Load a scenario or load a game with the map you want to save.
4. If you want, use WorldBuilder to make any changes to the map.
5. Open up the python console by pressing Shift ~
6. Type "import savemap"
7. Here you have several options depending on what you want the filename to be.
7a)If you want the filename to be civ4map.py, type "savemap.savemap()"
7b)If you want the filename to be civ4mapx.py, where x is a number, type "savemap.savemap(x)"
Example: savemap.savemap(8) will make a file named civ4map8.py
7c)If you want to set the filename yourself(.py will be added on at the end), type "savemap.savemap("filename")"
Example: savemap.savemap("Earth") will make a file named Earth.py
8) Quit Civ4
9) Run Civ4
10) You can now select the map when you start a new game.
Comment