1 | if (waiter == 0) |
2 | { |
3 | if (overlay_alpha < 1) |
4 | overlay_alpha += 0.1 |
5 | else |
6 | { |
7 | image_alpha = 1 |
8 | image_speed = (1/3) |
9 | audio_play_sound(snd_feisty_title_card, 1, 0) |
10 | waiter = 1 |
11 | } |
12 | } |
13 | if (waiter == 1) |
14 | { |
15 | if (image_index >= (image_number - 1)) |
16 | { |
17 | image_speed = 0 |
18 | if (!alarm[0]) |
19 | alarm[0] = 75 |
20 | } |
21 | } |
22 | if (waiter == 2) |
23 | { |
24 | if (image_alpha > 0) |
25 | image_alpha -= 0.1 |
26 | else |
27 | instance_destroy() |
28 | overlay_alpha = image_alpha |
29 | } |