The first condition is every time TRUE.
-> Event | Condition | TRUE
--> Sub-event | Condition | TRUE
--> ELSE | FALSE
-> Else | FALSE
-> Event | Condition TRUE
--> Sub-event | Condition
-> Else FALSE
"However, to my thinking, the Sub-event is still part of the main Event, so it shouldn't matter, yes/no?"
It doesn?t matter, here is a example:
-> Event | Condition | TRUE
--> Sub-event | Condition | TRUE
-> Else | FALSE
So lets say the firstEvent|condition|true makes a true, the sub event get triggered with an false. So the sub event wont work but also the Else will not trigger.
You need to understand it like:
-> This Shirt is yellow!
--> Yes it is yellow and it is also blue !
---> ....
-> No it isn?t yellow
So the subevent will totaly ignore the else, if it would work it is like:
-> This Shirt is yellow!
--> Yes it is yellow and it is also blue !
---> ....
-> No it isn?t yellow but it is yellow and blue
You see the problem ? :D