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

#1 2012-02-01 20:56:10

mitchboy
Scratcher
Registered: 2011-11-29
Posts: 59

Hi, I'm new

Hi. This is my first post, as you can see. I just want to get to know people.


Quote of the week: "I am NOT being DRAMATIC!" ~Looney Tunes
Check out my newest game here!

Offline

 

#2 2012-02-01 21:22:20

MoreGamesNow
Scratcher
Registered: 2009-10-12
Posts: 1000+

Re: Hi, I'm new

Welcome to Scratch.  Somebody will post a link to the Scratch wiki soon  neutral

Just kidding, I have no problem with the Scratch Wiki.  smile

Anyway, welcome.  If you need any help with scripts or on the website, feel free to ask.  The community is very helpful and friendly.

Edit:  Many New Scratchers ask when they can become a "Scratcher".  Just be patient and be active, both on the main site and the forums and it shouldn't be very long.

Last edited by MoreGamesNow (2012-02-01 21:23:48)


http://images2.layoutsparks.com/1/218929/rubiks-cube-animated-rotating.gif
"Cogito ergo sum" --  I think, therefore I am

Offline

 

#3 2012-02-01 21:41:13

Freakish
Scratcher
Registered: 2011-10-25
Posts: 1000+

Re: Hi, I'm new

Hello Mitchboy.


http://i.imgur.com/y3RBV.jpg

Offline

 

#4 2012-02-02 02:36:05

TheDogIslandFan
Scratcher
Registered: 2012-01-08
Posts: 100+

Re: Hi, I'm new

Well welcome to scratch.
Don't worry if you have any questions, just ask.


http://www.eggcave.com/egg/787454.png

Offline

 

#5 2012-02-02 02:58:29

RedRocker227
Scratcher
Registered: 2011-10-26
Posts: 1000+

Re: Hi, I'm new

Hi  smile


Why

Offline

 

#6 2012-02-02 03:25:08

ProgramCAT
Scratcher
Registered: 2011-12-13
Posts: 500+

Re: Hi, I'm new

Hi, welcome to Scratch, the programming introductory.
If you have any questions, just ask!  wink


Programming is an art...
Goodbye, Scratch. I am leaving because of the exams coming up at our school, though I'll check the forums once or twice a week.

Offline

 

#7 2012-02-03 15:18:49

mitchboy
Scratcher
Registered: 2011-11-29
Posts: 59

Re: Hi, I'm new

Yeah, I have a question. I'm creating a Pac-man game and I'm trying to make the power pellets flash on and off until Pac-man eats them. Here is my script:

when gf clicked
show
repeat until <touching [Pac-Man v]>
show
wait (1) secs
hide
wait (1) secs
end
change [Pac-dots Eaten v] by (1)
change [Score v] by (50)
hide
It changes the Pac-dots Eaten by 1 and Score by 50, but they don't go away. Could you help me?


Quote of the week: "I am NOT being DRAMATIC!" ~Looney Tunes
Check out my newest game here!

Offline

 

#8 2012-02-03 15:47:24

ProgramCAT
Scratcher
Registered: 2011-12-13
Posts: 500+

Re: Hi, I'm new

Try adding this to the pellets:

when gf clicked
forever
if<not<touching [pacman v]? >>
show
else
hide
change [Pac-dots eaten v] by (1)
change [score v] by (50)
stop script
end
end
Very inefficient, but it should work.

Last edited by ProgramCAT (2012-02-03 15:48:56)


Programming is an art...
Goodbye, Scratch. I am leaving because of the exams coming up at our school, though I'll check the forums once or twice a week.

Offline

 

#9 2012-02-03 15:48:23

schusteraIex2
New Scratcher
Registered: 2012-02-03
Posts: 3

Re: Hi, I'm new

Welcome

Offline

 

#10 2012-02-03 16:52:50

mitchboy
Scratcher
Registered: 2011-11-29
Posts: 59

Re: Hi, I'm new

ProgramCAT wrote:

Try adding this to the pellets:

when gf clicked
forever
if<not<touching [pacman v]? >>
show
else
hide
change [Pac-dots eaten v] by (1)
change [score v] by (50)
stop script
end
end
Very inefficient, but it should work.

Thanks, but it still doesn't work.


Quote of the week: "I am NOT being DRAMATIC!" ~Looney Tunes
Check out my newest game here!

Offline

 

#11 2012-02-03 16:53:54

fruitmanninja
Scratcher
Registered: 2012-01-25
Posts: 500+

Re: Hi, I'm new

Welcome, MitchBoy.  wink

Offline

 

#12 2012-02-03 17:07:01

Agentpieface
Scratcher
Registered: 2009-10-10
Posts: 1000+

Re: Hi, I'm new

Hi! Have a great stay  big_smile


http://media.tumblr.com/tumblr_lr7fywSZAG1qfj8fq.gif

Offline

 

Board footer