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/
Offline
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!
Offline
that was helpful, thanks!
Offline
ProcambarusC wrote:
that was helpful, thanks!
You're welcome! Happy to help.
Offline
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)
Offline