Changing Leaderheads

Lord_of_War

Chieftain
Joined
May 18, 2006
Messages
50
Greetings fellas,

I was wondering if it is difficult to remove the animated leaderheads and insert actual photos of the leaders themselves. If there is a thread that someone knows of that I can read I would greatly appreciate the link.

Best,
 
Lord_of_War said:
Greetings fellas,

I was wondering if it is difficult to remove the animated leaderheads and insert actual photos of the leaders themselves. If there is a thread that someone knows of that I can read I would greatly appreciate the link.

Best,

Yeap, I replaced all the animated with flat pics too.

This is an example of a CIV4ArtDefines_Leaderhead.xml definition that uses the animated leaderhead:

Code:
		<LeaderheadArtInfo>
			<Type>ART_DEF_LEADER_BARBARIAN</Type>
			<Button>,Art/interface/LeaderHeads/Btn_LH_Mongol_Genghis.dds,Art/Interface/Buttons/Actions_Buildss_Specialists_Atlas.dds,6,12</Button>
			<NIF>art/LeaderHeads/Sid/sid.nif</NIF>
			<KFM>art/LeaderHeads/Sid/sid.kfm</KFM>
			<NoShaderNIF>art/LeaderHeads/Sid/sid_noshader.nif</NoShaderNIF>
			<BackgroundKFM>art/LeaderHeads/Sid/sid_BG.kfm</BackgroundKFM>
		</LeaderheadArtInfo>

The following is an example of a definition from the same file that uses a flat picture:

Code:
		<LeaderheadArtInfo>
			<Type>ART_DEF_LEADER_SABATHIEL</Type>
			<Button>,Art/interface/LeaderHeads/Sabathiel button.dds</Button>
			<NIF>art/interface/LeaderHeads/Sabathiel.dds</NIF>
			<KFM/>
			<NoShaderNIF/>
			<BackgroundKFM/>
		</LeaderheadArtInfo>
 
Back
Top Bottom