so WHIZ you gonna try making my game?
Offline
dude, dont double post the same thing
Offline
action, where you are from the future and you dont know what to do in the past world, trying to defeat the evil from the past world to change the future.
Last edited by samurai768 (2009-08-10 12:40:25)
Offline
My main problem on Scratch is scrolling. I have never been able to do a scrolling game, I have over 65 projects, I can program invisible platforms, but I can't do scrollers. I would really appreciate it if you could make a simple scrolling demo, with notes in the scripts to explain everything. I don't mind what you call it.

Offline
why dont you try looking at all the scrolling tutorials around scratch?
Offline
its very simple, its just 1 simple script!
<when green flag clicked>
<forever>
<if><key[ right arrow ]pressed?>
<repeat until><< <not> <key[ right arrow ]pressed?> >>
<change{ scrollX }by( -2
<end>
<if><key[ left arrow ]pressed?>
<repeat until><< <not> <key[ left arrow ]pressed?> >>
<change{ scrollX }by( 2
<end>
<end>Offline