I don't understand why this event is here nor this file that it comes from. I tried activating it and it seems broken. It comes from a file called 'purelynasty.txt' and I have never experience ANY of these event before. (what's the point of this file?)
Activating this won't do anything, because it only works when it's fired from another country (the
FROM scope inside it).
It's meant to give a province which you own to another country that controls it
without agreeing to it in a peace treaty.
It's triggered by a different event (all events with the 'is_triggered_only' code have to be), which is, weirdly, found in the RandomProvinceEvents.txt file:
Code:
province_event = {
id = 746
title = "EVTNAME746"
desc = "EVTDESC746"
picture = DIPLOMACY_eventPicture
trigger = {
owner = {
war_exhaustion = 15
is_at_war = yes
NOT = { war_score = -10 }
}
is_capital = no
OR = {
AND = {
has_owner_culture = no
culture = controller
}
controller = { is_nomad = yes }
}
garrison = 1000
has_siege = no
NOT = { controlled_by = owner }
NOT = { controller = { tag = REB } }
NOT = { controller = { tag = NAT } }
NOT = { controller = { tag = PIR } }
controller = {
NOT = { war_exhaustion = 5 }
}
}
mean_time_to_happen = {
months = 300
modifier = {
factor = 5.0
owner = { luck = yes }
}
modifier = {
factor = 0.8
has_owner_religion = no
}
modifier = {
factor = 0.8
owner = { NOT = { prestige = 0 } }
}
modifier = {
factor = 0.8
owner = { NOT = { prestige = -50 } }
}
modifier = {
factor = 0.8
owner = { NOT = { stability = 0 } }
}
modifier = {
factor = 2.0
controller = { is_nomad = yes }
}
}
option = {
name = "EVTOPTA746"
controller = { country_event = { id = 747 } }
}
}
In plain English, if you own a province that's not your culture, and the country occupying it DOES have that culture, the province is going to join the enemy. It can also happen if a nomadic country occupies the province and it's not your culture.
However, this only happens if you're exhausted (15%+ war exhaustion) and losing the war (less than -10% score), so it's unlikely to pop up for players in most games.