Is there a mod or is it possible to....

Civ5IsFun

Chieftain
Joined
Jun 18, 2015
Messages
8
limit the random choices of civs for you as a player? So, for example. I know I wanna play a cultural game. Is there a mod that would allow me to remove all civs that don't mesh well with that play style from the random pick on creation? I know that can be done with a mod for the AI civs but haven't seen anything like it for yourself as the player. It needs only control the set of choices for the player. The Really Advanced Setup mod allows to limit the random choices of AI very well if you want but that's not what i am looking for. Is it even possible to do a mod of that nature?
 
'tis possible in XML:
Code:
<GameData>
	<Civilizations>
	
	<!-- Copy and paste (and change) the following segment for every civ you want to disable for the player -->
	
		<Update>
			<Where Type="CIVILIZATION_NAME_HERE"/>
			<Set Playable="false"/>
		</Update>

	</Civilizations>
</GameData>
'course, I expect JFD will walk in any minute and start describing the many benefits of SQL. :p

In my Minor Nitpick Mod Collection (link in bottom center of my sig), there's a mod that will disable all vanilla, G&K, BNW and DLC civs (thus leaving only modded civs) using basically the same process except in SQL. Note though that it disables the civs for both the human and AI, so you may want to edit the code accordingly. It's not an overly complicated change to make.
 
Oh I am not a modder myself. LOL Tech stuff is like greek to me. I'll take a gander but worry about messing stuff up.
 
Back
Top Bottom