|
1
|
if (_slow_text_active)
|
|
2
|
{
|
|
3
|
if (i_ex(obj_writer))
|
|
4
|
{
|
|
5
|
var text_rate = _text_rate;
|
|
6
|
with (obj_writer)
|
|
7
|
{
|
|
8
|
skippable = 0;
|
|
9
|
rate = text_rate;
|
|
10
|
preventcskip = true;
|
|
11
|
}
|
|
12
|
}
|
|
13
|
else
|
|
14
|
{
|
|
15
|
}
|
|
16
|
}
|
|
17
|
if (con < 0)
|
|
18
|
exit;
|
|
19
|
if (con == 0 && global.interact == 0)
|
|
20
|
{
|
|
21
|
var triggered = false;
|
|
22
|
with (_trigger)
|
|
23
|
{
|
|
24
|
if (place_meeting(x, y, obj_mainchara))
|
|
25
|
triggered = true;
|
|
26
|
}
|
|
27
|
if (triggered)
|
|
28
|
{
|
|
29
|
con = 1;
|
|
30
|
alarm[0] = 1; gml_Object_obj_ch5_LW20W_Alarm_0.gml
con++;
|
|
31
|
global.interact = 1;
|
|
32
|
with (_trigger)
|
|
33
|
instance_destroy();
|
|
34
|
}
|
|
35
|
}
|
|
36
|
if (con == 2 && !d_ex())
|
|
37
|
con = 3;
|
|
38
|
if (con == 3 && !d_ex())
|
|
39
|
{
|
|
40
|
con = 4;
|
|
41
|
global.interact = 0;
|
|
42
|
_trigger = instance_create(250, 80, obj_trigger);
|
|
43
|
with (_trigger)
|
|
44
|
image_yscale = 12;
|
|
45
|
}
|
|
46
|
if (con == 4 && global.interact == 0)
|
|
47
|
{
|
|
48
|
var triggered = false;
|
|
49
|
with (_trigger)
|
|
50
|
{
|
|
51
|
if (place_meeting(x, y, obj_mainchara))
|
|
52
|
triggered = true;
|
|
53
|
}
|
|
54
|
if (triggered)
|
|
55
|
{
|
|
56
|
con = 6;
|
|
57
|
global.interact = 1;
|
|
58
|
with (_trigger)
|
|
59
|
instance_destroy();
|
|
60
|
}
|
|
61
|
}
|
|
62
|
if (con == 6)
|
|
63
|
{
|
|
64
|
con = -1;
|
|
65
|
cutscene_master = scr_cutscene_makescr_cutscene_make
function scr_cutscene_make()
{
_cutscene_master = instance_create(0, 0, obj_cutscene_master);
_cutscene_master.master_object = id;
return _cutscene_master;
} ();
|
|
66
|
scr_maincharacters_actorsscr_maincharacters_actors
function scr_maincharacters_actors()
{
if (i_ex(obj_plat_player))
{
scr_maincharacters_actors_plat();
exit;
}
actor_count = 0;
kr = 0;
kr_actor = instance_create(obj_mainchara.x, obj_mainchara.y, obj_actor);
scr_actor_setup(kr, kr_actor, "kris");
kr_actor.sprite_index = obj_mainchara.sprite_index;
kr_actor.depth = obj_mainchara.depth;
with (obj_mainchara)
visible = 0;
for (__jj = 0; __jj < array_length_1d(global.cinstance); __jj++)
{
if (i_ex(global.cinstance[__jj]))
{
if (global.cinstance[__jj].name == "susie")
{
actor_count++;
su = __jj + 1;
su_actor = instance_create(global.cinstance[__jj].x, global.cinstance[__jj].y, obj_actor);
scr_actor_setup(su, su_actor, "susie");
su_actor.sprite_index = global.cinstance[__jj].sprite_index;
su_actor.depth = global.cinstance[__jj].depth;
with (global.cinstance[__jj])
visible = 0;
}
if (global.cinstance[__jj].name == "ralsei")
{
actor_count++;
ra = __jj + 1;
ra_actor = instance_create(global.cinstance[__jj].x, global.cinstance[__jj].y, obj_actor);
scr_actor_setup(ra, ra_actor, "ralsei");
ra_actor.sprite_index = global.cinstance[__jj].sprite_index;
ra_actor.depth = global.cinstance[__jj].depth;
with (global.cinstance[__jj])
visible = 0;
}
if (global.cinstance[__jj].name == "noelle")
{
actor_count++;
no = __jj + 1;
no_actor = instance_create(global.cinstance[__jj].x, global.cinstance[__jj].y, obj_actor);
scr_actor_setup(no, no_actor, "noelle");
no_actor.sprite_index = global.cinstance[__jj].sprite_index;
no_actor.depth = global.cinstance[__jj].depth;
with (global.cinstance[__jj])
visible = 0;
}
}
}
} ();
|
|
67
|
no = actor_count + 1;
|
|
68
|
no_actor = instance_create(_noelle_marker.x, _noelle_marker.y, obj_actor);
|
|
69
|
scr_actor_setupscr_actor_setup
function scr_actor_setup(arg0, arg1, arg2)
{
_actorid = arg0;
_actorinstance = arg1;
_actorname = arg2;
obj_cutscene_master.actor_id[_actorid] = _actorinstance;
obj_cutscene_master.actor_name[_actorid] = _actorname;
with (_actorinstance)
{
number = arg0;
if (object_index != obj_plat_npc)
scr_set_facing_sprites(arg2);
}
} (no, no_actor, "noelle");
|
|
70
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
71
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
72
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (_noelle_marker.image_speed);
|
|
73
|
no_actor.sprite_index = _noelle_marker.sprite_index;
|
|
74
|
no_actor.image_index = _noelle_marker.image_index;
|
|
75
|
_noelle_marker.visible = 0;
|
|
76
|
var shadow_target = no_actor;
|
|
77
|
with (_shadow_noelle)
|
|
78
|
scr_sticktoscr_stickto
function scr_stickto(arg0, arg1)
{
_stickto = instance_create(0, 0, obj_stickto);
_stickto.stickingobj = id;
_stickto.stucktoobj = arg0;
_stickto.relativedepth = arg1;
with (_stickto)
event_user(0);
} (shadow_target, 10);
|
|
79
|
var kr_x_pos = 288;
|
|
80
|
var kr_y_pos = 106;
|
|
81
|
var kr_walktime = scr_calculate_move_distancescr_calculate_move_distance
function scr_calculate_move_distance(arg0, arg1, arg2, arg3, arg4 = 6)
{
var move_time = 1;
var distance_time = round(point_distance(arg0, arg1, arg2, arg3) / arg4);
if (distance_time > move_time)
move_time = distance_time;
return move_time;
} (kr_actor.x, kr_actor.y, kr_x_pos, kr_y_pos, 1);
|
|
82
|
shadow_target = kr_actor;
|
|
83
|
with (_shadow_kris)
|
|
84
|
{
|
|
85
|
scr_stickto_stopscr_stickto_stop
function scr_stickto_stop()
{
if (variable_instance_exists(id, "_stickto"))
{
with (_stickto)
instance_destroy();
}
} ();
|
|
86
|
scr_sticktoscr_stickto
function scr_stickto(arg0, arg1)
{
_stickto = instance_create(0, 0, obj_stickto);
_stickto.stickingobj = id;
_stickto.stucktoobj = arg0;
_stickto.relativedepth = arg1;
with (_stickto)
event_user(0);
} (shadow_target, 10);
|
|
87
|
}
|
|
88
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
89
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (156, cameray(), kr_walktime);
|
|
90
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
91
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (false);
|
|
92
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_kris_silo_walk_right);
|
|
93
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (obj_mainchara.image_index);
|
|
94
|
c_image_speed(0.1);
|
|
95
|
c_walkdirect_waitc_walkdirect_wait
function c_walkdirect_wait(arg0, arg1, arg2)
{
c_walkdirect(arg0, arg1, arg2);
c_wait(arg2);
} (kr_x_pos, kr_y_pos, kr_walktime);
|
|
96
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
97
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
98
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("no_name");
|
|
99
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
100
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * (Kris.)Wait for input"* (Kris.)/", "obj_ch5_LW20W_slash_Step_0_gml_148_0" );
|
|
101
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (I know.)Wait for input"* (I know.)/", "obj_ch5_LW20W_slash_Step_0_gml_149_0" );
|
|
102
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (I know you wanted to deny it.)Wait for input"* (I know you wanted to deny it.)/", "obj_ch5_LW20W_slash_Step_0_gml_150_0" );
|
|
103
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (I did too,Delay 11 at first.)Wait for input"* (I did too^1, at first.)/", "obj_ch5_LW20W_slash_Step_0_gml_151_0" );
|
|
104
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (But...Delay 11 eventually...)Wait for input"* (But..^1. eventually...)/", "obj_ch5_LW20W_slash_Step_0_gml_152_0" );
|
|
105
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (We're going to have to face the truth.)Wait for inputClose Message"* (We're going to have to face the truth.)/%", "obj_ch5_LW20W_slash_Step_0_gml_153_0" );
|
|
106
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
107
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
108
|
{
|
|
109
|
with (_vfx)
|
|
110
|
fade_in();
|
|
111
|
});
|
|
112
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (200);
|
|
113
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("no_name");
|
|
114
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
115
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * (Yesterday,Delay 11 when...Delay 11 everything happened...)Wait for input"* (Yesterday^1, when..^1. everything happened...)/", "obj_ch5_LW20W_slash_Step_0_gml_168_0" );
|
|
116
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (Every cell in my body was screaming at me to run away.)Wait for input"* (Every cell in my body was screaming at me to run away.)/", "obj_ch5_LW20W_slash_Step_0_gml_169_0" );
|
|
117
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (...Delay 11 that if I stayed by your side any longer,)Wait for input"* (..^1. that if I stayed by your side any longer,)/", "obj_ch5_LW20W_slash_Step_0_gml_170_0" );
|
|
118
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (You were going to drag me down with you.)Wait for input"* (You were going to drag me down with you.)/", "obj_ch5_LW20W_slash_Step_0_gml_171_0" );
|
|
119
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (Drag me down somewhere no one is supposed to go.)Wait for input"* (Drag me down somewhere no one is supposed to go.)/", "obj_ch5_LW20W_slash_Step_0_gml_172_0" );
|
|
120
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (...)Wait for input"* (...)/", "obj_ch5_LW20W_slash_Step_0_gml_173_0" );
|
|
121
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* (And you know what terrified me the most about that?)Wait for inputClose Message"* (And you know what terrified me the most about that?)/%", "obj_ch5_LW20W_slash_Step_0_gml_174_0" );
|
|
122
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
123
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
124
|
{
|
|
125
|
with (_vfx)
|
|
126
|
fade_out();
|
|
127
|
});
|
|
128
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
129
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_look_back_transition);
|
|
130
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
131
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 5, 30);
|
|
132
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (no_actor, "image_index", ">=", 4);
|
|
133
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
134
|
{
|
|
135
|
var shadow_target = no_actor;
|
|
136
|
with (_shadow_noelle)
|
|
137
|
{
|
|
138
|
sprite_index = spr_noelle_sunset_shadow;
|
|
139
|
scr_stickto_stopscr_stickto_stop
function scr_stickto_stop()
{
if (variable_instance_exists(id, "_stickto"))
{
with (_stickto)
instance_destroy();
}
} ();
|
|
140
|
y -= 1;
|
|
141
|
scr_sticktoscr_stickto
function scr_stickto(arg0, arg1)
{
_stickto = instance_create(0, 0, obj_stickto);
_stickto.stickingobj = id;
_stickto.stucktoobj = arg0;
_stickto.relativedepth = arg1;
with (_stickto)
event_user(0);
} (shadow_target, 10);
|
|
142
|
}
|
|
143
|
});
|
|
144
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (31);
|
|
145
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (_vfx, "fadecon", "=", 2);
|
|
146
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
147
|
{
|
|
148
|
with (_vfx)
|
|
149
|
hide();
|
|
150
|
});
|
|
151
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
152
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
153
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_up_head_tilt);
|
|
154
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("no_name");
|
|
155
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
156
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * (I think...)Wait for inputClose Message"* (I think...)/%", "obj_ch5_LW20W_slash_Step_0_gml_206_0" );
|
|
157
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
158
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
159
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
160
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_up);
|
|
161
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
162
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
163
|
{
|
|
164
|
mus_volume(oceansong[1], 0, 30);
|
|
165
|
scr_script_delayedscr_script_delayed
function scr_script_delayed()
{
var __scriptdelay = instance_create(0, 0, obj_script_delayed);
__scriptdelay.script = argument[0];
__scriptdelay.alarm[0] = argument[1];
__scriptdelay.target = id;
for (var __i = 0; __i < (argument_count - 2); __i++)
__scriptdelay.script_arg[__i] = argument[__i + 2];
__scriptdelay.arg_count = argument_count - 2;
return __scriptdelay;
}
function scr_script_delayed_until()
{
var __scriptdelay = instance_create(0, 0, obj_script_delayed_function);
__scriptdelay.script = argument[0];
__scriptdelay.condition = argument[1];
__scriptdelay.target = id;
for (var __i = 0; __i < (argument_count - 2); __i++)
__scriptdelay.script_arg[__i] = argument[__i + 2];
__scriptdelay.arg_count = argument_count - 2;
return __scriptdelay;
}
function delay_function(arg0, arg1)
{
return scr_script_delayed(arg0, arg1);
} (snd_free, 31, oceansong[1]);
|
|
166
|
_text_rate = 4;
|
|
167
|
});
|
|
168
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
169
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
170
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * I want that.Wait for inputClose Message"* I want that./%", "obj_ch5_LW20W_slash_Step_0_gml_225_0" );
|
|
171
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
172
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (90);
|
|
173
|
c_var_lerp_to_instance(blackall, "image_alpha", 1, 120);
|
|
174
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (180);
|
|
175
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
176
|
{
|
|
177
|
blackall.image_alpha = 0;
|
|
178
|
with (_rotate_vfx)
|
|
179
|
start();
|
|
180
|
});
|
|
181
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
182
|
{
|
|
183
|
_bgm_track[0] = snd_init("ch5_weird_monologue_deep.ogg");
|
|
184
|
_bgm_track[1] = mus_loop_ext(_bgm_track[0], 1, 0.95);
|
|
185
|
mus_volume(_bgm_track[1], 0, 0);
|
|
186
|
mus_volume(_bgm_track[1], 0.7, 30);
|
|
187
|
_text_rate = 2;
|
|
188
|
});
|
|
189
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
190
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
191
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * Since Dess left...Wait for input"* Since Dess left.../", "obj_ch5_LW20W_slash_Step_0_gml_260_0" );
|
|
192
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* All I've been doing has just been...Wait for inputClose Message"* All I've been doing has just been.../%", "obj_ch5_LW20W_slash_Step_0_gml_261_0" );
|
|
193
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
194
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
195
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
196
|
{
|
|
197
|
with (_rotate_vfx)
|
|
198
|
fade_in_segment();
|
|
199
|
});
|
|
200
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
201
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
202
|
{
|
|
203
|
with (_rotate_vfx)
|
|
204
|
fade_in_segment();
|
|
205
|
});
|
|
206
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
207
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
208
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
209
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * Marching down my path.Wait for inputClose Message"* Marching down my path./%", "obj_ch5_LW20W_slash_Step_0_gml_286_0" );
|
|
210
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
211
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
212
|
{
|
|
213
|
with (_rotate_vfx)
|
|
214
|
fade_in_segment();
|
|
215
|
});
|
|
216
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
217
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
218
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
219
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * Staying quiet.Delay 11 Getting good grades.Wait for inputClose Message"* Staying quiet^1. Getting good grades./%", "obj_ch5_LW20W_slash_Step_0_gml_298_0" );
|
|
220
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
221
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
222
|
{
|
|
223
|
with (_rotate_vfx)
|
|
224
|
{
|
|
225
|
start_rotate();
|
|
226
|
increase_wave();
|
|
227
|
}
|
|
228
|
});
|
|
229
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
230
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
231
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
232
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * It feels like...Delay 11 I've just been watching myself through glass.Wait for inputClose Message"* It feels like..^1. I've just been watching myself through glass./%", "obj_ch5_LW20W_slash_Step_0_gml_313_0" );
|
|
233
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
234
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
235
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
236
|
{
|
|
237
|
with (_rotate_vfx)
|
|
238
|
{
|
|
239
|
increase_rotate();
|
|
240
|
increase_wave();
|
|
241
|
}
|
|
242
|
});
|
|
243
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
244
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
245
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * Watching someone else move me through my life.Wait for inputClose Message"* Watching someone else move me through my life./%", "obj_ch5_LW20W_slash_Step_0_gml_328_0" );
|
|
246
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
247
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
248
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
249
|
{
|
|
250
|
with (_rotate_vfx)
|
|
251
|
{
|
|
252
|
increase_rotate();
|
|
253
|
increase_wave();
|
|
254
|
}
|
|
255
|
});
|
|
256
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
257
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
258
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * That's why I want...Delay 11 to do something crazy.Wait for inputClose Message"* That's why I want..^1. to do something crazy./%", "obj_ch5_LW20W_slash_Step_0_gml_345_0" );
|
|
259
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
260
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
261
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
262
|
{
|
|
263
|
with (_rotate_vfx)
|
|
264
|
{
|
|
265
|
increase_rotate();
|
|
266
|
increase_wave();
|
|
267
|
}
|
|
268
|
});
|
|
269
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
270
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
271
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * That's why I want...Delay 11 to break free.Wait for inputClose Message"* That's why I want..^1. to break free./%", "obj_ch5_LW20W_slash_Step_0_gml_361_0" );
|
|
272
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
273
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
274
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
275
|
{
|
|
276
|
snd_play(snd_noise);
|
|
277
|
with (_rotate_vfx)
|
|
278
|
fade_out_pinwheel();
|
|
279
|
});
|
|
280
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
281
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
282
|
{
|
|
283
|
with (_rotate_vfx)
|
|
284
|
noelle_kneel();
|
|
285
|
});
|
|
286
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
287
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
288
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * But,Delay 11 I can't.Delay 11 I couldn't.Wait for input"* But^1, I can't^1. I couldn't./", "obj_ch5_LW20W_slash_Step_0_gml_378_0" );
|
|
289
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* Because I'm just Noelle.Wait for input"* Because I'm just Noelle./", "obj_ch5_LW20W_slash_Step_0_gml_379_0" );
|
|
290
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* A Noelle that has to do Noelle things.Wait for inputClose Message"* A Noelle that has to do Noelle things./%", "obj_ch5_LW20W_slash_Step_0_gml_380_0" );
|
|
291
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
292
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
293
|
{
|
|
294
|
with (_rotate_vfx)
|
|
295
|
fade_out();
|
|
296
|
});
|
|
297
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
298
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_kris_shadow_head_down_silo);
|
|
299
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
300
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_left_walk_head_down);
|
|
301
|
c_setxyc_setxy
function c_setxy(arg0, arg1)
{
c_cmd("setxy", arg0, arg1, 0, 0);
} (320, no_actor.y);
|
|
302
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (90);
|
|
303
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
304
|
{
|
|
305
|
blackall.image_alpha = 1;
|
|
306
|
with (_rotate_vfx)
|
|
307
|
clean_up();
|
|
308
|
});
|
|
309
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
310
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
311
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * Just like Kris has to do Kris things...Wait for inputClose Message"* Just like Kris has to do Kris things.../%", "obj_ch5_LW20W_slash_Step_0_gml_401_0" );
|
|
312
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
313
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
314
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
315
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
316
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * But Kris...Delay 11 you changed.Wait for inputClose Message"* But Kris..^1. you changed./%", "obj_ch5_LW20W_slash_Step_0_gml_416_0" );
|
|
317
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
318
|
c_var_lerp_to_instance(blackall, "image_alpha", 0, 60);
|
|
319
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (90);
|
|
320
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
321
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_exasperated);
|
|
322
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
323
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face u* Kris,Delay 11 YOU actually changed!Wait for input"\\Eu* Kris^1, YOU actually changed!/", "obj_ch5_LW20W_slash_Step_0_gml_430_0" );
|
|
324
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face g* You found out how to stop being Kris!Wait for input"\\Eg* You found out how to stop being Kris!/", "obj_ch5_LW20W_slash_Step_0_gml_431_0" );
|
|
325
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face m* And no one else has noticed...Wait for inputClose Message"\\Em* And no one else has noticed.../%", "obj_ch5_LW20W_slash_Step_0_gml_432_0" );
|
|
326
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
327
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (0);
|
|
328
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
329
|
{
|
|
330
|
voice_pitch = 0.2;
|
|
331
|
scr_writer_setshakescr_writer_setshake
function scr_writer_setshake(arg0)
{
with (obj_writer)
shake = arg0;
} (1);
|
|
332
|
});
|
|
333
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
334
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
335
|
c_shakeobjc_shakeobj
function c_shakeobj()
{
c_cmd("shakeobj", 0, 0, 0, 0);
} ();
|
|
336
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
337
|
{
|
|
338
|
voice_pitch = -1;
|
|
339
|
scr_writer_setshakescr_writer_setshake
function scr_writer_setshake(arg0)
{
with (obj_writer)
shake = arg0;
} (0);
|
|
340
|
});
|
|
341
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
342
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
343
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_head_down);
|
|
344
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
345
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
346
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
347
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
348
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face v* Because they don't want to!Wait for input"\\Ev* Because they don't want to!/", "obj_ch5_LW20W_slash_Step_0_gml_455_0" );
|
|
349
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face p* They don't want to see how INTERESTING you are now!Wait for input"\\Ep* They don't want to see how INTERESTING you are now!/", "obj_ch5_LW20W_slash_Step_0_gml_456_0" );
|
|
350
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face m* They'll just keep marching down the same path...Wait for input"\\Em* They'll just keep marching down the same path.../", "obj_ch5_LW20W_slash_Step_0_gml_457_0" );
|
|
351
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face n* Without even thinking where it goes!Wait for inputClose Message"\\En* Without even thinking where it goes!/%", "obj_ch5_LW20W_slash_Step_0_gml_458_0" );
|
|
352
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
353
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (0);
|
|
354
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
355
|
{
|
|
356
|
voice_pitch = 0.2;
|
|
357
|
scr_writer_setshakescr_writer_setshake
function scr_writer_setshake(arg0)
{
with (obj_writer)
shake = arg0;
} (1);
|
|
358
|
});
|
|
359
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
360
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
361
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_exasperated);
|
|
362
|
c_shakeobjc_shakeobj
function c_shakeobj()
{
c_cmd("shakeobj", 0, 0, 0, 0);
} ();
|
|
363
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
364
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
365
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_shake_head);
|
|
366
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
367
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
368
|
{
|
|
369
|
voice_pitch = -1;
|
|
370
|
scr_writer_setshakescr_writer_setshake
function scr_writer_setshake(arg0)
{
with (obj_writer)
shake = arg0;
} (0);
|
|
371
|
});
|
|
372
|
repeat (2)
|
|
373
|
{
|
|
374
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 3, 12);
|
|
375
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (16);
|
|
376
|
}
|
|
377
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (3);
|
|
378
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
379
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_exasperated);
|
|
380
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
381
|
c_shakeobjc_shakeobj
function c_shakeobj()
{
c_cmd("shakeobj", 0, 0, 0, 0);
} ();
|
|
382
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
383
|
{
|
|
384
|
voice_pitch = 0.2;
|
|
385
|
scr_writer_setshakescr_writer_setshake
function scr_writer_setshake(arg0)
{
with (obj_writer)
shake = arg0;
} (1);
|
|
386
|
});
|
|
387
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
388
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
389
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
390
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
391
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
392
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
393
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_head_down);
|
|
394
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
395
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face e* Kris...Wait for input"\\Ee* Kris.../", "obj_ch5_LW20W_slash_Step_0_gml_489_0" );
|
|
396
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face d* Being around you...Wait for inputClose Message"\\Ed* Being around you.../%", "obj_ch5_LW20W_slash_Step_0_gml_490_0" );
|
|
397
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
398
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (0);
|
|
399
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
400
|
{
|
|
401
|
voice_pitch = -1;
|
|
402
|
scr_writer_setshakescr_writer_setshake
function scr_writer_setshake(arg0)
{
with (obj_writer)
shake = arg0;
} (0);
|
|
403
|
});
|
|
404
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
405
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
406
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_hands_to_chest);
|
|
407
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
408
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
409
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
410
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 6, 30);
|
|
411
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
412
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
413
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_hands_to_chest_head_down);
|
|
414
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
415
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face b* Is changing me,Delay 11 too.Wait for inputClose Message"\\Eb* Is changing me^1, too./%", "obj_ch5_LW20W_slash_Step_0_gml_499_0" );
|
|
416
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
417
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
418
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
419
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face e* K...Delay 11 Kris...Wait for input"\\Ee* K..^1. Kris.../", "obj_ch5_LW20W_slash_Step_0_gml_516_0" );
|
|
420
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face Z* Kris,Delay 11 when I cast "Snowgrave..."Wait for input"\\EZ* Kris^1, when I cast \"Snowgrave...\"/", "obj_ch5_LW20W_slash_Step_0_gml_517_0" );
|
|
421
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face r* I...Wait for input"\\Er* I.../", "obj_ch5_LW20W_slash_Step_0_gml_518_0" );
|
|
422
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face t* I felt stronger than I have in my entire life.Wait for inputClose Message"\\Et* I felt stronger than I have in my entire life./%", "obj_ch5_LW20W_slash_Step_0_gml_519_0" );
|
|
423
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
424
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
425
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
426
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_hands_to_chest_turn_head);
|
|
427
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (3);
|
|
428
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
429
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_hands_to_chest_head_down_more);
|
|
430
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
431
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
432
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
433
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
434
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
435
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_kris_shadow_head_down_reveal);
|
|
436
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 3, 15);
|
|
437
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
438
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_fall_to_floor);
|
|
439
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 4, 30);
|
|
440
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (10);
|
|
441
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (10);
|
|
442
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
443
|
c_shakeobjc_shakeobj
function c_shakeobj()
{
c_cmd("shakeobj", 0, 0, 0, 0);
} ();
|
|
444
|
c_snd_play(snd_wing);
|
|
445
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
446
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
447
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_fall_head_shake);
|
|
448
|
repeat (2)
|
|
449
|
{
|
|
450
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 3, 12);
|
|
451
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (16);
|
|
452
|
}
|
|
453
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
454
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
455
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face t* I know...Delay 11 it's horrible.Delay 11 It's horrible to say that,Delay 11 but...Wait for inputClose Message"\\Et* I know..^1. it's horrible^1. It's horrible to say that^1, but.../%", "obj_ch5_LW20W_slash_Step_0_gml_532_0" );
|
|
456
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
457
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (0);
|
|
458
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
459
|
{
|
|
460
|
voice_pitch = 0.2;
|
|
461
|
scr_writer_setshakescr_writer_setshake
function scr_writer_setshake(arg0)
{
with (obj_writer)
shake = arg0;
} (1);
|
|
462
|
});
|
|
463
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
464
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
465
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_kneel_hands_down);
|
|
466
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
467
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 4, 30);
|
|
468
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
469
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_kneeling_head_down);
|
|
470
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
471
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
472
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face e* Kris.Wait for input"\\Ee* Kris./", "obj_ch5_LW20W_slash_Step_0_gml_547_0" );
|
|
473
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face c* You...Delay 11 if it's you telling me to,Delay 11 I can do anything.Wait for input"\\Ec* You..^1. if it's you telling me to^1, I can do anything./", "obj_ch5_LW20W_slash_Step_0_gml_548_0" );
|
|
474
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face a* If you tell me to,Delay 11 I can do things that are impossible.Wait for input"\\Ea* If you tell me to^1, I can do things that are impossible./", "obj_ch5_LW20W_slash_Step_0_gml_549_0" );
|
|
475
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face b* Things no one else can do.Wait for inputClose Message"\\Eb* Things no one else can do./%", "obj_ch5_LW20W_slash_Step_0_gml_550_0" );
|
|
476
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
477
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (0);
|
|
478
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
479
|
{
|
|
480
|
voice_pitch = -1;
|
|
481
|
scr_writer_setshakescr_writer_setshake
function scr_writer_setshake(arg0)
{
with (obj_writer)
shake = arg0;
} (0);
|
|
482
|
});
|
|
483
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
484
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
485
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_kneeling_head_down);
|
|
486
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (3);
|
|
487
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
488
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_kneeling_medium);
|
|
489
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
490
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
491
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
492
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_kneeling_head_up);
|
|
493
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
494
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face a* So,Delay 11 why don't we do it?Wait for inputClose Message"\\Ea* So^1, why don't we do it?/%", "obj_ch5_LW20W_slash_Step_0_gml_565_0" );
|
|
495
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
496
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
497
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_kneeling_head_down);
|
|
498
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
499
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
500
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face b* Why don't we do...Wait for inputClose Message"\\Eb* Why don't we do.../%", "obj_ch5_LW20W_slash_Step_0_gml_575_0" );
|
|
501
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
502
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
503
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
504
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
505
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_kris_shadow_head_down_reveal);
|
|
506
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 3, 0, 16);
|
|
507
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
508
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_left_walk);
|
|
509
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
510
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
511
|
c_walkdirect_waitc_walkdirect_wait
function c_walkdirect_wait(arg0, arg1, arg2)
{
c_walkdirect(arg0, arg1, arg2);
c_wait(arg2);
} (309, no_actor.y, 16);
|
|
512
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
513
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
514
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face j* "Something crazy?"Wait for input"\\Ej* \"Something crazy?\"/", "obj_ch5_LW20W_slash_Step_0_gml_576_0" );
|
|
515
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face W* Tell me.Wait for inputClose Message"\\EW* Tell me./%", "obj_ch5_LW20W_slash_Step_0_gml_577_0" );
|
|
516
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
517
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
518
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
519
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_left_walk_head_down);
|
|
520
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
521
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
522
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
523
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_hands_to_chest);
|
|
524
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
525
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 6, 30);
|
|
526
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (45);
|
|
527
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
528
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face j* Tell me to grow wings...Wait for input"\\Ej* Tell me to grow wings.../", "obj_ch5_LW20W_slash_Step_0_gml_596_0" );
|
|
529
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face i* And let's fly out of this stupid town!Wait for input"\\Ei* And let's fly out of this stupid town!/", "obj_ch5_LW20W_slash_Step_0_gml_597_0" );
|
|
530
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face p* To somewhere no one has ever been before!Wait for inputClose Message"\\Ep* To somewhere no one has ever been before!/%", "obj_ch5_LW20W_slash_Step_0_gml_598_0" );
|
|
531
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
532
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
533
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
534
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_hands_to_side);
|
|
535
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 4, 30);
|
|
536
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
537
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
538
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_exasperated);
|
|
539
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
540
|
c_shakeobjc_shakeobj
function c_shakeobj()
{
c_cmd("shakeobj", 0, 0, 0, 0);
} ();
|
|
541
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
542
|
{
|
|
543
|
voice_pitch = 0.2;
|
|
544
|
scr_writer_setshakescr_writer_setshake
function scr_writer_setshake(arg0)
{
with (obj_writer)
shake = arg0;
} (1);
|
|
545
|
});
|
|
546
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
547
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
548
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_walk_left_hands_up);
|
|
549
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
550
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (320, no_actor.y, 30);
|
|
551
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (31, "imageindex", 0);
|
|
552
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (31, "imagespeed", 0);
|
|
553
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (45);
|
|
554
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_hands_to_chest_turn_up);
|
|
555
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
556
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 4, 20);
|
|
557
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (26);
|
|
558
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_look_back_transition_reverse);
|
|
559
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
560
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 5, 20);
|
|
561
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (no_actor, "image_index", ">=", 3);
|
|
562
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
563
|
{
|
|
564
|
var shadow_target = no_actor;
|
|
565
|
with (_shadow_noelle)
|
|
566
|
{
|
|
567
|
sprite_index = spr_noelle_sunset_shadow_tall;
|
|
568
|
scr_stickto_stopscr_stickto_stop
function scr_stickto_stop()
{
if (variable_instance_exists(id, "_stickto"))
{
with (_stickto)
instance_destroy();
}
} ();
|
|
569
|
y += 1;
|
|
570
|
scr_sticktoscr_stickto
function scr_stickto(arg0, arg1)
{
_stickto = instance_create(0, 0, obj_stickto);
_stickto.stickingobj = id;
_stickto.stucktoobj = arg0;
_stickto.relativedepth = arg1;
with (_stickto)
event_user(0);
} (shadow_target, 10);
|
|
571
|
}
|
|
572
|
});
|
|
573
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (20);
|
|
574
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_right_alt);
|
|
575
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
576
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
577
|
{
|
|
578
|
voice_pitch = -1;
|
|
579
|
scr_writer_setshakescr_writer_setshake
function scr_writer_setshake(arg0)
{
with (obj_writer)
shake = arg0;
} (0);
|
|
580
|
});
|
|
581
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
582
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
583
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * ...Wait for input"* .../", "obj_ch5_LW20W_slash_Step_0_gml_637_0" );
|
|
584
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* The other side of the lake.Wait for input"* The other side of the lake./", "obj_ch5_LW20W_slash_Step_0_gml_638_0" );
|
|
585
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* We always wanted to see what was there,Delay 11 didn't we?Wait for input"* We always wanted to see what was there^1, didn't we?/", "obj_ch5_LW20W_slash_Step_0_gml_639_0" );
|
|
586
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* The four of us,Delay 11 when we were kids...Wait for inputClose Message"* The four of us^1, when we were kids.../%", "obj_ch5_LW20W_slash_Step_0_gml_640_0" );
|
|
587
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
588
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
589
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_look_back_transition_alt);
|
|
590
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
591
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 5, 20);
|
|
592
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (no_actor, "image_index", ">=", 3);
|
|
593
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
594
|
{
|
|
595
|
var shadow_target = no_actor;
|
|
596
|
with (_shadow_noelle)
|
|
597
|
{
|
|
598
|
sprite_index = spr_noelle_sunset_shadow;
|
|
599
|
scr_stickto_stopscr_stickto_stop
function scr_stickto_stop()
{
if (variable_instance_exists(id, "_stickto"))
{
with (_stickto)
instance_destroy();
}
} ();
|
|
600
|
y -= 1;
|
|
601
|
scr_sticktoscr_stickto
function scr_stickto(arg0, arg1)
{
_stickto = instance_create(0, 0, obj_stickto);
_stickto.stickingobj = id;
_stickto.stucktoobj = arg0;
_stickto.relativedepth = arg1;
with (_stickto)
event_user(0);
} (shadow_target, 10);
|
|
602
|
}
|
|
603
|
});
|
|
604
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (no_actor, "image_index", ">=", 5);
|
|
605
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (6);
|
|
606
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
607
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_hands_to_chest_turn_up);
|
|
608
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (4);
|
|
609
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 4, 0, 20);
|
|
610
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (35);
|
|
611
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
612
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_hands_to_chest_head_down);
|
|
613
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
614
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
615
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face a* Kris,Delay 11 let's go there.Wait for input"\\Ea* Kris^1, let's go there./", "obj_ch5_LW20W_slash_Step_0_gml_649_0" );
|
|
616
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face j* You'll tell me,Delay 11 won't you?Wait for input"\\Ej* You'll tell me^1, won't you?/", "obj_ch5_LW20W_slash_Step_0_gml_650_0" );
|
|
617
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face a* If you tell me to,Delay 11 I can do anything.Wait for inputClose Message"\\Ea* If you tell me to^1, I can do anything./%", "obj_ch5_LW20W_slash_Step_0_gml_651_0" );
|
|
618
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
619
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
620
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
621
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_walk_left_hands_up);
|
|
622
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
623
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
624
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
625
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_hands_to_chest_head_down);
|
|
626
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
627
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
628
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
629
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_silo_walk_left_hands_up);
|
|
630
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
631
|
c_walkdirect_waitc_walkdirect_wait
function c_walkdirect_wait(arg0, arg1, arg2)
{
c_walkdirect(arg0, arg1, arg2);
c_wait(arg2);
} (305, no_actor.y, 30);
|
|
632
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
633
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
634
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
635
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_noelle_kris_take_hands_silo);
|
|
636
|
c_var_lerpc_var_lerp
function c_var_lerp()
{
if (argument_count < 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], 0);
else if (argument_count == 5)
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], argument[4]);
else
c_cmd_x("var", 0, argument[0], argument[1], argument[2], argument[3], string(argument[4]) + string(argument[5]));
} ("image_index", 0, 5, 30);
|
|
637
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
638
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (0);
|
|
639
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
640
|
{
|
|
641
|
var shadow_target = no_actor;
|
|
642
|
with (_shadow_kris)
|
|
643
|
{
|
|
644
|
scr_stickto_stopscr_stickto_stop
function scr_stickto_stop()
{
if (variable_instance_exists(id, "_stickto"))
{
with (_stickto)
instance_destroy();
}
} ();
|
|
645
|
scr_sticktoscr_stickto
function scr_stickto(arg0, arg1)
{
_stickto = instance_create(0, 0, obj_stickto);
_stickto.stickingobj = id;
_stickto.stucktoobj = arg0;
_stickto.relativedepth = arg1;
with (_stickto)
event_user(0);
} (shadow_target, 10);
|
|
646
|
}
|
|
647
|
});
|
|
648
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
649
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
650
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face b* So...Delay 11 tell me,Delay 11 Kris.Wait for inputClose Message"\\Eb* So..^1. tell me^1, Kris./%", "obj_ch5_LW20W_slash_Step_0_gml_652_0" );
|
|
651
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
652
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
653
|
{
|
|
654
|
mus_volume(_bgm_track[1], 0, 60);
|
|
655
|
});
|
|
656
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
657
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
658
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_kris_noelle_beach_walk_silo);
|
|
659
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
660
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
661
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (0);
|
|
662
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
663
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (220, cameray(), 120);
|
|
664
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
665
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.1);
|
|
666
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (370, no_actor.y, 120);
|
|
667
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (121, "imagespeed", 0);
|
|
668
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (150);
|
|
669
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
670
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face j* The words...Delay 11 I've been waiting to hear.Wait for inputClose Message"\\Ej* The words..^1. I've been waiting to hear./%", "obj_ch5_LW20W_slash_Step_0_gml_693_0" );
|
|
671
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
672
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
673
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
674
|
{
|
|
675
|
with (obj_ch5_LW20W)
|
|
676
|
{
|
|
677
|
handoff = 1;
|
|
678
|
con = 99999;
|
|
679
|
}
|
|
680
|
});
|
|
681
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
682
|
}
|
|
683
|
if (con == 10 && customcon == 1 && global.choice != -1)
|
|
684
|
{
|
|
685
|
con = 12;
|
|
686
|
customcon = 0;
|
|
687
|
_water_counter++;
|
|
688
|
k_d(3);
|
|
689
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
690
|
if (global.choice == 0)
|
|
691
|
{
|
|
692
|
if (_water_counter <= 7)
|
|
693
|
{
|
|
694
|
var times_stopped = scr_flag_getscr_flag_get
function scr_flag_get(arg0)
{
return global.flag[arg0];
}
function scr_flag_name_get(arg0)
{
var v = global.flagname[arg0];
return is_undefined(v) ? "*unknown flag*" : v;
}
function scr_flag_get_ext(arg0, arg1, arg2 = 1)
{
if (arg1 < 0)
scr_flag_get(arg0);
else
return scr_get_bitmask_value(global.flag[arg0], arg1, arg2);
} (1742) + 1;
|
|
695
|
scr_flag_setscr_flag_set
function scr_flag_set(arg0, arg1)
{
global.flag[arg0] = arg1;
}
function scr_flag_set_ext(arg0, arg1, arg2, arg3 = 1)
{
if (arg1 < 0)
scr_flag_set(arg0, arg2);
else
global.flag[arg0] = scr_set_bitmask_value(global.flag[arg0], arg1, arg2, arg3);
} (1742, times_stopped);
|
|
696
|
if (times_stopped == 1)
|
|
697
|
{
|
|
698
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
699
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face W* No...Wait for input"\\EW* No.../", "obj_ch5_LW20W_slash_Step_0_gml_735_0" );
|
|
700
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face i* You're supposed to say "Proceed,\Delay 11" right?Wait for input"\\Ei* You're supposed to say \"Proceed,^1\" right?/", "obj_ch5_LW20W_slash_Step_0_gml_736_0" );
|
|
701
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face l* Just like all the other times.Wait for inputClose Message"\\El* Just like all the other times./%", "obj_ch5_LW20W_slash_Step_0_gml_737_0" );
|
|
702
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
703
|
}
|
|
704
|
else if (times_stopped == 2)
|
|
705
|
{
|
|
706
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
707
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face m* Stop pretending.Wait for input"\\Em* Stop pretending./", "obj_ch5_LW20W_slash_Step_0_gml_742_0" );
|
|
708
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face p* I know you remember,Delay 11 too!Wait for inputClose Message"\\Ep* I know you remember^1, too!/%", "obj_ch5_LW20W_slash_Step_0_gml_743_0" );
|
|
709
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
710
|
}
|
|
711
|
else if (times_stopped == 3)
|
|
712
|
{
|
|
713
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
714
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face r* Why...Delay 11 are your hands trembling...?Wait for input"\\Er* Why..^1. are your hands trembling...?/", "obj_ch5_LW20W_slash_Step_0_gml_748_0" );
|
|
715
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face m* Kris,Delay 11 you're the one that wanted this,Delay 11 aren't you?Wait for inputClose Message"\\Em* Kris^1, you're the one that wanted this^1, aren't you?/%", "obj_ch5_LW20W_slash_Step_0_gml_749_0" );
|
|
716
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
717
|
}
|
|
718
|
else if (times_stopped == 4)
|
|
719
|
{
|
|
720
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
721
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face o* Stop pretending you're still the old Kris.Wait for input"\\Eo* Stop pretending you're still the old Kris./", "obj_ch5_LW20W_slash_Step_0_gml_754_0" );
|
|
722
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face i* You can't even say "stop" like you used to.Wait for inputClose Message"\\Ei* You can't even say \"stop\" like you used to./%", "obj_ch5_LW20W_slash_Step_0_gml_755_0" );
|
|
723
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
724
|
}
|
|
725
|
else if (times_stopped >= 5)
|
|
726
|
{
|
|
727
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
728
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face d* Proceed.Wait for inputClose Message"\\Ed* Proceed./%", "obj_ch5_LW20W_slash_Step_0_gml_760_0" );
|
|
729
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
730
|
}
|
|
731
|
}
|
|
732
|
else
|
|
733
|
{
|
|
734
|
trigger_event("failed");
|
|
735
|
}
|
|
736
|
}
|
|
737
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
738
|
{
|
|
739
|
lake_chant();
|
|
740
|
});
|
|
741
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (no);
|
|
742
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
743
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0);
|
|
744
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (1);
|
|
745
|
var walk_time = 48;
|
|
746
|
var walk_interval = walk_time / 7;
|
|
747
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
748
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (camerax() + 24, cameray(), walk_time);
|
|
749
|
if (_water_counter == 1)
|
|
750
|
{
|
|
751
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (30, "sprite", spr_noelle_kris_pull_walk_water_start_silo);
|
|
752
|
}
|
|
753
|
else if (_water_counter == 2)
|
|
754
|
{
|
|
755
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (14, "sprite", spr_noelle_kris_pull_walk_water_silo);
|
|
756
|
}
|
|
757
|
else if (_water_counter == 3)
|
|
758
|
{
|
|
759
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_time / 2, "sprite", spr_noelle_kris_pull_walk_water_01);
|
|
760
|
}
|
|
761
|
else if (_water_counter == 4)
|
|
762
|
{
|
|
763
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_time / 3, "sprite", spr_noelle_kris_pull_walk_water_02);
|
|
764
|
}
|
|
765
|
else if (_water_counter == 5)
|
|
766
|
{
|
|
767
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_time / 3, "sprite", spr_noelle_kris_pull_walk_water_03);
|
|
768
|
}
|
|
769
|
else if (_water_counter == 6)
|
|
770
|
{
|
|
771
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_time / 3, "sprite", spr_noelle_kris_pull_walk_water_04);
|
|
772
|
}
|
|
773
|
else if (_water_counter == 7)
|
|
774
|
{
|
|
775
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
776
|
{
|
|
777
|
if (_blur_vfx.visible == 0)
|
|
778
|
_blur_vfx.visible = 1;
|
|
779
|
_blur_vfx.start();
|
|
780
|
});
|
|
781
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_time / 4, "sprite", spr_noelle_kris_pull_walk_water_05);
|
|
782
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_time / 2, "sprite", spr_noelle_kris_pull_walk_water_06);
|
|
783
|
}
|
|
784
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_interval, "imageindex", 2);
|
|
785
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_interval * 2, "imageindex", 3);
|
|
786
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_interval * 3, "imageindex", 0);
|
|
787
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_interval * 4, "imageindex", 1);
|
|
788
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_interval * 5, "imageindex", 2);
|
|
789
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_interval * 6, "imageindex", 3);
|
|
790
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (walk_interval * 7, "imageindex", 0);
|
|
791
|
c_walkdirect_waitc_walkdirect_wait
function c_walkdirect_wait(arg0, arg1, arg2)
{
c_walkdirect(arg0, arg1, arg2);
c_wait(arg2);
} (no_actor.x + 32, no_actor.y, walk_time);
|
|
792
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
793
|
if (_water_counter == 1)
|
|
794
|
{
|
|
795
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
796
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face d* The water's...Delay 11 nice,Delay 11 isn't it,Delay 11 Kris?Wait for inputClose Message"\\Ed* The water's..^1. nice^1, isn't it^1, Kris?/%", "obj_ch5_LW20W_slash_Step_0_gml_833_0" );
|
|
797
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
798
|
}
|
|
799
|
else if (_water_counter == 2)
|
|
800
|
{
|
|
801
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
802
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face b* Kris,Delay 11 don't hesitate.Wait for inputClose Message"\\Eb* Kris^1, don't hesitate./%", "obj_ch5_LW20W_slash_Step_0_gml_840_0" );
|
|
803
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
804
|
}
|
|
805
|
else if (_water_counter == 3)
|
|
806
|
{
|
|
807
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
808
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face Z* Haha...Delay 11 it's...Delay 11 colder than I thought.Wait for inputClose Message"\\EZ* Haha..^1. it's..^1. colder than I thought./%", "obj_ch5_LW20W_slash_Step_0_gml_847_0" );
|
|
809
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
810
|
}
|
|
811
|
else if (_water_counter == 4)
|
|
812
|
{
|
|
813
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
814
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face W* Kris,Delay 11 don't let go of my hands.Wait for input"\\EW* Kris^1, don't let go of my hands./", "obj_ch5_LW20W_slash_Step_0_gml_854_0" );
|
|
815
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (Face j* Just keep walking.Wait for inputClose Message"\\Ej* Just keep walking./%", "obj_ch5_LW20W_slash_Step_0_gml_855_0" );
|
|
816
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
817
|
}
|
|
818
|
else if (_water_counter == 5)
|
|
819
|
{
|
|
820
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
821
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face j* Kris,Delay 11 just...Delay 11 keep walking.Wait for inputClose Message"\\Ej* Kris^1, just..^1. keep walking./%", "obj_ch5_LW20W_slash_Step_0_gml_862_0" );
|
|
822
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
823
|
}
|
|
824
|
else if (_water_counter == 6)
|
|
825
|
{
|
|
826
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
827
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face l* Kris...Wait for inputClose Message"\\El* Kris.../%", "obj_ch5_LW20W_slash_Step_0_gml_879_0" );
|
|
828
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
829
|
}
|
|
830
|
else if (_water_counter == 7)
|
|
831
|
{
|
|
832
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
833
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face W* Kris......Wait for inputClose Message"\\EW* Kris....../%", "obj_ch5_LW20W_slash_Step_0_gml_886_0" );
|
|
834
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
835
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
836
|
{
|
|
837
|
_proceed_enabled = true;
|
|
838
|
show_proceed();
|
|
839
|
});
|
|
840
|
}
|
|
841
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
842
|
}
|
|
843
|
if (con == 12 && customcon == 1 && !i_ex(obj_writer))
|
|
844
|
{
|
|
845
|
con = -1;
|
|
846
|
k_d(1);
|
|
847
|
show_choice();
|
|
848
|
}
|
|
849
|
if (_proceed_enabled)
|
|
850
|
{
|
|
851
|
if (!_proceed_pause)
|
|
852
|
_proceed_timer--;
|
|
853
|
if (_proceed_timer <= 0)
|
|
854
|
{
|
|
855
|
_proceed_enabled = false;
|
|
856
|
trigger_event("failed");
|
|
857
|
con = 60;
|
|
858
|
with (_white_vfx)
|
|
859
|
proceed_final();
|
|
860
|
with (obj_choicer_neo)
|
|
861
|
instance_destroy();
|
|
862
|
with (obj_writer)
|
|
863
|
scr_doomscr_doom
function scr_doom(arg0, arg1)
{
var _doom = instance_create_depth(0, 0, 0, obj_doom);
with (_doom)
{
alarm[0]
target = arg0;
}
return _doom;
} (id, 1);
|
|
864
|
k_d(1);
|
|
865
|
}
|
|
866
|
else
|
|
867
|
{
|
|
868
|
if (con == 25 && customcon == 1)
|
|
869
|
{
|
|
870
|
con = -1;
|
|
871
|
customcon = 0;
|
|
872
|
_proceed_counter++;
|
|
873
|
_proceed_pause = true;
|
|
874
|
_proceed_text_active = true;
|
|
875
|
lake_chant();
|
|
876
|
with (obj_choicer_neo)
|
|
877
|
instance_destroy();
|
|
878
|
with (obj_writer)
|
|
879
|
scr_doomscr_doom
function scr_doom(arg0, arg1)
{
var _doom = instance_create_depth(0, 0, 0, obj_doom);
with (_doom)
{
alarm[0]
target = arg0;
}
return _doom;
} (id, 1);
|
|
880
|
k_d(1);
|
|
881
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
882
|
if (_proceed_counter == 1)
|
|
883
|
{
|
|
884
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
885
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face W* ...Wait for inputClose Message"\\EW* .../%", "obj_ch5_LW20W_slash_Step_0_gml_966_0" );
|
|
886
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
887
|
}
|
|
888
|
else if (_proceed_counter == 2)
|
|
889
|
{
|
|
890
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
891
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face r* ...Wait for inputClose Message"\\Er* .../%", "obj_ch5_LW20W_slash_Step_0_gml_971_0" );
|
|
892
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
893
|
}
|
|
894
|
else if (_proceed_counter == 3)
|
|
895
|
{
|
|
896
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
897
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face s* (Kris,Delay 11 you can still hear me,Delay 11 can't you!?)Wait for inputClose Message"\\Es* (Kris^1, you can still hear me^1, can't you!?)/%", "obj_ch5_LW20W_slash_Step_0_gml_976_0" );
|
|
898
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
899
|
}
|
|
900
|
else if (_proceed_counter == 4)
|
|
901
|
{
|
|
902
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
903
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face s* (Kris...Delay 11 keep...Delay 11 saying it...!)Wait for inputClose Message"\\Es* (Kris..^1. keep..^1. saying it...!)/%", "obj_ch5_LW20W_slash_Step_0_gml_981_0" );
|
|
904
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
905
|
}
|
|
906
|
else if (_proceed_counter == 5)
|
|
907
|
{
|
|
908
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
909
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face s* (K...Delay 11 Kris...!)Wait for inputClose Message"\\Es* (K..^1. Kris...!)/%", "obj_ch5_LW20W_slash_Step_0_gml_986_0" );
|
|
910
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
911
|
}
|
|
912
|
else if (_proceed_counter == 6)
|
|
913
|
{
|
|
914
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
915
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face s* (KRIS!!!)Wait for inputClose Message"\\Es* (KRIS!!!)/%", "obj_ch5_LW20W_slash_Step_0_gml_991_0" );
|
|
916
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
917
|
}
|
|
918
|
else if (_proceed_counter == 7)
|
|
919
|
{
|
|
920
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
921
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face s* (SAY IT!!!!!!)Wait for inputClose Message"\\Es* (SAY IT!!!!!!)/%", "obj_ch5_LW20W_slash_Step_0_gml_996_0" );
|
|
922
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
923
|
}
|
|
924
|
else if (_proceed_counter == 8)
|
|
925
|
{
|
|
926
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("noelle");
|
|
927
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, Face s* (KRIS!!!!!!!!!)Wait for inputClose Message"\\Es* (KRIS!!!!!!!!!)/%", "obj_ch5_LW20W_slash_Step_0_gml_1001_0" );
|
|
928
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
929
|
}
|
|
930
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
931
|
{
|
|
932
|
show_proceed();
|
|
933
|
});
|
|
934
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
935
|
}
|
|
936
|
if (con == 30 && customcon == 1 && global.choice != -1)
|
|
937
|
{
|
|
938
|
con = -1;
|
|
939
|
k_d(3);
|
|
940
|
if (_whiteout_finished)
|
|
941
|
{
|
|
942
|
_proceed_enabled = false;
|
|
943
|
con = 50;
|
|
944
|
}
|
|
945
|
else
|
|
946
|
{
|
|
947
|
con = 25;
|
|
948
|
}
|
|
949
|
}
|
|
950
|
}
|
|
951
|
}
|
|
952
|
if (con == 50 && customcon == 1 && !d_ex())
|
|
953
|
{
|
|
954
|
con = 100;
|
|
955
|
customcon = 0;
|
|
956
|
with (obj_writer)
|
|
957
|
scr_doomscr_doom
function scr_doom(arg0, arg1)
{
var _doom = instance_create_depth(0, 0, 0, obj_doom);
with (_doom)
{
alarm[0]
target = arg0;
}
return _doom;
} (id, 1);
|
|
958
|
k_d(1);
|
|
959
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
960
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
961
|
{
|
|
962
|
blackall.depth = _white_vfx.depth - 1000;
|
|
963
|
blackall.image_alpha = 1;
|
|
964
|
with (_rotate_vfx)
|
|
965
|
instance_destroy();
|
|
966
|
with (_vfx)
|
|
967
|
instance_destroy();
|
|
968
|
with (_white_vfx)
|
|
969
|
instance_destroy();
|
|
970
|
with (_blue_vfx)
|
|
971
|
instance_destroy();
|
|
972
|
with (_blur_vfx)
|
|
973
|
instance_destroy();
|
|
974
|
});
|
|
975
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (90);
|
|
976
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
977
|
{
|
|
978
|
blackall.image_blend = merge_color(c_white, c_black, 0.75);
|
|
979
|
with (_crt_vfx)
|
|
980
|
visible = 1;
|
|
981
|
_crt_vfx.depth = blackall.depth - 1000;
|
|
982
|
with (obj_event_manager)
|
|
983
|
trigger_event(UnknownEnum.Value_0, UnknownEnum.Value_1);
|
|
984
|
scr_complete_save_filescr_complete_save_file
function scr_complete_save_file()
{
_remfilechoice = global.filechoice;
global.filechoice += 3;
scr_set_ini_value(global.chapter, global.filechoice, "SideB", scr_sideb_active());
scr_save();
global.filechoice = _remfilechoice;
}
function scr_chapter_save_file_exists(arg0)
{
var _exists = false;
for (var i = 0; i < 3; i++)
{
_exists = ossafe_file_exists("filech" + string(arg0) + "_" + string(i));
if (_exists == true)
break;
}
return _exists;
}
function scr_completed_chapter(arg0)
{
return ossafe_file_exists("filech" + string(arg0) + "_" + string(global.filechoice + 3));
}
function scr_completed_chapter_any_slot(arg0)
{
var _file_exists = false;
for (var i = 0; i < 3; i++)
{
if (ossafe_file_exists("filech" + string(arg0) + "_" + string(i + 3)))
{
_file_exists = true;
break;
}
}
return _file_exists;
}
function scr_get_secret_boss_result(arg0)
{
var fought_flag = scr_get_secret_boss_flag(arg0);
return global.flag[fought_flag];
}
function scr_defeated_secret_boss_any_slot(arg0)
{
var _fought_boss = scr_fought_secret_boss_any_slot(arg0);
var _defeated = false;
if (_fought_boss)
{
for (var i = 0; i < 3; i++)
{
var _slot = i;
var _result = scr_get_ura_value(arg0, _slot);
if (_result == 1 || _result == 3)
{
_defeated = true;
break;
}
}
}
return _defeated;
}
function scr_spared_secret_boss_any_slot(arg0)
{
var _fought_boss = scr_fought_secret_boss_any_slot(arg0);
var _spared = false;
if (_fought_boss)
{
for (var i = 0; i < 3; i++)
{
var _slot = i;
var _result = scr_get_ura_value(arg0, _slot);
if (_result >= 2)
{
_spared = true;
break;
}
}
}
return _spared;
}
function scr_fought_secret_boss(arg0)
{
return scr_get_secret_boss_result(arg0) > 0;
}
function scr_fought_secret_boss_any_slot(arg0)
{
var _fought = false;
for (var i = 0; i < 3; i++)
{
var _slot = i;
var _result = scr_get_ura_value(arg0, _slot);
if (_result > 0)
{
_fought = true;
... ();
|
|
985
|
});
|
|
986
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (900);
|
|
987
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
988
|
{
|
|
989
|
game_restart_true();
|
|
990
|
});
|
|
991
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (900000000);
|
|
992
|
c_actortokrisc_actortokris
function c_actortokris()
{
c_cmd("actortokris", 0, 0, 0, 0);
} ();
|
|
993
|
c_actortocaterpillarc_actortocaterpillar
function c_actortocaterpillar()
{
c_cmd("actortocaterpillar", 0, 0, 0, 0);
}
function c_actortocaterpillarstill()
{
c_cmd("actortocaterpillarstill", 0, 0, 0, 0);
} ();
|
|
994
|
c_terminatekillactorsc_terminatekillactors
function c_terminatekillactors()
{
c_cmd("terminatekillactors", 0, 0, 0, 0);
} ();
|
|
995
|
}
|
|
996
|
if (con == 60 && customcon == 1)
|
|
997
|
{
|
|
998
|
con = -1;
|
|
999
|
customcon = 0;
|
|
1000
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
1001
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (id, "_whiteout_finished", "=", true);
|
|
1002
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
1003
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
1004
|
{
|
|
1005
|
with (obj_choicer_neo)
|
|
1006
|
instance_destroy();
|
|
1007
|
with (obj_writer)
|
|
1008
|
scr_doomscr_doom
function scr_doom(arg0, arg1)
{
var _doom = instance_create_depth(0, 0, 0, obj_doom);
with (_doom)
{
alarm[0]
target = arg0;
}
return _doom;
} (id, 1);
|
|
1009
|
k_d(1);
|
|
1010
|
blackall.depth = _white_vfx.depth - 1000;
|
|
1011
|
with (blackall)
|
|
1012
|
scr_lerpvarscr_lerpvar
function scr_lerpvar()
{
var _id = self;
if (!is_struct(self))
_id = id;
if (argument_count < 6)
___lerpvar = scr_lerpvar_instance(_id, argument[0], argument[1], argument[2], argument[3]);
else
___lerpvar = scr_lerpvar_instance(_id, argument[0], argument[1], argument[2], argument[3], argument[4], argument[5]);
return ___lerpvar;
}
function scr_lerpcol()
{
if (argument_count < 6)
___lerpvar = scr_lerpcol_instance(id, argument[0], argument[1], argument[2], argument[3]);
else
___lerpvar = scr_lerpcol_instance(id, argument[0], argument[1], argument[2], argument[3], argument[4], argument[5]);
return ___lerpvar;
} ("image_alpha", 0, 1, 60);
|
|
1013
|
with (_rotate_vfx)
|
|
1014
|
instance_destroy();
|
|
1015
|
with (_vfx)
|
|
1016
|
instance_destroy();
|
|
1017
|
with (_blue_vfx)
|
|
1018
|
instance_destroy();
|
|
1019
|
with (_blur_vfx)
|
|
1020
|
instance_destroy();
|
|
1021
|
});
|
|
1022
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (90);
|
|
1023
|
c_customfuncc_customfunc
function c_customfunc(arg0, arg1 = -1)
{
if (instance_exists(obj_cutscene_master))
{
with (obj_cutscene_master)
array_push(customfuncs, arg0);
c_cmd("customfunc", arg1, 0, 0, 0);
}
} (function()
|
|
1024
|
{
|
|
1025
|
scr_flag_setscr_flag_set
function scr_flag_set(arg0, arg1)
{
global.flag[arg0] = arg1;
}
function scr_flag_set_ext(arg0, arg1, arg2, arg3 = 1)
{
if (arg1 < 0)
scr_flag_set(arg0, arg2);
else
global.flag[arg0] = scr_set_bitmask_value(global.flag[arg0], arg1, arg2, arg3);
} (1743, 1);
|
|
1026
|
scr_flag_setscr_flag_set
function scr_flag_set(arg0, arg1)
{
global.flag[arg0] = arg1;
}
function scr_flag_set_ext(arg0, arg1, arg2, arg3 = 1)
{
if (arg1 < 0)
scr_flag_set(arg0, arg2);
else
global.flag[arg0] = scr_set_bitmask_value(global.flag[arg0], arg1, arg2, arg3);
} (916, 1);
|
|
1027
|
scr_litemremovescr_litemremove
function scr_litemremove(arg0)
{
for (i = 0; i < 8; i += 1)
{
if (global.litem[i] == arg0)
script_execute(scr_litemshift, i, 0);
}
} (20);
|
|
1028
|
with (_white_vfx)
|
|
1029
|
instance_destroy();
|
|
1030
|
blackall.depth = 4900;
|
|
1031
|
snd_free_all();
|
|
1032
|
scr_speakerscr_speaker
function scr_speaker(arg0)
{
_speaker = arg0;
global.typer = 5;
if (global.darkzone == 1)
global.typer = 6;
if (global.fighting == 1)
global.typer = 4;
global.fc = 0;
global.fe = 0;
if (_speaker == "silent" && global.darkzone == 0)
global.typer = 2;
if (_speaker == "silent" && global.darkzone == 1)
global.typer = 36;
if (_speaker == "balloon" || _speaker == "enemy")
global.typer = 50;
if (_speaker == "sans")
{
global.typer = 14;
global.fc = 6;
}
if (_speaker == "undyne" || _speaker == "und")
{
global.typer = 17;
global.fc = 9;
}
if (_speaker == "temmie" || _speaker == "tem")
global.typer = 21;
if (_speaker == "jevil")
global.typer = 35;
if (_speaker == "catti")
global.fc = 13;
if (_speaker == "jockington" || _speaker == "joc")
global.fc = 14;
if (_speaker == "catty" || _speaker == "caddy")
global.fc = 16;
if (_speaker == "bratty" || _speaker == "bra")
global.fc = 17;
if (_speaker == "rouxls" || _speaker == "rou")
global.fc = 18;
if (_speaker == "burgerpants" || _speaker == "bur")
global.fc = 19;
if (_speaker == "spamton")
{
if (global.fighting == 0)
global.typer = 66;
else
global.typer = 68;
}
if (_speaker == "sneo")
global.typer = 67;
if (_speaker == "susie" || _speaker == "sus")
{
global.fc = 1;
global.typer = 10;
if (global.darkzone == 1)
{
global.typer = 30;
if (global.fighting == 1)
global.typer = 47;
}
}
if (_speaker == "ralsei" || _speaker == "ral")
{
global.fc = 2;
global.typer = 31;
if (global.fighting == 1)
global.typer = 45;
if (global.flag[30 ralsei_hat_state] == 1)
global.typer = 6;
}
if (_speaker == "noelle" || _speaker == "noe")
{
global.fc = 3;
if (global.darkzone == 0)
global.typer = 12;
else
global.typer = 56;
if (global.fighting == 1)
global.typer = 59;
}
if (_speaker == "toriel" || _speaker == "tor")
{
global.fc = 4;
global.typer = 7;
}
if (_speaker == "asgore" || _speaker == "asg")
{
global.fc = 10;
global.typer = 18;
if (global.darkzone == 1)
global.typer = 89;
}
if (_speaker == "king" || _speaker == "kin")
{
global.fc = 20;
global.typer = 33;
if (global.chapter == 1)
{
if (global.plot < 235)
global.typer = 36;
... ("noelle");
|
|
1033
|
global.fc = 0;
|
|
1034
|
global.fe = 0;
|
|
1035
|
msgsetloc(0, * I was wrong.Wait for input"* I was wrong./", "obj_ch5_LW20W_slash_Step_0_gml_1139_0" );
|
|
1036
|
msgnextloc(* The dream never happened.Wait for input"* The dream never happened./", "obj_ch5_LW20W_slash_Step_0_gml_1140_0" );
|
|
1037
|
msgnextloc(* Kris hadn't changed.Wait for input"* Kris hadn't changed./", "obj_ch5_LW20W_slash_Step_0_gml_1141_0" );
|
|
1038
|
msgnextloc(* I hadn't changed.Wait for input"* I hadn't changed./", "obj_ch5_LW20W_slash_Step_0_gml_1142_0" );
|
|
1039
|
msgnextloc(* I had simply&Delay 22amp;gotten carried away.Wait for inputClose Message"* I had simply^2&gotten carried away./%", "obj_ch5_LW20W_slash_Step_0_gml_1143_0" );
|
|
1040
|
global.typer = 63;
|
|
1041
|
var d = instance_create(camerax() + 40, cameray() + 170, obj_writer);
|
|
1042
|
with (d)
|
|
1043
|
{
|
|
1044
|
skippable = 0;
|
|
1045
|
preventcskip = true;
|
|
1046
|
}
|
|
1047
|
});
|
|
1048
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
1049
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "con", 70);
|
|
1050
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
1051
|
}
|
|
1052
|
if (con == 70 && !i_ex(obj_writer) && customcon == 1)
|
|
1053
|
{
|
|
1054
|
global.interact = 0;
|
|
1055
|
global.facing = 0;
|
|
1056
|
global.plot = 189;
|
|
1057
|
room_restart();
|
|
1058
|
con = -1;
|
|
1059
|
}
|
|
1060
|
if (handoff == 1)
|
|
1061
|
{
|
|
1062
|
handoff = 2;
|
|
1063
|
con = -99;
|
|
1064
|
instance_create(0, 0, obj_ch5_LW20W_handoff);
|
|
1065
|
c_terminatekillactorsc_terminatekillactors
function c_terminatekillactors()
{
c_cmd("terminatekillactors", 0, 0, 0, 0);
} ();
|
|
1066
|
}
|
|
1067
|
|
|
1068
|
enum UnknownEnum
|
|
1069
|
{
|
|
1070
|
Value_0,
|
|
1071
|
Value_1
|
|
1072
|
}
|