Hello, i just read a tutorial that made me have a doubt in C2 about "if" basic functions with events and subevents.
So, all the conditions are triggered by "unseen" if's like this:
------------------------
Condition Var1 = 1
actions [Var1 = 0]
------------------------
This can be interpretated with if's. Like this (NOTE inside () are the unseen if's to interpretate this better)
-----------------------
(if)
Condition Var1 = 1
(then)
actions [Var1 = 0]
------------------------
But what about sub-events? It happens like some kind of second "then" right? Below the example of what i mean.
-----------------------
(if)
Condition Var1 = 1
(then)
actions [Var1 = 0]
(then) *SUB-EVENT STARTT*
(if)
Var1 = 0
(then)
actions [Var1 = 1]
------------------------
Am i correct or not? Thanks