Is there any way to create an event where one, but only one, of two or more possible outcomes occurs? For example, I can do this:
So there's an equal chance of heads or tails, but there's also a chance that both or neither will occur. Is it possible set it up so one or the other happens but not both?
Code:
action_a = {
effect = {
type = random
chance =50
effect = { type = [I]heads[/I] }
}
effect = {
type = random
chance = 50
effect = { type = [I]tails[/I] }
}
}