Trouble Adding new civilization

Yriel

Chieftain
Joined
Nov 3, 2010
Messages
5
G'day,

I'm just going through Kael's Modders Guide and have almost completed adding a new civilization.

The issue I'm having at this point is the <DawnOfManQuote> not showing up, in fact very little shows on the loading page.

I have not done any of the new graphics yet, so for now I'm using the English details for them.

These are the parts of code I think should come into play:

Code:
	<Civilizations>
		<Row>
			<Type>CIVILIZATION_VIKING</Type>
			<Description>TXT_KEY_CIV_VIKING_DESC</Description>
			<ShortDescription>TXT_KEY_CIV_VIKING_SHORT_DESC</ShortDescription>
			<Adjective>TXT_KEY_CIV_VIKING_ADJECTIVE</Adjective>
			<Civilopedia>TXT_KEY_CIV_VIKING_PEDIA</Civilopedia>
			<CivilopediaTag>TXT_KEY_CIV5_VIKING</CivilopediaTag>
			<DefaultPlayerColor>PLAYERCOLOR_DARK_GREEN</DefaultPlayerColor>
			<!-- ART STUFF NOT DONE YET-->
			<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_DAWN_VIKING_TEXT</DawnOfManQuote>
			<DawnOfManImage>DOM_Elizabeth.dds</DawnOfManImage>
			<DawnOfManAudio>AS2D_DOM_SPEECH_ENGLAND</DawnOfManAudio>
		</Row>
	</Civilizations>

And:
Code:
		<Row Tag="TXT_KEY_CIV5_DAWN_VIKING_TEXT">
			<Text>
				The Vikings are here!
			</Text>
		</Row>
		<Row Tag="TXT_KEY_CIV5_DAWN_VIKING_TITLE">
			<Text>Viking</Text>
		</Row>


I can have the correct text show in the pedia and all the references to the name of the Civ and Leader are good.

I've tried to get a screenshot showing what information is displayed, but no joy. It does show Viking and Eric The Red at the top of the pop up screen and two pictures of what look like pyramids in the bonus area. There's no back ground or portrait.

I think it might have to do with the fact that England is still an active civilization, that's the only thing I can think of.

Please let me know your thoughts.

Cheers,
Jason
 
Back
Top Bottom