What are the codes/blocks for Game Over?
e.g. if Sprite 1 touches bad guy, make Sprite 1 die and STOP ALL, and display Game Over?
Also, with 3 Lives, does anyone have a code order for that? How to make the Sprite 1 have 3 lives, lose 3 lives, then display Game Over?
Thanks
Offline
Use the broadcast and hide systems
Offline
Okay here is what i'd first go to stage and make a game over background and then go to scripts now:
[blocks]
<when green flag clicked>
<forever>
<if><( <{ Lives }> <<> 1 > )
<switch to costume[ (if your on stage, this will be switch to background)GameoverBckgrd.
<stop all>
<end>
<stop script>
This makes it so that if you have less than
1 life you see a gameover background (you create) and everything stops.
Offline