how do u make a sprite appear on another sprites page? So that they share a page.
i think its a page im not sure but i kinda have to have two sprites on the same (account?).
Offline
You mean costumes?
Offline
yup thats what i meant
lol
and anyways i figured it out
but i still need help.
how do u tell scratch when to take points away
i know u go on that orange button and make a variable but then how do u set it to take points away differently. like depending on what happens on the game.
Offline
Well, have if blocks checking what's happening, and depending on the event, change the score by different amounts.
Offline
[blocks]<change{score}by(-5 [\blocks] to subtract score!
Offline
To add points:
Change (variable) Score by 1
To subtract points:
Change Score by -1
Last edited by PlutoIsHades (2011-07-01 13:49:49)
Offline
Nevermind, how do you set a timer and set it to take a second away every second?
Offline
Two ways:
use the sensing timer
make a variable named timer
sensing timer:
put reset timer in a script that comes earliest or in a new script
variable timer (i would prefer this):
First you make the variable timer
Then say in an early script or new script set timer to 0.
Then do when flag clicked
forever wait 1 second change timer by 1 wait 1 second
This should work. Hope it helped.
Offline