I have found that when resetting the game:
<code snippet>
+ MouseKeyboard: On key R pressed
-> System: Go to layout 1 with transition "None" lasting 0 MS
It does not always reset everything. Like when a boss ship comes:
<code snippet>
+ System: Is global variable 'Score' Greater or equal 5000
-> System: Set global variable 'Mode' to 1
+ System: Is global variable 'Mode' Equal to 1
+ System: Every 2000 milliseconds
-> BossMovePoint: Set position to Hero.X+random(20)-10, 100
-> Boss001: Set speed : 50 towards BossMovePoint
Or when this item gets updated in the top GUI:
<code snippet>
+ Hero: On collision between Hero and PurpleCross
-> System: Add 1 to global variable 'JesusScore'
-> PurpleCross: Destroy
+ System: Is global variable 'JesusScore' Equal to 1
-> JESUS: Set animation frame to 2
...and so on to frame 6.
Any thoughts about this?
Thank you.