• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Eimi

Sergeant
49 Badges
Dec 3, 2013
54
1
  • Crusader Kings II: Charlemagne
  • Europa Universalis IV: Pre-order
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Sword of the Stars II
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Art of War
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Stellaris: Synthetic Dawn
  • Crusader Kings II: Jade Dragon
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Stellaris: Distant Stars
  • Stellaris: Megacorp
  • Crusader Kings II: Holy Fury
  • Imperator: Rome Deluxe Edition
  • Imperator: Rome
  • Stellaris: Ancient Relics
  • Stellaris: Lithoids
  • Stellaris: Necroids
  • Stellaris: Federations
  • Crusader Kings III
  • Hearts of Iron IV: Together for Victory
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Crusader Kings II: Reapers Due
  • Hearts of Iron IV: Colonel
  • Hearts of Iron IV: Cadet
  • Stellaris
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • Victoria 2
  • Europa Universalis IV
  • Europa Universalis IV: Mare Nostrum
Code:
objectTypes = {

   EMFXActorType = {
       name = "hellenicgfx_job_chancellor"
       actorfile = "gfx\models\Mapindicators\Eastern_Chancellor.xac"
      
       idle   = "gfx\models\Mapindicators\Eastern_Chancellor.xsm"
       scale = 1.0f
   }

   EMFXActorType = {
       name = "hellenicgfx_job_treasurer"
       actorfile = "gfx\models\Mapindicators\Eastern_Steward.xac"
      
       idle   = "gfx\models\Mapindicators\Eastern_Steward.xsm"
       scale = 1.0f
   }

   EMFXActorType = {
       name = "hellenicgfx_job_spymaster"
       actorfile = "gfx\models\Mapindicators\Eastern_Spymaster.xac"
      
       idle   = "gfx\models\Mapindicators\Eastern_Spymaster.xsm"
       scale = 1.0f
   }

   EMFXActorType = {
       name = "hellenicgfx_job_spiritual"
       actorfile = "gfx\models\Mapindicators\Eastern_Lord_Spritual.xac"
       idle   = "gfx\models\Mapindicators\Eastern_Lord_Spritual.xsm"
       scale = 1.0f
   }

   EMFXActorType = {
       name = "hellenicgfx_job_marshal"
       actorfile = "gfx\models\Mapindicators\Eastern_Marshal.xac"
      
       idle   = "gfx\models\Mapindicators\Eastern_Marshal.xsm"
       scale = 1.0f
   }

   ##### Chancellor --------------------------------------------------------------------------
   pdxmesh = {
       name = "hellenicgfx_job_chancellor_female"
       file = "gfx/models/Mapindicators/efc_eastern_chancellor_female.mesh"
      
      
       animation = { id = "idle"       type = "efc_eastern_chancellor_female_idle_animation" }
      
       scale = 1.0
   }

   ##### Steward   --------------------------------------------------------------------------
   pdxmesh = {
       name = "hellenicgfx_job_treasurer_female"
       file = "gfx/models/Mapindicators/efc_eastern_stewardess_female.mesh"

      
       animation = { id = "idle"       type = "efc_eastern_stewardess_female_idle_animation" }
      
       scale = 1.0
   }

   ##### Spymaster   --------------------------------------------------------------------------
   pdxmesh = {
       name = "hellenicgfx_job_spymaster_female"
       file = "gfx/models/Mapindicators/efc_eastern_spymaster_female.mesh"     
      
      
       animation = { id = "idle"       type = "efc_eastern_spymaster_female_idle_animation" }
      
       scale = 1.0
   }

   ##### Marshal   --------------------------------------------------------------------------
   pdxmesh = {
       name = "hellenicgfx_job_marshal_female"
       file = "gfx/models/Mapindicators/efc_eastern_marshal_female.mesh"     
      
      
       animation = { id = "idle"       type = "efc_eastern_marshal_female_idle_animation" }
      
       scale = 1.0
   }

   ##### Spritual   -------------------------------------------------------------------------
   pdxmesh = {
       name = "hellenicgfx_job_spiritual_female"
       file = "gfx/models/Mapindicators/efc_eastern_spiritual_female.mesh"     
      
      
       animation = { id = "idle"       type = "efc_eastern_spiritual_female_idle_animation" }
      
       scale = 1.0
   }

}

While playing a levantine culture character, I swapped religion to Hellenic and found out that this changed my councilors to use the western model. As that model is quite outdated I wanted to set about to try and change, with the above code being what I have thought to use.

However, this code has only succeeded in changing what model the spiritual councilor uses. Strangely women spymasters use the muslim model, while everyone else is just western. Does anyone have ideas on how to make the other councilors use new models? Particularly I am trying to make it so that Hellenic character use eastern/Orthodox models.
 
Well I managed to make it use eastern female models by extracting them from my dlc folder and then putting them in the mod, however the male models aren't working, I presume because the male ere councillors are made using a different system. I noticed in the code for the dlc they use EMFXActorType as opposed to pdxmesh for newer councillors. So now I suppose I am at a loss for how to fix the male councillors since I could not find a more updated version of the code for Eastern male councillors.