You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
312 B
14 lines
312 B
if lbubbles
|
|
{
|
|
b = instance_create((x - 96), ((y - 4) - random(24)), oCurrentBubble)
|
|
b.hspeed = (3 + random(1))
|
|
b.xlimit = x
|
|
}
|
|
if rbubbles
|
|
{
|
|
b = instance_create((x + 112), ((y - 4) - random(24)), oCurrentBubble)
|
|
b.hspeed = (-3 - random(1))
|
|
b.xlimit = (x + 32)
|
|
}
|
|
alarm[0] = (5 + random(3))
|