Choose religion always on

Azander

Fairy
Joined
Oct 8, 2006
Messages
133
Location
Copenhagen
Hey everybody. Did a big search, but havent found any answers-

Is it possible, in some strange exotic text file, to force the option "choose religion" to be turned on, always? I hate having to go through custon game, instead of just choosing "play now", just to enable this.

Thank you.. :)
 
Hey everybody. Did a big search, but havent found any answers-

Is it possible, in some strange exotic text file, to force the option "choose religion" to be turned on, always? I hate having to go through custon game, instead of just choosing "play now", just to enable this.

Thank you.. :)
It's not exotic or weird... it's just the default XML options file... you can change a variety of "custom" settings to be DEFAULT settings when using the "PLAY NOW" option...

Look in your "Assets/XML/Gameinfo" folder...

There's three files in there that pretty much control all the custom settings which can be made into default "PLAY NOW" settings:

Civ4GameOptionInfos.xml
Civ4VictoryInfo.xml
Civ4WorldInfo.xml

By changing those three files (I recommend you copy them into your "CustomAssets" folder), you can make any custom setting default...

The specific one for what you seek is in the Civ4GameOptionInfos.xml

Code:
		<GameOptionInfo>
			<Type>GAMEOPTION_PICK_RELIGION</Type>
			<Description>TXT_KEY_GAME_OPTION_PICK_RELIGION</Description>
			<Help>TXT_KEY_GAME_OPTION_PICK_RELIGION_HELP</Help>
			<bDefault>1</bDefault>
			<bVisible>1</bVisible>
		</GameOptionInfo>

"1" is "on" and "0" is "off". You'll want the default to be changed to "1".
 
Top Bottom