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.
16 lines
333 B
16 lines
333 B
var inst;
|
|
with (blobsolid)
|
|
instance_destroy()
|
|
inst = instance_place(x, y, oBeam)
|
|
if (inst != noone)
|
|
{
|
|
if inst.ibeam
|
|
exit
|
|
}
|
|
repeat (2)
|
|
{
|
|
make_explosion1((x + irandom_range(-16, 16)), (y - 8))
|
|
make_explosion1((x + irandom_range(-16, 16)), (y - 24))
|
|
make_explosion1((x + irandom_range(-16, 16)), (y - 40))
|
|
}
|