As everyone who's tried it knows, events can't take and/or conditions within the same block. I thought a good way to circumvent this might be to create a local variable that I set to '1' whenever the 'A and B' event comes true and then further down set the main event block up like this...
| C = 1 | Do stuff...
- or -
D = 1
- or -
LocalVar = 1
... but it doesn't work. LocalVar gets set to 1 when I want it to be, but the next event block doesn't seem to catch it. How do you all handle this kind of situation?