mod not showing up in game

hunterx767

Chieftain
Joined
Jun 23, 2012
Messages
29
ok I created a custom civ for G&K and I when I started the game I wentot mods and enabled it but wheni goto select my civ it doesn't show up I have attached the file if any one can see if it is a codding issue or if I am just missing a step please help
 

Attachments

update I can now use a custom game option under mods but ti just sits there I still can't use my civilization in a single player game
 
Well:-
Code:
		<Row>
			<Type>[B]CIVILIZATION_Mystical_Atlantis[/B]</Type>
			<Description>[B]TXT_KEY_CIV_Mystical_Atlantis_DESC[/B]</Description>
			<ShortDescription>[B]TXT_KEY_CIV_Mystical_Atlantis_SHORT_DESC[/B]</ShortDescription>
			<Adjective>[B]TXT_KEY_CIV_Mystical_Atlantis_ADJECTIVE[/B]</Adjective>
			<Civilopedia>[B]TXT_KEY_CIV_Mystical_Atlantis_PEDIA[/B]</Civilopedia>
			<CivilopediaTag>[B]TXT_KEY_CIV5_Mystical_Atlantis[/B]</CivilopediaTag>
			<DefaultPlayerColor>[B]PLAYERCOLOR_Purple[/B]</DefaultPlayerColor>
			<ArtDefineTag>ART_DEF_CIVILIZATION_ENGLAND</ArtDefineTag>
			<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
			<ArtStyleSuffix>_EURO</ArtStyleSuffix>
			<ArtStylePrefix>EUROPEAN </ArtStylePrefix>
			<PortraitIndex>6</PortraitIndex>
			<IconAtlas>CIV_COLOR_ATLAS</IconAtlas>
			<AlphaIconAtlas>CIV_ALPHA_ATLAS</AlphaIconAtlas>
			<MapImage>MapEngland512.dds</MapImage>
			<DawnOfManQuote>TXT_KEY_CIV5_MA_TEXT_1</DawnOfManQuote>
			<DawnOfManImage></DawnOfManImage>
		</Row>

Bold parts need to be all in caps. You have made the same errors in you other files too.
Code:
<CivilizationType>CIVILIZATION_CELT</CivilizationType>

Should be the name of your custom Civilization.
 
Back
Top Bottom