This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2011-10-31 10:32:32

blobmaster
Scratcher
Registered: 2010-12-20
Posts: 11

costumes

please help how do you stop game when on a certain costumes

Offline

 

#2 2011-10-31 10:42:16

gettysburg11
Scratcher
Registered: 2008-06-14
Posts: 1000+

Re: costumes

Well, if you wanted a sprite to stop if it got to costume 4 you would use something like this:
http://i39.tinypic.com/2i1cm0l.jpg
Just change the 4 to whatever number you want it to be.  smile


http://i256.photobucket.com/albums/hh184/mnacmilan/LOGO_ACMILAN-Splash.gif

Offline

 

#3 2011-10-31 16:47:58

blobmaster
Scratcher
Registered: 2010-12-20
Posts: 11

Re: costumes

thanks a lot i've been desperate i thought nobody would answer thanks again

Offline

 

#4 2011-10-31 16:58:42

blobmaster
Scratcher
Registered: 2010-12-20
Posts: 11

Re: costumes

hi people i have no friends on scratch please tell me how to get some  hmm

Offline

 

#5 2011-10-31 17:07:55

gettysburg11
Scratcher
Registered: 2008-06-14
Posts: 1000+

Re: costumes

blobmaster wrote:

hi people i have no friends on scratch please tell me how to get some  hmm

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.  smile


http://i256.photobucket.com/albums/hh184/mnacmilan/LOGO_ACMILAN-Splash.gif

Offline

 

#6 2011-10-31 17:38:24

GurkinC
Scratcher
Registered: 2009-11-30
Posts: 100+

Re: costumes

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.


Try my latest game, Rolling 2, a 10-level platform game based around the gravity marble.

Offline

 

#7 2011-11-01 15:24:34

blobmaster
Scratcher
Registered: 2010-12-20
Posts: 11

Re: costumes

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 ?  hmm  ?

Offline

 

#8 2011-11-01 15:28:26

blobmaster
Scratcher
Registered: 2010-12-20
Posts: 11

Re: costumes

Sorry if there's anyone i have thanked yet for sending me help but i'll thank you now  smile

Offline

 

#9 2011-11-01 15:30:34

GurkinC
Scratcher
Registered: 2009-11-30
Posts: 100+

Re: costumes

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.


Try my latest game, Rolling 2, a 10-level platform game based around the gravity marble.

Offline

 

#10 2011-11-15 15:04:49

blobmaster
Scratcher
Registered: 2010-12-20
Posts: 11

Re: costumes

how do you make this script "if direction of sprite 5 = -90 to 90 broadcast"

Offline

 

#11 2011-11-15 15:31:11

RedRocker227
Scratcher
Registered: 2011-10-26
Posts: 1000+

Re: costumes

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!  smile


Why

Offline

 

#12 2011-11-16 11:40:54

DigiTechs
Scratcher
Registered: 2011-04-30
Posts: 500+

Re: costumes

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!  smile

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....


I'm back.
Maybe.

Offline

 

#13 2011-11-17 13:40:24

blobmaster
Scratcher
Registered: 2010-12-20
Posts: 11

Re: costumes

anyone please tell me how to write a message on a new topic  smile

Offline

 

#14 2011-11-17 13:45:03

blobmaster
Scratcher
Registered: 2010-12-20
Posts: 11

Re: costumes

how do you make this script "when i recieve "somthing" disable another script"

Offline

 

Board footer