you haven't asked you're question well enough, please be more specific.
Offline
make another sprite for the platform, by pressng the paintbrush button
Offline
Here's a gallery of sample projects that you might find helpful...it has some jumping projects in it that you can download and take a look at.
http://scratch.mit.edu/galleries/view/17972
It the meantime, does anybody have a really simple shooting project demo that they can show JUSTJAMES? If so, please leave a link. Thanks.
Offline
More specific: I have a sprite, There's a platform for him to jump on. How do I make him jump on the platform (What script, you cant just say up or you go off screen to quickly)
P.S. I'm making a shooting game, it's going well
Offline
JUSTJAMES wrote:
More specific: I have a sprite, There's a platform for him to jump on. How do I make him jump on the platform (What script, you cant just say up or you go off screen to quickly)
P.S. I'm making a shooting game, it's going well
<when green flag clicked>
<forever>
<if><key[ up arrow ]pressed?>
<if><touching[ platform
<repeat( 10<change y by( 5
<end>
<repeat until><touching[ platform
<change y by( -5
<end>
<end>
<end>
That should be the script
Offline
[blocks]<when[ space ]key pressed>[/blocks]
[blocks]<point in direction( [/blocks]
[blocks]<show>[/blocks]
[blocks]<repeat until><touching[ edge[/blocks]
[blocks]<move( 10 )steps>[/blocks]
[blocks]<end>[blocks]
[blocks]<hide>[/blocks]
[blocks]<end>[/blocks]
Offline
JUSTJAMES wrote:
How do I make a platform for my sprite to jump on and how do i make my sprite shoot stuff?
Here is a tutorial on making platforms:
http://scratch.mit.edu/projects/Cyclone103/155940
Here is a demo on shooting bullets:
http://scratch.mit.edu/projects/Tutorial_Maker/190024
hope this helps!
Offline