The Wait action in the System object waits a number of seconds before running the next action. The Wait for signal action works very similarly, but instead of a...
Hello!
I would be very grateful if you could explain to me why examples below provides different results and how to make Wait action in the example#2 to work like in the example #1
Thank you in advance for helping!
Example #1
Variables:
x=0
y=0
z=0
Condition:
System|x=y
Action:
System|Add 1 to z
System|Add 1 to x
Result:
x=1
z=1
----------------------------------
Example #2
System|Wait 3 seconds
x=180
z=180
After hours of experiments I realized that much better to do it using Timer behavior (which I didn't know about before) for objects. Works much more predictable as for beginner.