How can i make the back of my heraldic armour the same as the front?

Users who are viewing this thread

Does anyone know how to make the back of the heraldic armour the same as the front?
I added my own COA to the game by replacing the Banners_f.dds file. 
Works fine for shields and flags, and the front of herladic armour but back is white :cry:

Plz help !!!!! :sad:
 
I'm honestly not sure you can. Search for 'tableau'. There should be some topic about it.
 
You have to adjust the UVmap so that the back and the front of the armor take up the same area.  There are other ways, but this would be the least intensive.  The new section on my tutorial can lead the way.
 
you can also change the color that is used on the back by changing a line in the module system.  I did this in my mod but unfortunately don't have the code in front of me...  I'll see if I can find and post it later.
 
ok, the background color can be changed in module_scripts.py in game_start.  Look at this thread:
http://forums.taleworlds.com/index.php/topic,49886.0.html

here's an example from my code:

      #Setting background colors for banners
  #BC - modified to change the back color of a banner/heraldic armor using instructions from http://forums.taleworlds.com/index.php/topic,49886.0.html
  #(troop_set_slot, "trp_banner_background_color_array", 0, 0xFF8f4531),
  (troop_set_slot, "trp_banner_background_color_array", 0, 0xFF312237),  
      #(troop_set_slot, "trp_banner_background_color_array", 1, 0xFF31545:cool:,
      (troop_set_slot, "trp_banner_background_color_array", 1, 0xFF312237),  
 
Back
Top Bottom