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

Caspian Mortis

Major
16 Badges
May 27, 2016
566
945
  • Crusader Kings II
  • Europa Universalis IV
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Cradle of Civilization
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Dharma
  • Europa Universalis IV: Golden Century
  • Crusader Kings III
  • Europa Universalis 4: Emperor
It doesn't seem possible currently to have cultural flavor for councillor titles, like Vizier for Arabic cultures or, Lönchen for Tibetan cultures.

This takes away from the immersion.

It's apparently also not possible to have female specific councillor titles, like Chancelloress or Spymistress.

It would be nice if this was changed in the future.
 
  • 1
  • 1
Reactions:
Did you added them to the flavorization file? There is stuff like this:

Code:
prince_male_roman = {
    type = character
    gender = male
    special = ruler_child
    tier = kingdom
    priority = 40
    cultures = { roman }
    governments = { feudal_government }
    top_liege = no
}
 
  • 1
Reactions:
Yeah I already found out myself how to do it.

Unfortunately it doesn't seem possible to define female religious head titles, so female Popes get called Pope and female Caliphs get called Imams instead of Calipha.
 
Did you added them to the flavorization file? There is stuff like this:

Code:
prince_male_roman = {
    type = character
    gender = male
    special = ruler_child
    tier = kingdom
    priority = 40
    cultures = { roman }
    governments = { feudal_government }
    top_liege = no
}

As per my post, the flavorization title system is deeply limited and flawed, it would not be able to accomplish what they are looking for.
 
  • 1
Reactions:
As per my post, the flavorization title system is deeply limited and flawed, it would not be able to accomplish what they are looking for.
Have you found a way to have custom cultural loc shown up for councillar titles though? If so how? I've been testing this to no avail for a few hours now :/ I tried imitating the flavour and cultural loc lines for barons and counts to no avail
 
Have you found a way to have custom cultural loc shown up for councillar titles though? If so how? I've been testing this to no avail for a few hours now :/ I tried imitating the flavour and cultural loc lines for barons and counts to no avail

I'm not sure. You could probably use dynamic localization, though it will be quite tedious.
 
Yeah I already found out myself how to do it.

Unfortunately it doesn't seem possible to define female religious head titles, so female Popes get called Pope and female Caliphs get called Imams instead of Calipha.
How did you accomplish cultural councillar titles? dynamic localization similar to what Azarias59 said?
 
You can change council names. Use below as an example. You can view 00_council_positions and see how Court Chaplin and Spouse positions are done as well. Remember to make a fallback

Code:
name = {
        first_valid = {
            triggered_desc = {
                trigger = { is_male = yes } ## Everything in this would have to follow this trigger so you won't have to do it twice.
                desc = {
                    first_valid = {
                        #Culture
                        triggered_desc = {
                            trigger = {
                                scope:councillor_liege = {
                                    has_culture = culture:culture  #Or whatever you want
                                }
                            }
                            desc = male_position_culture
                        }
                    }
                }
            }
        }
    }


After that you have to change the localization key

YAML:
male_position_culture:0 "Cool Position"

Now if you want to change the character title on his character's page.

under 00_title_holders in flavorization do this.

Code:
position_male = {
    type = character
    gender = male
    special = councillor
    priority = 1  # Change if you want it higher than baron/mayor etc.
    council_position = councillor_position #change to the position
}

Lastly edit culture_titles_l_english.yml

YAML:
position_male:0 "[CHARACTER.GetCouncilTitle]"
 
Last edited:
Yeah I already found out myself how to do it.

Unfortunately it doesn't seem possible to define female religious head titles, so female Popes get called Pope and female Caliphs get called Imams instead of Calipha.

Add in 00_title_holders

Code:
caliph_female = {
    type = character
    gender = female
    special = holder
    priority = 301
    titles = { d_sunni d_shiite }
    top_liege = no
}


Under culture_titles_l_english.yml

YAML:
caliph_female:0 "Calipha"
 
Here is an example from my mod in progress.

Council_test.jpg
 
  • 1Like
Reactions: