This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-04-04 22:52:10

technomaniac
Scratcher
Registered: 2011-08-15
Posts: 94

I was thinking...

A few months back I was a new scratcher with no idea what to do. Through several hours of trial and error, I was able to tap the basics (which I'm still on). So I was thinking it would help if a collection of basic scripts was posted on the forums to help the gears get going for the New Scratchers. If you have any ideas, or some scripts, please post them.

Offline

 

#2 2012-04-04 22:55:49

TorbyFork234
Scratcher
Registered: 2012-03-01
Posts: 1000+

Re: I was thinking...

There's the wiki, and there's Scratch tutorials, the wiki search wiki in the searchbar after pressing home, for the tutorials, go to home and there's a bunch of things like ScratchEd there keep going down and you'll reach the tutorials.

Offline

 

#3 2012-04-04 22:57:56

technomaniac
Scratcher
Registered: 2011-08-15
Posts: 94

Re: I was thinking...

TorbyFork234 wrote:

There's the wiki, and there's Scratch tutorials, the wiki search wiki in the searchbar after pressing home, for the tutorials, go to home and there's a bunch of things like ScratchEd there keep going down and you'll reach the tutorials.

Well, yeah, there's all that, but sometimes the first thing scratchers do is often go on the forum. I still think a collection of useful scripts would help.

Offline

 

#4 2012-04-04 23:51:43

iTweak0r
Scratcher
Registered: 2011-07-30
Posts: 100+

Re: I was thinking...

Here is a script: Move around

when gf clicked
forever
    if <key [up arrow v] pressed?>
        change y by (5)
    End
    if <key [down arrow v] pressed?>
        change y by (-5)
    End
    if <key [left arrow v] pressed?>
        change x by (-5)
    End
    if <key [right arrow v] pressed?>
        change x by (5)
    End
If you need any more help, ask me!

Last edited by iTweak0r (2012-04-04 23:52:17)


Make it in Scratch! because it's cooler when it's made in scratch
http://i.imgur.com/D4iqPHR.png

Offline

 

Board footer