I am trying to make a generic event that fires for all countries listed in TAG within the same time frame, once a flag is set.
I tried a few variations based on the example here:
I tried adding "invention = yes", an OR clause with all countries in question within the trigger, with and without TAG/"all", and several variants thereof.
Yet the only country ever to receive the event is the first in the TAG, England. I even tried using a local flag but that had no effect either.
Any ideas?
I tried a few variations based on the example here:
Code:
event = {
id = 100001
random = no
TAG = { ENG GER RUS MEX USA U00 U02 VIC U05 }
all = yes #execute for all tags in the list
persistent = yes
trigger = {
flag = someflag
}
name = "name"
desc = "desc"
style = 2
picture = "news_paper"
date = { day = 10 month = january year = 1936 }
offset = 3
deathdate = { day = 1 month = february year = 1936 }
action = {
name = "OK"
command = { type = relation which = GER value = 5 }
}
}
I tried adding "invention = yes", an OR clause with all countries in question within the trigger, with and without TAG/"all", and several variants thereof.
Yet the only country ever to receive the event is the first in the TAG, England. I even tried using a local flag but that had no effect either.
Any ideas?