1 | if (state == 0) |
2 | { |
3 | image_xscale += 0.2; |
4 | image_yscale += 0.2; |
5 | if (image_xscale >= 5) |
6 | { |
7 | state = 1; |
8 | alarm[0] = 52; |
9 | } |
10 | } |
11 | if (state == 1) |
12 | { |
13 | sprite_index = spr_bqueen_giant_head_laughing_wireframe; |
14 | image_speed = 0.5; |
15 | if (playsound == 0) |
16 | { |
17 | playsound = 1; |
18 | snd_play(snd_queen_laugh_0_bc); |
19 | } |
20 | } |