Can't find the wiki page for estates demand statutory rights event

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

Siddy00

First Lieutenant
47 Badges
May 2, 2016
236
572
  • Victoria 3 Sign Up
  • Empire of Sin - Premium Edition
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Victoria 2
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Death or Dishonor
  • Surviving Mars
  • Hearts of Iron IV: Together for Victory
  • Hearts of Iron IV: Expansion Pass
  • Crusader Kings III
  • Europa Universalis IV: Pre-order
  • Battle for Bosporus
  • Europa Universalis IV: Call to arms event
  • Empire of Sin
  • Europa Universalis 4: Emperor
  • Europa Universalis IV
  • Crusader Kings II
  • Hearts of Iron IV: Cadet
  • Imperator: Rome
  • Pillars of Eternity
  • Tyranny: Archon Edition
  • Europa Universalis IV: Dharma
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
  • Crusader Kings II: The Old Gods
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Golden Century
  • Europa Universalis IV: Cradle of Civilization
  • Europa Universalis IV: Mandate of Heaven
  • Crusader Kings II: Monks and Mystics
  • Europa Universalis IV: Rights of Man
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Third Rome
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sword of Islam
I can't seem to find it either on the wiki, but grotaclas described the conditions and MTTH very well in another thread earlier today:
Did you already give 4 privileges to the nobles*? That would prevent the event from firing. The only other requirements are that you have less than 11% crownland and that you have the nobles* estate and that you don't have the privilege yet.

* It is nobles for non-hindu monarchies. For republics the event looks at the burghers, for theocracies at the clergy and for hindus at the brahmins
BTW: the MTTH for the event is 128 months if the crownland is 6-10.99%, 64 months if it is 4-5.99%, 32 months if it is 2-3.99%, 16 months if it is 1-1.99% and 8 months if it is below 1%. So it might take some time to get the event if the crownland is not very very low.

For reference, here is the full script from the event file (events/EstatePrivilegesAndAgendasEvents.txt, lines 105--198), but it says exactly the same:
Code:
# Estates bailing out the player
country_event = {
    id = estate_privileges_and_agendas_events.2
    title = estate_privileges_and_agendas_events.2.name
    desc = estate_privileges_and_agendas_events.2.desc
    picture = NOBLE_ESTATE_DEMANDS_eventPicture

    trigger = {
       
        NOT = { crown_land_share = 11 }
        OR = {
            AND = {
                government = monarchy
                has_estate = estate_nobles
                NOT = {    num_of_estate_privileges = { estate = estate_nobles    value = 4 } }
            }
            AND = {
                government = republic
                has_estate = estate_burghers
                NOT = {    num_of_estate_privileges = { estate = estate_burghers value = 4 } }
            }
            AND = {
                government = theocracy
                has_estate = estate_church
                NOT = {    num_of_estate_privileges = { estate = estate_church value = 4 } }
            }
            AND = {
                religion = hinduism
                has_estate = estate_brahmins
                NOT = {    num_of_estate_privileges = { estate = estate_brahmins    value = 4 } }
            }
        }
        NOT = {
            has_estate_privilege = estate_brahmins_statutory_rights
            has_estate_privilege = estate_nobles_statutory_rights
            has_estate_privilege = estate_burghers_statutory_rights
            has_estate_privilege = estate_church_statutory_rights
        }
    }

    mean_time_to_happen = {
        months = 128
        modifier = {
            factor = 0.5
            NOT = { crown_land_share = 6 }
        }
        modifier = {
            factor = 0.5
            NOT = { crown_land_share = 4 }
        }
        modifier = {
            factor = 0.5
            NOT = { crown_land_share = 2 }
        }
        modifier = {
            factor = 0.5
            NOT = { crown_land_share = 1 }
        }
    }

    option = { # Accept the Bail Out
        name = estate_privileges_and_agendas_events.2.a
        custom_tooltip = seize_land_unavailable_from_privilege
        if = {
            limit = {
                religion = hinduism
                has_estate = estate_brahmins
            }
            set_estate_privilege = estate_brahmins_statutory_rights
        }
        else_if = {
            limit = {
                government = monarchy
            }
            set_estate_privilege = estate_nobles_statutory_rights
        }
        else_if = {
            limit = {
                government = republic
            }
            set_estate_privilege = estate_burghers_statutory_rights
        }
        else_if = {
            limit = {
                government = theocracy
            }
            set_estate_privilege = estate_church_statutory_rights
        }
    }

    option = { # Refuse the Bail Out
        name = estate_privileges_and_agendas_events.2.b
    }
}
 
  • 2
Reactions: