In the trigger for an event where state X has to check that it is NOT at war with state Y and does not have an alliance with them is this the correct construction of the event?-
NOT = {
war = { country = USA country = CSA }
alliance = { country = USA country = CSA }
}
or is this correct?
NOT = {
war = { country = USA country = CSA }
OR = {
alliance = { country = USA country = CSA }
}
}
My basic question is- without the 'OR' command the event will read the 2 conditions as 'AND' which is of course contradictory as a state can be both allied and at war.
Many thanks in advance.
NOT = {
war = { country = USA country = CSA }
alliance = { country = USA country = CSA }
}
or is this correct?
NOT = {
war = { country = USA country = CSA }
OR = {
alliance = { country = USA country = CSA }
}
}
My basic question is- without the 'OR' command the event will read the 2 conditions as 'AND' which is of course contradictory as a state can be both allied and at war.
Many thanks in advance.