Okay, I have my puzzle / challenge game and you complete challenging levels and when you die you respawn at the start of the game...
I want it so you respawn at the start of that level
heres my game if you need to look
http://scratch.mit.edu/projects/XxEliteJJzZ/2628882
Offline
This didnt help as the broadcasts make it switch level soo
Offline
To re-spawn you will first need your character to re-spawn at the start of your level. Let's say it starts at x: -230, y: -170 (About at the farthest left and down you can go on the screen). You would do this:
when gf clicked set [level v] to (1) forever set background if <touching color [color of lava]?> go to x:(-230) y:(-170) change [level v] by (0) // I don't think this is necessary; I just threw it in :) end if <touching color [color of the endpoint of your level]?> change [level v] by (1) go to x:(-230) y:(-170) end endI hope this helped! If this wasn't what you were looking for, let me know!
when gf clicked forever switch to background (level) end
Last edited by powerpoint56 (2012-06-24 10:36:14)
Offline