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

TurtleShroom

Censor
72 Badges
Dec 8, 2013
1.799
524
fanon.clubpenguinwiki.info
  • Europa Universalis IV: Res Publica
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Mare Nostrum
  • Cities: Skylines - Snowfall
  • Stellaris: Galaxy Edition
  • Cities: Skylines - After Dark
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Pre-order
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Wealth of Nations
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Europa Universalis IV: Conquest of Paradise
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II
  • Europa Universalis IV: Art of War
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Mandate of Heaven
  • Stellaris: Distant Stars
  • Surviving Mars
  • Europa Universalis IV: Dharma Pre-order
  • Crusader Kings II: Monks and Mystics
  • Age of Wonders III
  • Cities: Skylines - Green Cities
  • Victoria 3 Sign Up
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Europa Universalis IV: Rule Britannia
  • Cities: Skylines - Parklife
  • Cities: Skylines - Natural Disasters
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Europa Universalis IV: Rights of Man
  • Crusader Kings II: Reapers Due
  • Hearts of Iron IV: Cadet
  • Stellaris: Galaxy Edition
  • Crusader Kings II: Conclave
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • Cities: Skylines
  • Victoria 2
Good afternoon.

I had not played a Nomad in CK2 for a long time, and I was stunned to realize that the Make Primary Holding Decision that you can take is now disabled for Steppe Nomads. For both RP reasons and simply because I like rewarding people, I would often take Feudal holdings, put the castle back (or a city, or a temple), and give them clay to secure a future for them.

This ability is now gone, which is absolutely ridiculous. I tried to write a Decision to add it back, but I am having trouble getting it to work. It worked for a few days, but I must have changed something to damage it.

Here is the code that I used:
Code:
settlement_decisions = {
    make_primary2 = {
        only_playable = yes
        filter = owned
        ai_target_filter = owned
      
        from_potential = {
#            is_playable = yes
            is_nomadic = yes
        }
      
        potential = {
            is_capital = no
            holder_scope = {
                character = FROM
            }
            OR = {
                dejure_liege_title = {
                    holder_scope = {
                        character = FROM
                    }
                }
                county = {
                    holder_scope = {
                        character = FROM
                    }
                }
            }
        }
        allow = {
            FROM = {
                ai = no
                OR = {
                    AND = {
                        is_merchant_republic = no
                        is_nomadic = yes
                    }
                    #capital_scope = {
                        #ROOT = {
                            #location = {
                                #NOT = { province = PREVPREV }
                            #}
                        #}
                    #}
                    is_nomadic = yes
                }
            }
        }
        effect = {
            make_capital_holding = yes
        }
        revoke_allowed = {
            always = no
        }
        ai_will_do = {
            factor = 0
        }
    }
}

As you can tell, I essentially copied the original version. I found that removing the pound signs from the part that was cut out by Paradox caused the entire Decision to disappear, and take the Settling Decisions with it. The version I have right now does not appear in the game. I would greatly appreciate any assistance on this matter. I always play a Nomad by ensuring every Clan but me has one county (unless I like them), so relying on non-Nomadic vassals for troops, ships, and wealth is part of my play style.

Thank you for any assistance you may render.


Deus Vult.
-TURTLESHROOM
 
Last edited: