Hello everyone,
In the Ottoman Empire mod I'm currently working on, I want to make an event that allows Turkey to join an alliance on choice, right after Poland falls to Germany. I wanted to know how to make the event fire as soon as the terms are fulfilled (Poland does not exit, Germany holds Warsaw). Thanks in advance!
Here's the event, please tell me what to add to make it work.
In the Ottoman Empire mod I'm currently working on, I want to make an event that allows Turkey to join an alliance on choice, right after Poland falls to Germany. I wanted to know how to make the event fire as soon as the terms are fulfilled (Poland does not exit, Germany holds Warsaw). Thanks in advance!
Here's the event, please tell me what to add to make it work.
#############################################
###### Poland Has Fallen!
#############################################
event = {
id = 1000027
random = no
country = TUR
trigger = {
event = 1000001
NOT = { exists = POL }
control = { province = 485 data = GER }
}
name = "Poland Has Fallen!"
desc = "The much feared and expected war is here. Germany defeated Poland, and it seems they will now turn their attention to France. This can go in a lot of different ways. If we want to find friends - now might be a good time to make our bets."
style = 0
action_a = {
name = "Back to WW1 - ask to join the axis"
command = { type = trigger which = 1000028 }
ai_chance = 80
}
action_b = {
name = "Counter the blacks and reds - ask to join the allies"
command = { type = trigger which = 1000031 }
ai_chance = 10
}
action_c = {
name = "The worldwide revolution has to come eventually - ask to join the comintern"
command = { type = trigger which = 1000032 }
ai_chance = 5
}
action_d = {
name = "We need no allies! Turkey can build itself up!"
command = { type = relation which = GER value = 0 }
ai_chance = 5
}
}