please help how do you stop game when on a certain costumes
Offline
Well, if you wanted a sprite to stop if it got to costume 4 you would use something like this:
Just change the 4 to whatever number you want it to be.
Offline
thanks a lot i've been desperate i thought nobody would answer thanks again
Offline
hi people i have no friends on scratch please tell me how to get some
Offline
blobmaster wrote:
hi people i have no friends on scratch please tell me how to get some
![]()
If you want to add someone as a friend, go to their profile page first. On the left side, under their location, it should say "add to friends." Click that, and that person will be on your friends list.
Offline
blobmaster, a word of advice: Try to find friends who will view and comment on your projects regularly - they may well be the only people to view a project, if you are unlucky, so make sure they will be helpful.
Offline
Thanks for the advice GurkinC but what if i don't have much projects online yet i've only got one game called "DO NOT PRESS" which i got a nice comment from but i don't know if i can just add that person onto my friend list or if i have to warn them first ? ?
Offline
Sorry if there's anyone i have thanked yet for sending me help but i'll thank you now
Offline
Generally, I`d look at that person`s projects, and add a nice comment to one of theirs. If they reply to that, then I`d probably add them as a friend.
But, it`s not uncommon for people to just add other people anyway. I used to get messages saying someone had added me occasionally, and it`s definately not a problem.
Offline
how do you make this script "if direction of sprite 5 = -90 to 90 broadcast"
Offline
blobmaster wrote:
how do you make this script "if direction of sprite 5 = -90 to 90 broadcast"
Try:
When green flag clicked
Forever
If direction>-90 and 90>direction
Broadcast 'something'
End if
End forever
Or if you think you're quite advanced, you can do:
When green flag clicked
Forever
If 90>abs of direction
Broadcast 'something'
End if
End forever
Hope this helped!
Offline
RedRocker227 wrote:
blobmaster wrote:
how do you make this script "if direction of sprite 5 = -90 to 90 broadcast"
Try:
When green flag clicked
Forever
If direction>-90 and 90>direction
Broadcast 'something'
End if
End forever
Or if you think you're quite advanced, you can do:
When green flag clicked
Forever
If 90>abs of direction
Broadcast 'something'
End if
End forever
Hope this helped!![]()
Here's another one:
when flag clicked,
forever,
if <direction = -90 or direction = 90> then
broadcast 'somthing'
end
end
This dosen't do the -90 all the way to 90, but I DID make a script that does that, I just cant seem to find it....
Offline
anyone please tell me how to write a message on a new topic
Offline
how do you make this script "when i recieve "somthing" disable another script"
Offline