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

unmerged(197382)

First Lieutenant
5 Badges
Mar 1, 2010
204
0
www.daemonsfootball.com
  • Arsenal of Democracy
  • Hearts of Iron II: Armageddon
  • Europa Universalis III
  • Hearts of Iron III
  • Heir to the Throne
Is there a way to mod the revolt risk of province gained by peace-events?
 
I'm curious too.

Say, for example, I use an event for Colombia to annex both Venezuela and Colombia, they get a 15% revolt risk in all provinces. When I then use another event to change the tag to U77 (gran colombia), I get those provinces as cores. But the revolt risk is set in stone and won't go down any way.

Is there a way to lower the revolt risk?

Code:
event = {
	id = 3315
	random = no

	trigger = {
	}

	name = "you got mail"
	desc = "and you took over colombia, venezuela and ecuador. Splendid."

	action_a = {
		name = "thank you"
		command = { type = inherit which = COL}
		command = { type = inherit which = VEN}
		command = { type = inherit which = ECU}
	}
}

Code:
event = {
	id = 3311
	random = no
	country = COL		#COL owns VEN and ECU

	trigger = {
		NOT = {
			exists = U77
			exists = VEN
			exists = ECU
		}
		OR = {
			control = { province = 813 data = COL }
			owned = { province = 813 data = COL }
		}
		OR = {
			control = { province = 815 data = COL }
			owned = { province = 815 data = COL }
		}
		OR = {
			control = { province = 811 data = COL }
			owned = { province = 811 data = COL }
		}
	}

	name = "Simon Bolivar's Dream"
	desc = "With both Venezuela and Ecuador firmly in your control, intellectuals propose the return of a Greater Columbia. Such a move may antagonize neighbouring countries, especially if you claim land beyond your current borders."
	style = 0

	date = { day = 1 month = january year = 1936 }
	offset = 4
	deathdate = { day = 30 month = december year = 1999 }

	action_a = {
		name = "The dream died a long time ago"
		ai_chance = 100
		command = { type = relation which = PER value = 5 } 
		command = { type = relation which = BRA value = 5 } 
		command = { type = domestic which = defense_lobby value = 2 }
		command = { type = domestic which = interventionism value = 2 }
		command = { type = dissent value = -5}
	}
	action_b = {
		name = "We can fulfill this dream now"
		ai_chance = 0
		command = { type = country which = u77 }  
		command = { type = relation which = PRU value = -10 } 
		command = { type = relation which = BRA value = -10 } 
		command = { type = relation which = PAN value =  5 }
		command = { type = relation which = ENG value = -5 }
		command = { type = relation which = USA value = -5 }
		command = { type = dissent value = -2 }
		command = { type = sleepevent which = 15091 }
	}
	action_c = {
		name = "We can make Gran Colombia even greater"
		ai_chance = 0
		command = { type = country which = u77 }   
		command = { type = relation which = PRU value = -10 } 
		command = { type = relation which = BRA value = -10 } 
		command = { type = relation which = PAN value = -25 }
		command = { type = relation which = ENG value = -25 }
		command = { type = relation which = USA value = -25 }
		command = { type = relation which = FRA value = -10 } 
		command = { type = domestic which = defense_lobby value = -2 }
		command = { type = domestic which = interventionism value = -2 }
		command = { type = dissent value = 2 }
		command = { type = addcore which = 888 }
		command = { type = addcore which = 889 }
		command = { type = addcore which = 871 }
		command = { type = sleepevent which = 15091 }
	}
}
 
I've found this HSR event (hope that the authors won't get andry with me if I put it here), this one was used to increase by 2% the partisan activity in Jugo provinces:

Code:
event = { 
	id = 47028 
	country = GER
	random = no
	persistent = yes
	
	trigger = { 	random = 10
			control = { province = 453 data = ger } #Belgrade
			war = { country = GER country = sov } war = { country = GER country = usa }
			event = 47006 or = { event = 40304 event = 40316 }
			}
 
	name = "Partisan Activity in the former Yugoslavia"
	desc = "12. Armee reports an increase of partisan activity in the Balkans."
	style = 0
	picture = partisan_revolt

	date = { day = 1 month = january year = 1936 }
	offset = 14
	deathdate = { day = 30 month = december year = 1954 }

	action_a = {
		name = "We must crush them"	
		command = { type = province_revoltrisk which = 382 value = 2 }
		command = { type = province_revoltrisk which = 383 value = 2 }
		command = { type = province_revoltrisk which = 387 value = 2 }
		command = { type = province_revoltrisk which = 385 value = 2 }
		command = { type = province_revoltrisk which = 386 value = 2 }
		command = { type = province_revoltrisk which = 414 value = 2 }
		command = { type = province_revoltrisk which = 418 value = 2 }
		command = { type = province_revoltrisk which = 452 value = 2 }
		command = { type = province_revoltrisk which = 451 value = 2 }
		command = { type = province_revoltrisk which = 415 value = 2 }
		command = { type = province_revoltrisk which = 413 value = 2 }
		command = { type = trigger which = 47029 }
	}

I've seen this used by HSR guys both for increasing and reduce RR in a province via event, and is actually what I was looking for. :rolleyes: