• 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(76922)

Lt. General
May 24, 2007
1.565
0
I've set up the following event and generally speaking, it works. However, as it stands I can only get it to work properly by inseting a specific country tag (in this case ROM for rome). What I would really like is to have it generic, so it fires for any country. I've tried using the THIS tag but it defaults to the current owner of the province in that case, and seceding a province back to yourself is rather pointless. Also, I want to figure out how to add a point of badboy when aquiring a province this way. Advice on either aspect of the problem would be appreciated. Here is the event:

province_event = {

id = 8675309

trigger = {
is_capital = no
controller = {
tag = ROM
}
NOT ={
owner = {
tag = ROM
}
}
}

mean_time_to_happen = {

months = 60
}

title = "Accepting reality."
desc = "The people of this province have bowed to reality and accepted your rule, regardless of what their 'offical' government might say. At least for the moment."

option = {

name = "Good!"
secede_province = ROM
}
}
 
There is another thread with some discussion of a similar event. There are two major issues. One is that it requires two events, one for the country losing the province, which will then trigger the one for the country gaining the province. These also have to be country_events due to the "controller = this" trigger being broken. Check out the thread called "Can I cede province to controller?" for a working version.