2021-07-09 14:22:58 -07:00
|
|
|
|
2021-06-28 18:44:09 -07:00
|
|
|
global.sups = pointsdirection + 180 + random(20)-10
|
|
|
|
repeat (3)
|
|
|
|
{
|
2021-07-07 23:43:05 -07:00
|
|
|
var iii = instance_create(x + 30*cos(global.sups),y - 30*sin(global.sups),obj_card)
|
2021-06-28 18:44:09 -07:00
|
|
|
with (iii)
|
|
|
|
{
|
|
|
|
direction = global.sups
|
|
|
|
speed = 20
|
|
|
|
z = 30
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sound_play(snd_playershoot)
|
2021-07-07 23:43:05 -07:00
|
|
|
|