Ok, so here's scratch:
Offline
To make a game in scratch, you have to use Blocks. Here are some examples:
[blocks]
<move(100)steps>
<set size to(200)%>
[/blocks]
they are obvious: move 100 units and grow to 200 percent of your size.
Offline
[blocks]
<move( )steps>
<set size to( )%>
[/blocks]
Offline
ME wrote:
ME wrote:
You can drag these together to make SCRIPTS.
[blocks]
<when[ space ]key pressed>
<move( 100 )steps>
<stop script>
[/blocks]this moves you 100 units when you press space.
TRY IT!!!!!
Offline
It's very simple. the blocks read together should sort of make sense in english.
Offline
If you're wondering where to get blocks that aren't blue, the answer is to click on different categories in the top left corner, like control and looks.
Offline
try the following:
[blocks]
<when[ space ]key pressed>
<move( <pick random( 1 )to( 100 )steps>
<turn cw( (( 5 <*> 6 )) )degrees>
<stop all>
[/blocks]
this shows you can put blocks in other blocks
Offline