1 |
if (global.snowdin_flag[14] >= 1 || (global.snowdin_flag[13] == 0 && global.geno_complete[2] == true) || global.snowdin_flag[13] == 3) |
2 |
{ |
3 |
instance_destroy(); |
4 |
exit; |
5 |
} |
6 |
event_inherited(); |
7 |
image_speed = 0; |
8 |
scene = 0; |
9 |
walk_speed = 2; |
10 |
action_sprite = true; |
11 |
arrived_count = 0; |
12 |
up_sprite = 273; |
13 |
right_sprite = 270; |
14 |
down_sprite = 274; |
15 |
left_sprite = 272; |
16 |
up_sprite_idle = 262; |
17 |
right_sprite_idle = 263; |
18 |
down_sprite_idle = 265; |
19 |
left_sprite_idle = 268; |
20 |
if (global.snowdin_flag[13] > 0) |
21 |
{ |
22 |
action_sprite = false; |
23 |
sprite_index = down_sprite; |
24 |
scr_cutscene_start(); |
25 |
alarm[2] = 45; |
26 |
x = 220; |
27 |
y = 200; |
28 |
if (global.route == 3) |
29 |
{ |
30 |
x = 220; |
31 |
y = 280; |
32 |
} |
33 |
instance_create(x, y - 20, obj_camera); |
34 |
__view_set(e__VW.Object, 0, obj_camera); |
35 |
obj_pl.x = x; |
36 |
obj_pl.y = y + 30; |
37 |
} |
38 |
|
39 |
enum e__VW |
40 |
{ |
41 |
XView, |
42 |
YView, |
43 |
WView, |
44 |
HView, |
45 |
Angle, |
46 |
HBorder, |
47 |
VBorder, |
48 |
HSpeed, |
49 |
VSpeed, |
50 |
Object, |
51 |
Visible, |
52 |
XPort, |
53 |
YPort, |
54 |
WPort, |
55 |
HPort, |
56 |
Camera, |
57 |
SurfaceID |
58 |
} |