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

#1 2010-01-09 21:56:13

ProcambarusC
Scratcher
Registered: 2009-12-30
Posts: 14

I Need Help

this is my first project: http://scratch.mit.edu/projects/ProcambarusC/837286/
the intro before each level doesnt show the correct level#
there are also many other glitches.
Please Help

   ProcambarusC
   http://scratch.mit.edu/users/ProcambarusC/


ProcambarusC. Check out my games at: ProcambarusC
"I can resist everything except temptation."

Offline

 

#2 2010-01-10 11:07:10

Chatter
Scratcher
Registered: 2009-11-29
Posts: 500+

Re: I Need Help

ProcambarusC wrote:

this is my first project: http://scratch.mit.edu/projects/ProcambarusC/837286/
the intro before each level doesnt show the correct level#
there are also many other glitches.
Please Help

   ProcambarusC
   http://scratch.mit.edu/users/ProcambarusC/

You can do this for level ending:

<when green flag clicked>
<forever>
<if> <(  <{  Score  }>  <=>  15  )>
<broadcast[  Win!  ]and wait c>
<end>
<end>

And for the Stage that shows the Intros' script is:

<when I receive[  Win!
<switch to costume[  Level 2 Intro or any other level that was beaten
<wait(  10  )secsc>

Try naming every Intro specificly like for example: Level 6 Intro That helps. It keeps you very organized. Did you also try putting the background in the order of the game? That must be the problem. If you put them in order, do this:

<when I receive[  Win!
<next costume>
<wait(  10  )secsc>
<next costume>

Hope this helps!  big_smile


http://img19.imageshack.us/img19/2339/mcdonaldsjoke.gifAll your problems are like batter when you add a little Chatter, because when you have Chat, you're safe from bats.  big_smile
"And so?" - The little people in my brain|Status: Snow in April?

Offline

 

#3 2010-01-10 23:22:25

ProcambarusC
Scratcher
Registered: 2009-12-30
Posts: 14

Re: I Need Help

that was helpful, thanks!


ProcambarusC. Check out my games at: ProcambarusC
"I can resist everything except temptation."

Offline

 

#4 2010-01-11 07:12:47

Chatter
Scratcher
Registered: 2009-11-29
Posts: 500+

Re: I Need Help

ProcambarusC wrote:

that was helpful, thanks!

You're welcome!  big_smile  Happy to help.  wink


http://img19.imageshack.us/img19/2339/mcdonaldsjoke.gifAll your problems are like batter when you add a little Chatter, because when you have Chat, you're safe from bats.  big_smile
"And so?" - The little people in my brain|Status: Snow in April?

Offline

 

#5 2010-01-11 22:33:48

Flait7
Scratcher
Registered: 2008-04-14
Posts: 100+

Re: I Need Help

ProcambarusC wrote:

the intro before each level doesnt show the correct level#

Use variables to show what level you're on

<when green flag clicked>
<set{level}to(1)>

<when I receive[ next level ]>
<change{level }by(1)>

and make the variable show during the intro, then hide afterwards

Last edited by Flait7 (2010-01-11 22:34:42)


http://scratch.mit.edu/static/projects/Flait7/2248016_sm.pnghttp://scratch.mit.edu/static/projects/Flait7/1827934_sm.png

Offline

 

Board footer