<Row>
<Type>GAMEOPTION_NO_BARBARIANS</Type>
<Description>TXT_KEY_GAME_OPTION_NO_BARBARIANS</Description>
<Help>TXT_KEY_GAME_OPTION_NO_BARBARIANS_HELP</Help>
[b]<Default>1</Default>[/b]
</Row>
I just found the above by following my nose through the links you pointed at. There's another Options XML file, but it only sets up defaults for the main Options screen. I can't see any equivalent XML file for the other game parameters. Do you believe it's possible to have a default civ/leader?
[UserSettings]
; Last Civilization Played
LastCiv = -1
; Last Game Speed Played
LastSpeed = 2
; Last Map Type Played
LastMapScript = Assets\Maps\Continents.lua
; Last Map Script Was Random
LastMapScriptRandom = 0
; Last Map Size Played
LastMapSize = 3
; Last Map Size Was Random
LastMapSizeRandom = 0
; Last Map Type Was Earth
LastMapWasEarth = 0
; Last Game Difficulty Played
LastDifficulty = 3
I've tried the config.ini approach, and it doesn't seem to have any effect for me. However, the following worked:
Open the following file in a text editor - TextEdit, BBEdit, TextWrangler ...:
~/Library/Application Support/Steam/SteamApps/common/sid meier's civilization v/assets/Gameplay/XML/GameInfo/CIV5GameOptions.xml
It contains 17 GAMEOPTION_XXX tags. One for each of the 14 Advanced Setup checkboxes, and three more*.
Find the GAMEOPTION tag that you want to set enable. For example GAMEOPTION_NO_BARBARIANS, and add a <Default> line:
Code:<Row> <Type>GAMEOPTION_NO_BARBARIANS</Type> <Description>TXT_KEY_GAME_OPTION_NO_BARBARIANS</Description> <Help>TXT_KEY_GAME_OPTION_NO_BARBARIANS_HELP</Help> [b]<Default>1</Default>[/b] </Row>
Restart Civ5. When you go into Set Up Game, that Advanced Setup option should now be set.
*It's interesting that there are three more options in that file than are shown in the Advanced Setup screen: ALWAYS_WAR, NO_CHANGING_WAR_PEACE, and LOCK_MODS
Hmm, I thought this was working auto-magically. It's certainly not full resetting like the PC does for me. Are there particular settings that aren't saving for you?
Don't forget that the assets are now embedded in the application bundle, so any editing of game options will need to be done inside that bundle/package.
The new save format for Civ5 under the latest patch uses text keys instead of index numbers to identify various things like the civs that are in play. That may have affected the way these settings work, as well.
Where did you find that 45K file? Perhaps it's just an alias?
Don't forget that the assets are now embedded in the application bundle, so any editing of game options will need to be done inside that bundle/package.