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

#1 2012-03-20 15:57:30

ScratchOS
Scratcher
Registered: 2012-03-20
Posts: 53

Please Help With these Glitches?!?!?!!!

http://scratch.mit.edu/projects/ScratchOS/2410818


This game has glitches. Information is in the game notes of it.

Offline

 

#2 2012-03-20 16:29:23

turkey3
Scratcher
Registered: 2011-12-04
Posts: 500+

Re: Please Help With these Glitches?!?!?!!!

Made it a link. Plus, I wouldn't call it a glitch i you need help with scrits, and if it is one put it in the "bugs and glitches" forum. I'll look at it.

Last edited by turkey3 (2012-03-20 16:30:43)

Offline

 

#3 2012-03-20 17:07:02

ScratchOS
Scratcher
Registered: 2012-03-20
Posts: 53

Re: Please Help With these Glitches?!?!?!!!

Sorry, I was in a rush.

The problem: When you go to the map by going over to the sign and pressing the spacebar, the sprite called 'exit map' should appear in the corner. Every other time you go to the map it doesn't. So help?

Offline

 

#4 2012-03-20 18:09:07

ScratchOS
Scratcher
Registered: 2012-03-20
Posts: 53

Re: Please Help With these Glitches?!?!?!!!

please help  sad

Offline

 

#5 2012-03-20 18:55:01

Greenatic
Scratcher
Registered: 2009-05-03
Posts: 1000+

Re: Please Help With these Glitches?!?!?!!!

Navigate to the map sprite.  In the "When I receive [Open Map  v]" script, make it go back more than 1 layer.    smile

EDIT:  Your problem with the crab is caused by the "wait (1) secs" block in the body/arms "When I receive [start of quest  v]" script.  Remove it, and use the timer.  You currently have this:

if <touching [crab1  v]?>
change [Health  v] by (-1)
wait (1) secs
end
Use this instead:

if <<touching [crab1  v]?> and <(timer) > [1]>>
change [Health  v] by (-1)
reset timer
end

Last edited by Greenatic (2012-03-20 18:59:49)

Offline

 

#6 2012-03-20 18:58:26

jji7skyline
Scratcher
Registered: 2010-03-08
Posts: 1000+

Re: Please Help With these Glitches?!?!?!!!

Or just make the exit map sprite

go to front
Problem fixed  smile


I don't know why you say goodbye, I say hello!  big_smile

Offline

 

#7 2012-03-20 19:01:56

Greenatic
Scratcher
Registered: 2009-05-03
Posts: 1000+

Re: Please Help With these Glitches?!?!?!!!

jji7skyline wrote:

Or just make the exit map sprite

go to front
Problem fixed  smile

It already does.  The problem is that the map does as well, then goes back.  It's not going back far enough.

Offline

 

#8 2012-03-21 02:11:20

ScratchOS
Scratcher
Registered: 2012-03-20
Posts: 53

Re: Please Help With these Glitches?!?!?!!!

thanks for the suggestions, you guys are awesome

Offline

 

Board footer