Discuss Scratch

aeba00
Scratcher
58 posts

Ideas about programs for beginners.

I'm technology teacher from Castelldefels (near Barcelona) and i need ideas for make programs for beginner students of scratch (15-16 years old). The last year i teach two programs Punteria and Circuit. This programs are shared and you find it searching with my nick aeba00.

I agree your opinion.

Thanks.

(Sorry if my english isn't good).
TerryTissue
Scratcher
9 posts

Ideas about programs for beginners.

A maze perhaps? If not a shooting game, for example there is green dots chasing you and you have to shoot them before they bump into you?
aeba00
Scratcher
58 posts

Ideas about programs for beginners.

TerryTissue:

A pacman game it's a maze game. I create my version of pacman in https://scratch.mit.edu/projects/92705374/ In this version the player it's follow by two green bad man and later four green bad man,…. The objective is catch jewels. One jewel, one point. The player have five lifes.

Try it and tell me your opinion.
aeba00
Scratcher
58 posts

Ideas about programs for beginners.

Terry: It's a possibility, but I like without guns or similar. Another possibility is activate some times (five, six) one shield for two or three secons before impact.
itchyscratchy0712
Scratcher
13 posts

Ideas about programs for beginners.

Instead of coding motion like this in the tutorials:
when [ w] key pressed
change y by (5)
when [ s] key pressed
change y by (-5)
when [ d] key pressed
change x by (5)
when [ a] key pressed
change x by (-5)
This way gives it a delay at the start.

Do it like this:
when green flag clicked
forever
if <key [ w] pressed?> then
change y by (5)
end
if <key [ a] pressed?> then
change x by (-5)
end
if <key [ s] pressed?> then
change y by (-5)
end
if <key [ d] pressed?> then
change x by (5)
end
end
This way Doesn't give a delay it has a smoother movement.

switch costume to [itchyscratchy0712 v]

Powered by DjangoBB