I've noticed that for Burgundy, if I choose to attempt to become king of France, some provinces get cursed with a permanent revolt risk modifier of +5. Heres the event showing it:
Won't this screw up things when I become France, because I'll be left be a permanent revolt risk in some of my provinces? Thus, shouldn't the provincal revoltrisk either be timed, probably on the order of years, or, ideally, have an event removing it?
Or, does it work that changing nations into France will remove my revoltrisk automatically?
Thanks.
Code:
#The Estate of Charles VI (triggered by 1000017 ->FRA )
event = {
id = 1000018
random = no
country = BUR
name = "The Estate of Charles VI"
desc = "The death of Charles VI and the still unstable military situation left Phillip the Good alone at the head of the royal government. This position would not have been awkward if, in Bourges, there had not been the Dauphin, legitimate heir to the crown. For the Duke of Burgundy, denying the rights of the Dauphin with the support of the Parliament of Paris would allow him to approach the throne, but to let the throne go to Charles VII at a price was also a possibility. One path could preserve his influence on the Crown while guaranteeing peace, while the other meant an uncertain war and a chance at the throne."
action_a = {
name = "Long Live King Charles VII !"
command = { type = stability value = 1 }
command = { type = relation which = BOU value = 50 }
command = { type = relation which = DAU value = 200 }
command = { type = relation which = ORL value = 50 }
command = { type = relation which = PRO value = 50 }
command = { type = alliance which = DAU }
command = { type = secedeprovince which = DAU value = 376 }
command = { type = secedeprovince which = DAU value = 384 }
command = { type = secedeprovince which = DAU value = 385 }
command = { type = secedeprovince which = DAU value = 386 }
command = { type = secedeprovince which = DAU value = 408 }
command = { type = secedeprovince which = DAU value = 411 }
command = { type = secedeprovince which = DAU value = 413 }
command = { type = addcore which = 383 }
command = { type = trigger which = 1000020 } #Long Live King Charles VII! ->DAU
command = { type = badboy value = -2 }
}
action_b = {
name = "Deny the Rights of the Dauphin"
command = { type = stability value = -1 }
command = { type = revoltrisk which = 60 value = 2 }
command = { type = relation which = BOU value = -50 }
command = { type = relation which = DAU value = -200 }
command = { type = relation which = ORL value = -50 }
command = { type = relation which = PRO value = -50 }
command = { type = trigger which = 1000019 } #Burgundy Refuses the Rights of Charles ->DAU
command = { type = inherit which = FRA }
[color=orange]command = { type = province_revoltrisk which = 383 value = 5 }
command = { type = province_revoltrisk which = 384 value = 5 }
command = { type = province_revoltrisk which = 385 value = 5 }
command = { type = province_revoltrisk which = 386 value = 5 }
command = { type = province_revoltrisk which = 376 value = 5 }
command = { type = province_revoltrisk which = 413 value = 5 }[/color]
command = { type = badboy value = 2 }
}
}
Won't this screw up things when I become France, because I'll be left be a permanent revolt risk in some of my provinces? Thus, shouldn't the provincal revoltrisk either be timed, probably on the order of years, or, ideally, have an event removing it?
Or, does it work that changing nations into France will remove my revoltrisk automatically?
Thanks.