Put least 3 divisions in Sofia bordering Macedonia, at least 5 in Plovdiv bordering Central Macedonia, at least 4 in Plovdiv bordering Thrace.
The number of divisions needed for it to trigger and for it to not cancel are different, I think they messed up the cancel triggers, as the tooltips text for them has the provinces wrong.
It will cancel if you have less than 3 in Sofia bordering Macedonia,, less than 5 in in Plovdiv bordering Central Macedonia, less than 2 in Plovdiv bordering Thrace.
Here's an image after the final decision is taken, and I see a green check mark next to the requirements, which I interpret as meaning that it won't cancel. But the decision always cancels soon after I select it, sticking me with the state modifier and the IMRO national spirit, worse off than before.
Maybe I'm misinterpreting the green check mark? It is actually telling me that I don't meet the requirements, and that the decision is about to be canceled?
UPDATE - it looks like I misinterpreted the green check mark. Below is the decision code, showing cancellation compared to activation requirements. Unless you looked at the cancellation code before taking the decision, I wouldn't have time to get units in the correct place to not have the decision instantly cancelled after I select it. Not sure why someone would have designed the code in such a way.
If I'm reading the below correctly, it looks like the following units would let you both select the decision AND remove the IMRO state modifiers and national spirit (if you keep your units in place for 60 days):
- 3 units in Sofia along the border with Macedonia
- 5 units in Plovdiv along the border with Central Macedonia
- 4 units in Plovdiv along the border with Thrace
@Keishou can you confirm if you've been able to successfully remove the "Skirmishing against the IMRO" state modifier and the IMRO national spirit with this decision?
Code:
BUL_repress_imro_destroy_organization = {
available = {
divisions_in_border_state = { #SOFIA - Macedonia
size > 1
state = 48
border_state = 106
}
divisions_in_border_state = { #PLOVDIV - Central Macedonia
size > 3
state = 212
border_state = 731
}
divisions_in_border_state = { #PLOVDIV - Thrace
size > 3
state = 212
border_state = 184
}
}
cancel_trigger = {
OR = {
custom_trigger_tooltip = {
tooltip = BUL_destroy_imro_divisions_thrace_tt
divisions_in_border_state = {
type = infantry
size < 3
state = 48
border_state = 106
}
}
custom_trigger_tooltip = {
tooltip = BUL_destroy_imro_divisions_macedonia_tt
divisions_in_border_state = {
type = infantry
size < 5
state = 212
border_state = 731
}
}
custom_trigger_tooltip = {
tooltip = BUL_destroy_imro_divisions_central_macedonia_tt
divisions_in_border_state = {
type = infantry
size < 2
state = 212
border_state = 184
}
}
}
}