using existing leader for a civ mod

No major corruptions unless you actually implement it astoundingly poorly.

Now, I don't know if you want to just use the entire leader from another civ or just the leader's 3D diplo screen, but either way it's pretty simple.
For example, if you wanted to just steal the entire Bismarck for your civ, all it takes is this:
Code:
<GameData>
	<Civilization_Leaders>
		<Row>
			<CivilizationType>CIVILIZATION_YOURCIVNAMEHERE</CivilizationType>
			<LeaderheadType>LEADER_BISMARCK</LeaderheadType>
		</Row>
	</Civilization_Leaders>
</GameData>
Or if you just wanted Bismarck's leaderscene, that's one line of code if you've already got a new leader defined:
Code:
<GameData>
	<Leaders>
		<Row>
			<Type>LEADER_YOURLEADERNAMEHERE</Type>
			...
			[B][COLOR="Blue"]<ArtDefineTag>Bismarck_Scene.xml</ArtDefineTag>[/COLOR][/B]
		</Row>
	</Leaders>
</GameData>
 
Top Bottom