Welcome to Scratch. Somebody will post a link to the Scratch wiki soon
Just kidding, I have no problem with the Scratch Wiki.
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)
Offline
Hi, welcome to Scratch, the programming introductory.
If you have any questions, just ask!
Offline
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) hideIt changes the Pac-dots Eaten by 1 and Score by 50, but they don't go away. Could you help me?
Offline
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 endVery inefficient, but it should work.
Last edited by ProgramCAT (2012-02-03 15:48:56)
Offline
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 endVery inefficient, but it should work.
Thanks, but it still doesn't work.
Offline
Welcome, MitchBoy.
Offline