• 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.

Eludio

Decurion
66 Badges
Feb 7, 2015
583
617
  • Hearts of Iron IV: Death or Dishonor
  • Stellaris: Galaxy Edition
  • Stellaris: Galaxy Edition
  • Hearts of Iron IV: Cadet
  • Europa Universalis 4: Emperor
  • Stellaris: Necroids
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Hearts of Iron IV: Together for Victory
  • Stellaris: Nemesis
  • Stellaris - Path to Destruction bundle
  • Hearts of Iron IV: By Blood Alone
  • Stellaris: Galaxy Edition
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Cradle of Civilization
  • Hearts of Iron IV: Expansion Pass
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Europa Universalis IV: Rule Britannia
  • Stellaris: Distant Stars
  • Europa Universalis IV: Dharma
  • Stellaris: Megacorp
  • Imperator: Rome Deluxe Edition
  • Imperator: Rome
  • Hearts of Iron IV: La Resistance
  • Hearts of Iron IV: No Step Back
  • Crusader Kings II: Legacy of Rome
  • Europa Universalis IV
  • Hearts of Iron IV: Expansion Pass
  • Stellaris: Ancient Relics
  • Stellaris: Lithoids
  • Imperator: Rome - Magna Graecia
  • Stellaris: Federations
  • Crusader Kings III
  • Crusader Kings III: Royal Edition
  • Battle for Bosporus
  • Stellaris
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Holy Fury
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Third Rome
  • Crusader Kings II: Horse Lords
  • Imperator: Rome Sign Up
  • Crusader Kings II: Charlemagne
  • Crusader Kings II
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
I’m working on a small submod and was wondering if it were possible for vassals to be given different localisation than independent rulers (besides dukes using Petty King).

E.g. making a “King” become a “Grand Duke” if he is vassalised by an Emperor, without changing his actual landed title.
 
It might be possible with customizable_localisation

Code:
defined_text = {
    name = GetMyTitle
    
    text = {
        localisation_key = VASSAL_KING
        trigger = {
            real_tier = king
            independent = no
        }
    }
    
    [...]
}

with every localization of king changed to e.g. "king_greek;[Root.GetMyTitle];;;;x" (with the proper number of semicolons). I haven't tested it, though.
 
It might be possible with customizable_localisation

Code:
defined_text = {
    name = GetMyTitle
   
    text = {
        localisation_key = VASSAL_KING
        trigger = {
            real_tier = king
            independent = no
        }
    }
   
    [...]
}

with every localization of king changed to e.g. "king_greek;[Root.GetMyTitle];;;;x" (with the proper number of semicolons). I haven't tested it, though.

Thanks, hadn't thought of that! I'll give it a try