I know could write events and run tests for myself, but I suspect it has already been done and asking for help is so much quicker ...
Random events can trigger any number of times, but can triggered events also occur more than once?
Can one have, for example, and event that is random which has in its commands trigger which = xxxxxx and have that triggered event trigger each and every time the random event happens?
Here's a somewhat meaningless example:
I basically want to have events like these, perhaps as a replacement for the current generic Foreign Dissident type events.
Random events can trigger any number of times, but can triggered events also occur more than once?
Can one have, for example, and event that is random which has in its commands trigger which = xxxxxx and have that triggered event trigger each and every time the random event happens?
Here's a somewhat meaningless example:
Code:
event = {
id = whatever
random = yes
trigger = {
neighbour = BRI
}
name = "Do Something Nasty to Brittany"
desc = "Some cool text"
action_a = {
name = "Mess with Brittany"
command = { type = trigger which = 322100 }
command = { type = badboy value = 1 }
command = { type = relation which = BRI value = -50 }
command = { type = cash value = -50 }
}
action_b = {
name = "Don't mes with Brittany"
command = { type = relation which = BRI value = 25 }
}
}
event = {
id = 322100
random = no
country = BRI
name = "Somebody is Messing With Us"
desc = "This is not a happy situation"
action_a = {
name = "Curses"
command = { type = stability value = -1 }
command = { type = revolt which = -1 }
command = { type = revoltrisk which = 6 value = 3 }
}
}
I basically want to have events like these, perhaps as a replacement for the current generic Foreign Dissident type events.