My problem conserns the DVIP 'break_free' event which causes vassals of different cultures, located in different regions to brake free. I simply want to add a line which prevents this event from firing if the two rulers are of same dynasty.
Since my modding skills are... limited
oo) what do I need to do?
Here's the beginning of the event's text:
Since my modding skills are... limited
Here's the beginning of the event's text:
Code:
character_event = {
id = 1979080
picture = "event_claim"
trigger = {
condition = { type = ruler }
condition = { type = is_vassal }
condition = { type = age value = 18 }
condition = { type = not value = { type = form_of_goverment value = ecclestical } } # Bishoprics remain loyal
condition = { type = not value = { type = atwar } }
condition = { type = not value = { type = trait value = loyalist } }
condition = { type = not value = { type = trait value = rebellious } }
condition = { type = liege
condition = { type = not value = { type = is_friend } }
condition = { type = not value = { type = prestige value = 5000 } }
condition = { type = not value = { type = trait value = emperor } }
#condition = { type = ai } # AI liege only -- comment out if you want to play fair
}