Discuss Scratch

Yellowtoad999YT
Scratcher
15 posts

How you make a Point System?

I trying my hardest best to get it work but it didn't work.
Quak-a-doodles
Scratcher
47 posts

How you make a Point System?

your joking right?
SpideyPlaysMC
Scratcher
500+ posts

How you make a Point System?

Make a variable:
(score)
Then do this:
when green flag clicked
set [score v] to [0]
forever
if <touching [... v] ?> then//the sprite that will give points
change [score v] by (1)
wait until <not <touching [... v] ?>>//this prevents the sprite that touches the other from getting more than one point
end
end
Yellowtoad999YT
Scratcher
15 posts

How you make a Point System?

Ah thanks!
Yellowtoad999YT
Scratcher
15 posts

How you make a Point System?

Quak-a-doodles wrote:

your joking right?
I just need help!
yellowmarkers
Scratcher
55 posts

How you make a Point System?

Quak-a-doodles wrote:

your joking right?
Honestly thats kinda rude, some people are new to scratch and need genuine help.
BananaApokalypse
Scratcher
23 posts

How you make a Point System?

Yellowtoad999YT, your character usually earns points based off of collecting something, or based off of the time expired in such game/event. If you're doing something like collecting a coin, use this script…

when green flag clicked
forever
if <touching [ coin] ?> then
change [ score] by (1)
end

If you want to do something time based, let's say you get a point every second you are alive, you could do
when I receive [ Game Start]
forever
wait (1) secs
change [ score] by (1)
end

Hope this helps!

Last edited by BananaApokalypse (March 20, 2020 14:08:33)

OneSoulWolf16
Scratcher
1 post

How you make a Point System?

i can't get the code right. ive done more that 1 different ways, and i am struggling with adding a score.
Moannastar
New Scratcher
1 post

How you make a Point System?

I am trying to make a quiz but I don't know how t make a point system of it

Powered by DjangoBB