1 | if (bulletid.big == 1) |
2 | { |
3 | if (hspeed < 10) |
4 | hspeed = 10; |
5 | vspeed += random_range(3, -3); |
6 | } |
7 | if (bulletid.big == 0) |
8 | { |
9 | if (hspeed < 0) |
10 | hspeed = 0; |
11 | hspeed += 2; |
12 | vspeed *= 1.2; |
13 | } |
14 | with (bulletid) |
15 | instance_destroy(); |