I am making a sidescrolling game using the <set x to( (( ScrollX <+> 480 ))) format, and I am almost done, I just need to make a boss. My question is, how do you make the game stop sidescrolling so you can make a boss level? Thanks.
Last edited by Aelic7 (2009-11-22 15:31:26)
Offline
Hmm, I would create a variable called "Boss" and then put the scrolling scripts inside this.
<when green flag clicked>
<forever>
<if><( Boss <=> 0 )>
Scrolling scripts go here
<else>
No scripts needed here.
<end>
Then when you reach the boss, tell it to set boss to 1 and the scrolling script will no longer move
Last edited by 06dknibbs (2009-11-22 16:14:25)
Offline