Disable barbarians?

zotobom

Chieftain
Joined
Jan 29, 2012
Messages
4
This was an option is vanilla Civ IV,and I want to do it here as well. I just don't really like barbarians. But when I looked in the custom game menu,there isn't any ''disable barbarians'' option? :confused: Is this just not possible to do,or am I missing some obvious way to disable them?

Thanks for making a great mod btw,loving every second of it! :goodjob:
 
Animal and neanderthal spawns use the barb functions so that is why there is no Option to turn Barbs off.

JosEPh
 
I can't recommend turning off barbarians sincec this would also disable animals. And they are a big factor in the game.

If you, for whatever reason, still want to disable barbarians, do the following:

Go to your BeyondTheSword Folder, in "Mods" and open the C2C Folder.
go to Assets/XML/GameInfo (they are all folders) and look for the CIV4GameOptionInfos XML File. Open it with editor or notepad and search for "GAMEOPTION_NO_BARBARIANS"
then change the 0 in "bVisible" to 1. It should look like this when you are done:

Code:
		<GameOptionInfo>
			<Type>GAMEOPTION_NO_BARBARIANS</Type>
			<Description>TXT_KEY_GAME_OPTION_NO_BARBARIANS</Description>
			<Help>TXT_KEY_GAME_OPTION_NO_BARBARIANS_HELP</Help>
			<bDefault>0</bDefault>
			<bVisible>1</bVisible>
		</GameOptionInfo>

Save it and start a new game. This will make the gameoption show up again.
 
Back
Top Bottom