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

Sanderoth

Corporal
52 Badges
May 6, 2016
34
0
  • Surviving Mars: Digital Deluxe Edition
  • Europa Universalis IV: Rights of Man
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Mandate of Heaven
  • Surviving Mars
  • Age of Wonders III
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Europa Universalis IV: Rule Britannia
  • Crusader Kings II: Reapers Due
  • Stellaris: Distant Stars
  • Surviving Mars: First Colony Edition
  • Stellaris: Megacorp
  • Crusader Kings II: Holy Fury
  • Surviving Mars: First Colony Edition
  • Stellaris: Nemesis
  • Stellaris: Lithoids
  • Stellaris: Federations
  • Crusader Kings III
  • Crusader Kings III: Royal Edition
  • Stellaris: Necroids
  • Europa Universalis IV
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Pillars of Eternity
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • Cities: Skylines
  • Stellaris
  • Crusader Kings II: Legacy of Rome
  • 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: The Old Gods
  • Magicka
  • Crusader Kings II: Charlemagne
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Res Publica
  • Crusader Kings II: Jade Dragon
  • Stellaris: Synthetic Dawn
Hello,

So I am messing around with the de-jure duchies in the hope of making a mod for personal use. It's pretty simple - I plan to move some counties into other duchies and clean up some borders to suit my personal tastes. That being said, I have a question that probably has a very simple answer. I have successfully moved some counties around but I get stuck when moving c_hereford into d_gloucester.

Now, the code seems to be right:

Code:
d_gloucester = { # Hwicce
            color = { 57 160 101 }
            color2 = { 255 255 255 }
           
            capital = 21 # Gloucester
           
            norman = Gloucester
            english = Gloucester
            saxon = "Hwicce"
            welsh = "Caerloyw"
           
            allow = {
                may_create_duchy_trigger = yes
            }
           
            c_gloucester = {
                color = { 13 229 144 }
                color2 = { 255 255 255 }
               
                saxon = "Glaiwcaester"
                welsh = "Caerloyw"
           
                holy_site = lollard
           
                b_gloucester = {
                    saxon = "Glaiwcaester"
                    welsh = "Caerloyw"
                    cornish = "Caerloyw"
                    cumbric = "Caerloyw"
                }
                b_sudeley = {}
                b_tewkesbury = {}
                b_cheltenham = {}
                b_cirencester = {}
                b_winchcombe = {}
                b_bristol = {
                    saxon = "Bricgstow"
                }
                b_hailes = {}
            }
            c_hereford = {
                color = { 106 165 217 }
                color2 = { 255 255 255 }
               
                welsh = "Henffordd"
                cumbric = "Henffordd"
                cornish = "Henffordd"
           
                b_st_ethelberts = {}
                b_hereford = {
                    welsh = "Henffordd"
                }
                b_leominster = {}
                b_archenfield = {}
                b_ewyas_harold = {}
                b_ledbury = {}
                b_clifford = {}
                b_brobury = {}
            }
            c_worcester = {
                color = { 151 194 60 }
                color2 = { 255 255 255 }
               
                saxon = "Weorgoranceaster"
                welsh = "Caerwrangon"
               
                b_worcester = {
                    saxon = "Weorgoranceaster"
                    welsh = "Caerwrangon"
                    cornish = "Caerwrangon"
                    breton = "Caerwrangon"
                }
                b_evesham = {}
                b_droitwich = {}
                b_kidderminster = {}
                b_pershore = {}
                b_malvern = {}
                b_bromsgrove = {}
                b_laughern = {}
            }
        }

However, the result I get in game is this:

upload_2018-5-24_19-1-3.png


It just doesn't want to budge. Am I missing something here? Apologies if this is 1. Glaring obvious - this is my first serious attempt at building a mod, and 2. If this post doesn't belong here. I wasn't sure if it belonged in the vanilla forum.

Thanks for any help you can give.

Edit: Thoughts on the county sharing a name with the d_hereford? I don't see why this would matter, but thought I would throw it out there.
 
Make sure your submod has CK2+ as a dependency to ensure it loads after it. This is defined in the sub-mods .mod file. (If you are doing it like that)

Also make sure you aren't loading a save; duchy layouts are stored in the save so loading a made prior to the edits will not reflect the change in landed_titles
 
Make sure your submod has CK2+ as a dependency to ensure it loads after it. This is defined in the sub-mods .mod file. (If you are doing it like that)

Also make sure you aren't loading a save; duchy layouts are stored in the save so loading a made prior to the edits will not reflect the change in landed_titles

I can confirm that the dependency is loaded correctly, and I am starting a new game to check, every time.
 
Ok, so I fixed it. It was this line in the history file for c_hereford.

Code:
852.1.1={
    de_jure_liege = d_hereford
    liege = d_hereford

I just changed the de-jure to d_gloucester - if anyone is interested.