I swear I saw it somewhere a few days ago but can't find it now for some reason. I'm looking for the exact trigger conditions and MTTH for the event.
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.
events/EstatePrivilegesAndAgendasEvents.txt, lines 105--198), but it says exactly the same:# 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
}
}