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

Klein001

First Lieutenant
13 Badges
Nov 6, 2008
217
1
  • Crusader Kings II
  • Deus Vult
  • Europa Universalis III Complete
  • Hearts of Iron III
  • Majesty 2
  • Victoria: Revolutions
  • Europa Universalis: Rome
  • Semper Fi
  • Europa Universalis IV
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Victoria 2
  • 500k Club
I'm wanting to know out of curiosity what exactly triggers event 1096, where a vassal is essentially given the option to declare independence?
 
I'm wanting to know out of curiosity what exactly triggers event 1096, where a vassal is essentially given the option to declare independence?



Code:
##############
# Pay Homage #
##############

# NOTE: Triggered by the code directly. Do NOT change the ID.

character_event = {
	id = 1096
	picture = "event_intrigue"

	action_a = { # Acknowledge New Liege
		effect = { type = prestige scale = 1 }
	}
	action_b = { # Refuse to acknowledge
		effect = { type = independence }
		effect = { type = trigger for = liege value = 9999 }
		effect = { type = prestige scale = -1 }
	}
}

# Liege counter-part for independence of vassal:

character_event = {
	id = 9999
	picture = "event_intrigue"

	immidiate = { # Damn
		effect = { type = prestige scale = -0.2 }
	}
}

There aren't any triggers listed of course, but since the event fires when a liege dies it is easy to deduce what the code is.