• 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.

Heimdall

Brun hårig sjuk sköterska
Jan 25, 2002
177
2
Visit site
So I've written a province specific event, and Portugal is not meant to receive it. I thought one could use the NOT = { country = POR } as a trigger, but apparently one cannot.
I figured the best way to get around this was to use a NOT = { core = XXX } trigger instead, but is it? I'm sure someone can enlighten me.
 
Just use condition in trigger:
Code:
NOT = { owned = { province = XXX data = POR } }
where XXX is the id of the province. Event is province specific (not tied to a country: don't use country = <id>) but create the event for province = XXX
 
Haha, why didn't I think of that? :D

Thanks alot Yoda!