Adding More Civilizations, which diplomacy file should I add their tags to?

paareth

Chieftain
Joined
Feb 6, 2008
Messages
7
I have been adding other mods civilizations to the mod and they seem to be working fine, as long as I don't add too many, I believe there must be some kind of limit.

However what puzzles me, is that their custom diplomacy text simple isn't visible.

I have been adding them to the custom civilizations folder within the mod, with the rest of the civs, their artwork and general behavior is fine but what I can't work out is why not one of them show any custom text, it simply comes up with a blank space under the LH.

Could you share where I have to add these custom diplomacy tags outside of the civs folder themselves, I will experiment but some guidance would be appreciated.

Would it be the file located here:

\CIV Gold\Assets\XML\GameInfo (DiplomacyInfos)

Or is there something more basic I am missing.

If your wondering what specifically I am adding, Iraq, North Korea and some of the moderate modern leaders and also if i'm feeling in a bit of a fantasy mood, some of the fantasy races, chaos and orc particularly.
 
Diplomacy is not modular in BTS, therefore you have to add your first contact in /CIV Gold/Assets/XML/GameInfo/DiplomacyInfos.xml

Open this file and look for:

Code:
<Response>
	<Civilizations/>
	<Leaders>
		<Leader>
			<LeaderType>LEADER_GILGAMESH</LeaderType>
			<bLeaderType>1</bLeaderType>
		</Leader>
	</Leaders>
	<Attitudes/>
	<DiplomacyPowers/>
	<DiplomacyText>
		<Text>AI_DIPLO_FIRST_CONTACT_LEADER_GILGAMESH_1</Text>
	</DiplomacyText>
</Response>

Copy this segment, past it below this segment and replace GILGAMESH with the name of you leader. You can leave the text for AI_DIPLO_FIRST_CONTACT_LEADER_YOURNEWLEADER_1 in the gametext file of your new leader.

Code:
<TEXT>
	<Tag>AI_DIPLO_FIRST_CONTACT_LEADER_YOURNEWLEADER_1</Tag>
	<English>Your Leaders First Contact Info</English>
	<French>Your Leaders First Contact Info</French>
	<German>Your Leaders First Contact Info</German>
	<Italian>Your Leaders First Contact Info</Italian>
	<Spanish>Your Leaders First Contact Info</Spanish>
</TEXT>
 
Back
Top Bottom