1 | if (live_call()) |
2 | return global.live_result; |
3 | if (attack_delay > 0) |
4 | { |
5 | attack_delay--; |
6 | exit; |
7 | } |
8 | image_xscale += 0.25; |
9 | image_yscale += 0.25; |
10 | attack_delay = 0; |
11 | if (image_xscale > 9) |
12 | { |
13 | if (image_alpha > 0) |
14 | image_alpha -= 0.33; |
15 | else |
16 | instance_destroy(); |
17 | } |