I've been failing miserably at creating a game where I have a character (a dot) hops up to different platforms.
I would like the main character to fall back to a green ground when it is not jumping,
also, the dot sits below the viewing frame as the player scrolls upwards, how can I make it stay in viewing range?
Please help!
The game is on my page, aln2011 and it's called "honors game"
Offline
*coughallaboutscratchcough*
Well, the falling down thing is simple:
if <not touching color [green]>
[insert however you want the character to move down]
else
[do nothing] OR [move up 1]
end_if
I don't really get what the other issue is.
Offline
Right, here is a script that should be used in your platforms:
when flag clicked
forever
set y to ([scrollY] + ([360]*[0])
Change 0 to whichever height you want the platform to be at.
Offline
I did that but why wont it scroll so that it looks like it was at the bottom? D:
Offline