i to to make my game so that when the ball touches the bottom of the screen, i want it to play a sound 3 times, then make a script stamp a diffrent costume 5 times at the top of the screen, and make any existing lines drop down by 1 line.
HELP ME PLEASE AND BE BOTHERED TO HELP!
Offline
Well, to make the ball play the sound, this is the script to use:
You might want to make a hidden sprite and put it at the bottom of the screen to com
when gf clicked forever if touching sprite2 repeat (3) play soundAs for the stamping 5 times thing, this is the script to use:
when I receive [X] change y by [whatever] repeat [5] move [x] steps stampHope this helped
Offline
CylonToast wrote:
Well, to make the ball play the sound, this is the script to use:
You might want to make a hidden sprite and put it at the bottom of the screen to comwhen gf clicked forever if <touching [sprite2 v]?> repeat (3) play sound [x v] end endAs for the stamping 5 times thing, this is the script to use:
If you want this to be done immediately after the previous script, you'll have to add a broadcast script.when I receive [X] change y by [whatever] repeat [5] move [x] steps stamp endHope this helped
Fixed.
Anyway, in your script, you had used:
repeat (3) play sound [x v] endBut that will squish the sounds together, so I recommend using:
repeat (3) play sound [x v] until done end
Last edited by ErnieParke (2012-10-07 09:33:28)
Offline