How do you change your crest for created faction?

I made my own faction and I keep trying to change the crest. There are a lot of different crests to choose from in the gfx\logos folder. I want to use one of the other crests but when I put it in, it doesn't show up in game.

 

<PreferredLogoType>KingdomCrest7</PreferredLogoType> This line is where the crest goes. I even tried changing the name of Crest_42.png to Kingdom_Crest_07.png. The other factions just put it like: KingdomCrest2. So I tried that but doesn't work. Doesn't work when I put Crest42, Crest_42 or Crest_42.png either.

1,260 views 1 replies
Reply #1 Top

Look into CoreLogos.xml <- In this file the CoreCrests are defined. To define an one one, create:

Code: xml
  1. &lt;LogoTypes&gt;
  2. &lt;LogoType InternalName="KingdomCrest7"&gt;<span> </span>&lt;DisplayName&gt;Crest of the Empire&lt;/DisplayName&gt;<span> </span>&lt;Description&gt;For generations, the Crest of the Empire has graced the banners of the ever expanding nation.&lt;/Description&gt;<span> </span>&lt;MainLogo&gt;Kingdom_Crest_07.png&lt;/MainLogo&gt;<span> </span>&lt;RippedLogo&gt;Empire_RippedLogo.png&lt;/RippedLogo&gt;<span> </span>&lt;/LogoType&gt;&lt;/LogoTypes&gt;

But untested :-)