1 | if (act == 1) |
2 | { |
3 | if (instance_exists(OBJ_WRITER) == 0 && skip == 0) |
4 | { |
5 | skip = 1; |
6 | fader = instance_create(0, 0, obj_unfader); |
7 | fader.tspeed = 0.05; |
8 | alarm[1] = 30; |
9 | } |
10 | if (skip == 1) |
11 | { |
12 | vol -= 0.05; |
13 | caster_set_volume(intromusic, vol); |
14 | } |
15 | if (global.faceemotion == 2 && dongs == 0) |
16 | { |
17 | dongs = 1; |
18 | instance_create(x, y, obj_introlast); |
19 | } |
20 | } |