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

Manchester.bw

:D
58 Badges
Apr 24, 2009
1.624
137
  • Heir to the Throne
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Pre-order
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Semper Fi
  • Victoria: Revolutions
  • Europa Universalis IV: Res Publica
  • Knights of Honor
  • Magicka
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III
  • For the Motherland
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Art of War
  • 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: Sons of Abraham
  • Crusader Kings II
  • Europa Universalis III
  • Europa Universalis III Complete
  • Divine Wind
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Dharma
  • Europa Universalis 4: Emperor
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Rule Britannia
  • Stellaris - Path to Destruction bundle
  • Crusader Kings II: Monks and Mystics
  • Europa Universalis IV: Rights of Man
  • Europa Universalis IV: Cradle of Civilization
  • Crusader Kings II: Reapers Due
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV Sign-up
  • 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
  • Crusader Kings II: Holy Knight (pre-order)
  • 500k Club
  • Victoria 2
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV
  • Crusader Kings II: Sword of Islam
Is the Reaper's Due event in the game where you can buy an additional empty slot? Just that it's been a few monarchs now and I'm starting to doubt it... :)
 
It exists, it just isn't common.
Code:
province_event = { #Reclaim Land
    id = RIP.11705
    title = PROSPERITY_TITLE
    desc = RIP.11705.d
    picture = "GFX_evt_culture_change"
    border = GFX_event_normal_frame_economy
   
    has_flag = crown_focus_province
   
    trigger = {
        has_province_modifier = prosperity_modifier_3
        NOT = {
            num_of_max_settlements = 7
        }
    }  
   
    mean_time_to_happen = {
        years = 65
        modifier = {
            factor = 1.2
            owner = {
                independent = no
            }
        }
        modifier = {
            factor = 0.9
            owner = {
                stewardship = 12
            }
        }
        modifier = {
            factor = 0.9
            owner = {
                stewardship = 16
            }
        }
        modifier = {
            factor = 0.9
            owner = {
                stewardship = 18
            }
        }
        modifier = {
            factor = 0.9
            owner = {
                learning = 12
            }
        }
        modifier = {
            factor = 0.9
            owner = {
                learning = 16
            }
        }
        modifier = {
            factor = 0.9
            owner = {
                learning = 18
            }
        }
        modifier = {
            factor = 0.9
            owner = {
                is_smart_trigger = yes
            }
        }
        modifier = {
            factor = 0.9
            owner = {
                OR = {
                    trait = administrator
                    trait = architect
                    trait = scholar
                    trait = gardener
                }
            }
        }
        modifier = {
            factor = 0.9
            owner = {
                trait = diligent
            }
        }
        modifier = {
            factor = 0.9
            owner = {
                OR = {
                    trait = scholarly_theologian
                    trait = mastermind_theologian
                    trait = charismatic_negotiator
                    trait = grey_eminence
                    trait = fortune_builder
                    trait = midas_touched
                }
            }
        }
    }
   
   
    option = {
        name = RIP.11705.a
       
        ai_chance = {
            factor = 95
        }
       
        owner = {
            scaled_wealth = -2.5
        }
        add_holding_slot = 1
    }
    option = {
        name = RIP.11705.b
       
        ai_chance = {
            factor = 5
        }
       
    }
}
There are ways to shorten the time it takes, but even then the base is 65 years so it is rare to get it.
 
That event is disabled in the mod, this is because most provinces do not have 7 baronies defined and so it would not be possible to add more.