|
1
|
wobblex = 0;
|
|
2
|
if (wobble > 0)
|
|
3
|
{
|
|
4
|
wobblex = sin(get_timer() / 250000) * 2 * wobble;
|
|
5
|
layer_x(glasslayers[11], wobblex);
|
|
6
|
layer_x(glasslayers[10], wobblex);
|
|
7
|
layer_x(glasslayers[9], wobblex);
|
|
8
|
jackenstein.x = 204 + wobblex;
|
|
9
|
}
|
|
10
|
var _rowstoshake = array_length(glassshakerows);
|
|
11
|
if (_rowstoshake > 0)
|
|
12
|
{
|
|
13
|
for (var i = 0; i < array_length(glassshakerows); i++)
|
|
14
|
{
|
|
15
|
if (glassshakerows[i][1] > 0.1)
|
|
16
|
{
|
|
17
|
var _shake = sin(get_timer() / 25000) * glassshakerows[i][1];
|
|
18
|
if (glassshakerows[i][0] == 11 && wobblex > 0)
|
|
19
|
{
|
|
20
|
_shake += wobblex;
|
|
21
|
jackenstein.x = 204 + wobblex + _shake;
|
|
22
|
}
|
|
23
|
layer_x(glasslayers[glassshakerows[i][0]], _shake);
|
|
24
|
glassshakerows[i][1] = max(0, lerp(glassshakerows[i][1], 0, 0.1));
|
|
25
|
}
|
|
26
|
else
|
|
27
|
{
|
|
28
|
array_delete(glassshakerows, i, 1);
|
|
29
|
}
|
|
30
|
}
|
|
31
|
}
|
|
32
|
if (!init)
|
|
33
|
{
|
|
34
|
init = 1;
|
|
35
|
scr_populatecharsscr_populatechars
function scr_populatechars()
{
if (!variable_instance_exists(id, "kris"))
kris = 0;
if (!variable_instance_exists(id, "ralsei"))
ralsei = 0;
if (!variable_instance_exists(id, "susie"))
susie = 0;
if (!variable_instance_exists(id, "noelle"))
noelle = 0;
if (kris == 0)
{
with (obj_mainchara)
other.kris = id;
}
if (susie == 0)
{
with (obj_caterpillarchara)
{
if (name == "susie")
other.susie = id;
}
}
if (ralsei == 0)
{
with (obj_caterpillarchara)
{
if (name == "ralsei")
other.ralsei = id;
}
}
if (noelle == 0)
{
with (obj_caterpillarchara)
{
if (name == "noelle")
other.noelle = id;
}
}
} ();
|
|
36
|
}
|
|
37
|
if (con < 0)
|
|
38
|
exit;
|
|
39
|
if (con == 0 && global.interact == 0 && obj_mainchara.x >= 160 && obj_mainchara.y < 2350)
|
|
40
|
{
|
|
41
|
scr_flag_setscr_flag_set
function scr_flag_set(arg0, arg1)
{
global.flag[arg0] = arg1;
if (scr_debug())
show_debug_message("*** flag [" + string(arg0) + "] updated: " + string(arg1) + " | " + scr_flag_name_get(arg0));
}
function scr_setflag(arg0, arg1)
{
scr_flag_set(arg0, arg1);
} (7, 1);
|
|
42
|
global.interact = 1;
|
|
43
|
con = 2;
|
|
44
|
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;
} ();
|
|
45
|
scr_maincharacters_actorsscr_maincharacters_actors
function scr_maincharacters_actors()
{
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;
}
}
}
} ();
|
|
46
|
var kr_x_pos = 301;
|
|
47
|
var kr_y_pos = 2270;
|
|
48
|
var kr_walktime = round(point_distance(kr_actor.x, kr_actor.y, kr_x_pos, kr_y_pos) / 6);
|
|
49
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
50
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (kr_x_pos, kr_y_pos, kr_walktime);
|
|
51
|
c_delayfacingc_delayfacing
function c_delayfacing(arg0, arg1)
{
c_cmd_x("delaycmd", arg0, "facing", arg1, 0, 0, 0);
} (kr_walktime + 1, "u");
|
|
52
|
var su_x_pos = 243;
|
|
53
|
var su_y_pos = 2278;
|
|
54
|
var su_walktime = round(point_distance(su_actor.x, su_actor.y, su_x_pos, su_y_pos) / 6);
|
|
55
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
56
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (su_x_pos, su_y_pos, su_walktime);
|
|
57
|
c_delayfacingc_delayfacing
function c_delayfacing(arg0, arg1)
{
c_cmd_x("delaycmd", arg0, "facing", arg1, 0, 0, 0);
} (su_walktime + 1, "u");
|
|
58
|
var ra_x_pos = 347;
|
|
59
|
var ra_y_pos = 2283;
|
|
60
|
var ra_walktime = round(point_distance(ra_actor.x, ra_actor.y, ra_x_pos, ra_y_pos) / 6);
|
|
61
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
62
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (ra_x_pos, ra_y_pos, ra_walktime);
|
|
63
|
c_delayfacingc_delayfacing
function c_delayfacing(arg0, arg1)
{
c_cmd_x("delaycmd", arg0, "facing", arg1, 0, 0, 0);
} (ra_walktime + 1, "u");
|
|
64
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
65
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (camerax(), 2000, 20);
|
|
66
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
67
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("ralsei");
|
|
68
|
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 5* The fountain...Wait for input"\\E5* The fountain.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_106_0" );
|
|
69
|
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 E* I can feel its presence just past this wall...Wait for inputClose Message"\\EE* I can feel its presence just past this wall.../%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_107_0" );
|
|
70
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
71
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller, "target_y_pos", 2120);
|
|
72
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller_b, "target_y_pos", 2180);
|
|
73
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller_c, "target_y_pos", 2240);
|
|
74
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller, "is_active", true);
|
|
75
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (10);
|
|
76
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller_b, "is_active", true);
|
|
77
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (10);
|
|
78
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller_c, "is_active", true);
|
|
79
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (sword_controller, "destroyed", "=", true);
|
|
80
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (glass_row_crack, 3);
|
|
81
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (glass_row_shake, [3, 6]);
|
|
82
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (sword_controller_b, "destroyed", "=", true);
|
|
83
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (glass_row_shake, [3, 6]);
|
|
84
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (sword_controller_c, "destroyed", "=", true);
|
|
85
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (glass_row_shatter, 3);
|
|
86
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (glass_row_shake, [2, 3]);
|
|
87
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (glass_row_shake, [4, 3]);
|
|
88
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
89
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_shocked_behind);
|
|
90
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
91
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_shocked_behind);
|
|
92
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
93
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("susie");
|
|
94
|
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* H...Delay 11 hey!Delay 11 W-wait!!!Wait for input"\\Ed* H..^1. hey^1! W-wait!!!/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_143_0" );
|
|
95
|
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* The hell are we going to climb up there now...?Wait for inputClose Message"\\Eb* The hell are we going to climb up there now...?/%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_144_0" );
|
|
96
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
97
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
98
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
99
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("u");
|
|
100
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
101
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("u");
|
|
102
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
103
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
104
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
105
|
c_emotec_emote
function c_emote()
{
if (argument_count == 0)
c_cmd("emote", "!", 30, 0, 0);
else if (argument_count == 1)
c_cmd("emote", argument[0], 30, 0, 0);
else if (argument_count == 2)
c_cmd("emote", argument[0], argument[1], 0, 0);
else if (argument_count == 3)
c_cmd("emote", argument[0], argument[1], argument[2], 0);
else if (argument_count == 4)
c_cmd("emote", argument[0], argument[1], argument[2], argument[3]);
} ("!", 30);
|
|
106
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
107
|
c_emotec_emote
function c_emote()
{
if (argument_count == 0)
c_cmd("emote", "!", 30, 0, 0);
else if (argument_count == 1)
c_cmd("emote", argument[0], 30, 0, 0);
else if (argument_count == 2)
c_cmd("emote", argument[0], argument[1], 0, 0);
else if (argument_count == 3)
c_cmd("emote", argument[0], argument[1], argument[2], 0);
else if (argument_count == 4)
c_cmd("emote", argument[0], argument[1], argument[2], argument[3]);
} ("!", 30);
|
|
108
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("jackenstein");
|
|
109
|
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, * FRAINDS NEED HELP...?Wait for inputClose Message"* FRAINDS NEED HELP...?/%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_165_0" );
|
|
110
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
111
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
112
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
113
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
114
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("d");
|
|
115
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
116
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("d");
|
|
117
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
118
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("d");
|
|
119
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "y", 2600);
|
|
120
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "visible", 1);
|
|
121
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_speed", 0.2);
|
|
122
|
c_var_lerp_to_instance(jackenstein, "y", 2360, 30);
|
|
123
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
124
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_index", 0);
|
|
125
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_speed", 0);
|
|
126
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
127
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_surprised_down_subtle);
|
|
128
|
c_msgsidec_msgside
function c_msgside(arg0)
{
c_cmd("msgside", arg0, 0, 0, 0);
} ("top");
|
|
129
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("ralsei");
|
|
130
|
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 C* Mr. Jack,Delay 11 what are you doing here? It's dangerous...Wait for input"\\EC* Mr. Jack^1, what are you doing here? It's dangerous.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_200_0" );
|
|
131
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("susie", "Z");
|
|
132
|
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* Yeah,Delay 11 get back to the study,Delay 11 dude.Wait for inputClose Message"\\EZ* Yeah^1, get back to the study^1, dude./%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_202_0" );
|
|
133
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
134
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_speed", 0.2);
|
|
135
|
c_var_lerp_to_instance(jackenstein, "y", 2320, 10);
|
|
136
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (11);
|
|
137
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_index", 0);
|
|
138
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_speed", 0);
|
|
139
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("jackenstein");
|
|
140
|
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, * JACK FEAR NO DANGER!!Wait for input"* JACK FEAR NO DANGER!!/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_212_0" );
|
|
141
|
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);
} (* FRAINDS HELP JACK CLAIMB OUT OF PIT OF BAD FEELINGS AND LONELY NESTSWait for input"* FRAINDS HELP JACK CLAIMB OUT OF PIT OF BAD FEELINGS AND LONELY NESTS/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_213_0" );
|
|
142
|
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);
} (* JACK WILL HELP FRAINDS CLAIMB ANYTHING NOW!!Wait for input"* JACK WILL HELP FRAINDS CLAIMB ANYTHING NOW!!/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_214_0" );
|
|
143
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("susie", "D");
|
|
144
|
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* ...Delay 11 Not like we have another choice anyway.Wait for input"\\ED* ..^1. Not like we have another choice anyway./", "obj_dw_churchc_finalclimb_slash_Step_0_gml_216_0" );
|
|
145
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("jackenstein", 0);
|
|
146
|
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);
} (* OKI TOKI ON MY SHOULDERS PLEASE :-)Wait for inputClose Message"* OKI TOKI ON MY SHOULDERS PLEASE :-)/%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_218_0" );
|
|
147
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
148
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (4);
|
|
149
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
150
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("r");
|
|
151
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
152
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("l");
|
|
153
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
154
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_speed", 0.2);
|
|
155
|
c_var_lerp_to_instance(jackenstein, "y", 2280, 10);
|
|
156
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (11);
|
|
157
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_index", 0);
|
|
158
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_speed", 0);
|
|
159
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
160
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (camerax(), 2020, 20);
|
|
161
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
162
|
}
|
|
163
|
if (con == 2 && customcon == 1 && !d_ex())
|
|
164
|
{
|
|
165
|
con = 3;
|
|
166
|
alarm[0] = 21; gml_Object_obj_dw_churchc_finalclimb_Alarm_0.gml
con++;
|
|
167
|
snd_play(snd_wing);
|
|
168
|
with (jackenstein)
|
|
169
|
{
|
|
170
|
sprite_index = spr_npc_jackenstein_climb;
|
|
171
|
scr_jump_to_pointscr_jump_to_point
function scr_jump_to_point(arg0, arg1, arg2, arg3, arg4 = 0)
{
var ___jump = scr_jump_to_point_sprite(arg0, arg1, arg2, arg3, 0, 0);
with (___jump)
{
trackalpha = arg4;
trackblend = arg4;
trackindex = arg4;
tracksprite = arg4;
trackangle = arg4;
}
return ___jump;
} (x, 1980, 32, 20);
|
|
172
|
}
|
|
173
|
}
|
|
174
|
if (con == 4 && customcon == 1)
|
|
175
|
{
|
|
176
|
con = 5;
|
|
177
|
customcon = 0;
|
|
178
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
179
|
c_snd_play(snd_impact);
|
|
180
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (glass_row_crack, 4);
|
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (glass_row_shake, [4, 3]);
|
|
182
|
c_shakec_shake
function c_shake()
{
c_cmd("shake", 0, 0, 0, 0);
} ();
|
|
183
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
184
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
185
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
186
|
c_depthc_depth
function c_depth(arg0)
{
c_cmd("depth", arg0, 0, 0, 0);
} (jackenstein.depth - 10);
|
|
187
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (kr_actor.x, 2205, 30);
|
|
188
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
189
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
190
|
c_depthc_depth
function c_depth(arg0)
{
c_cmd("depth", arg0, 0, 0, 0);
} (jackenstein.depth - 11);
|
|
191
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (su_actor.x, 2204, 30);
|
|
192
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
193
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
194
|
c_depthc_depth
function c_depth(arg0)
{
c_cmd("depth", arg0, 0, 0, 0);
} (jackenstein.depth - 12);
|
|
195
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (ra_actor.x, 2207, 30);
|
|
196
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
197
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (1);
|
|
198
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
199
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
200
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_kris_climb_new);
|
|
201
|
c_snd_play(snd_noise);
|
|
202
|
c_addxyc_addxy
function c_addxy(arg0, arg1)
{
c_cmd("addxy", arg0, arg1, 0, 0);
} (18, 36);
|
|
203
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (2);
|
|
204
|
var _krclimb = 40;
|
|
205
|
c_lerp_var_instance(kr_actor, "image_index", 0, 8, _krclimb);
|
|
206
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (jackenstein.x + 120, jackenstein.y + 120, _krclimb);
|
|
207
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (_krclimb, "imagespeed", 0);
|
|
208
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (_krclimb, "imageindex", 0);
|
|
209
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
210
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
211
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
212
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_climb);
|
|
213
|
c_snd_play(snd_noise);
|
|
214
|
c_addxyc_addxy
function c_addxy(arg0, arg1)
{
c_cmd("addxy", arg0, arg1, 0, 0);
} (0, -12);
|
|
215
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (2);
|
|
216
|
var _climb1 = 20;
|
|
217
|
var _climb2 = 7;
|
|
218
|
var _climb3 = 15;
|
|
219
|
c_lerp_var_instance(su_actor, "image_index", 0, 10, _climb1 + _climb2 + _climb3);
|
|
220
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (278, 2128, _climb1);
|
|
221
|
c_delaywalkdirectc_delaywalkdirect
function c_delaywalkdirect(arg0, arg1, arg2, arg3)
{
c_cmd_x("delaycmd", arg0, "walkdirect", arg1, arg2, arg3, 0);
} (_climb1, 278, 2110, _climb2);
|
|
222
|
c_delaywalkdirectc_delaywalkdirect
function c_delaywalkdirect(arg0, arg1, arg2, arg3)
{
c_cmd_x("delaycmd", arg0, "walkdirect", arg1, arg2, arg3, 0);
} (_climb1 + _climb2, jackenstein.x + 50, jackenstein.y + 80, _climb3);
|
|
223
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (_climb1 + _climb2 + _climb3, "imagespeed", 0);
|
|
224
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (_climb1 + _climb2 + _climb3, "imageindex", 2);
|
|
225
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (10);
|
|
226
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
227
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
228
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_climb);
|
|
229
|
c_snd_play(snd_noise);
|
|
230
|
c_addxyc_addxy
function c_addxy(arg0, arg1)
{
c_cmd("addxy", arg0, arg1, 0, 0);
} (-2, -10);
|
|
231
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (2);
|
|
232
|
var _raclimb1 = 15;
|
|
233
|
var _raclimb2 = 25;
|
|
234
|
c_lerp_var_instance(ra_actor, "image_index", 0, 10, _raclimb1 + _raclimb2);
|
|
235
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (332, 2132, _raclimb1);
|
|
236
|
c_delaywalkdirectc_delaywalkdirect
function c_delaywalkdirect(arg0, arg1, arg2, arg3)
{
c_cmd_x("delaycmd", arg0, "walkdirect", arg1, arg2, arg3, 0);
} (_raclimb1, jackenstein.x + 138, jackenstein.y + 80, _raclimb2);
|
|
237
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (_raclimb1 + _raclimb2, "imagespeed", 0);
|
|
238
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (_raclimb1 + _raclimb2, "imageindex", 2);
|
|
239
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
240
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
241
|
}
|
|
242
|
if (con == 5 && customcon == 1 && !d_ex())
|
|
243
|
{
|
|
244
|
if (global.interact == 1)
|
|
245
|
{
|
|
246
|
global.interact = 0;
|
|
247
|
camera_y_pos = cameray();
|
|
248
|
with (kr_actor)
|
|
249
|
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);
return _stickto;
} (obj_ch4_DCC00_jackenstein, -10);
|
|
250
|
with (su_actor)
|
|
251
|
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);
return _stickto;
} (obj_ch4_DCC00_jackenstein, -11);
|
|
252
|
with (ra_actor)
|
|
253
|
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);
return _stickto;
} (obj_ch4_DCC00_jackenstein, -11);
|
|
254
|
with (obj_actor)
|
|
255
|
visible = 0;
|
|
256
|
with (obj_mainchara)
|
|
257
|
freeze = 1;
|
|
258
|
with (jackenstein)
|
|
259
|
{
|
|
260
|
start_climbing();
|
|
261
|
sprite_index = spr_npc_jackenstein_climb_party;
|
|
262
|
}
|
|
263
|
}
|
|
264
|
else
|
|
265
|
{
|
|
266
|
var finish = false;
|
|
267
|
camera_y_pos = scr_movetowardsscr_movetowards
function scr_movetowards(arg0, arg1, arg2)
{
if (arg0 == arg1)
return arg0;
else if (arg0 > arg1)
return max(arg0 - arg2, arg1);
else
return min(arg0 + arg2, arg1);
}
function scr_obj_movetowards_obj(arg0, arg1, arg2 = 0, arg3 = 0)
{
scr_obj_movetowards_point(arg0.x + arg2, arg0.y + arg3, arg1);
}
function scr_obj_movetowards_point(arg0, arg1, arg2)
{
var _distance = point_distance(x, y, arg0, arg1);
if (arg2 >= _distance)
{
x = arg0;
y = arg1;
}
else
{
var _direction = point_direction(x, y, arg0, arg1);
x += lengthdir_x(arg2, _direction);
y += lengthdir_y(arg2, _direction);
}
} (camera_y_pos, jackenstein.y - 160, 12);
|
|
268
|
camera_set_view_pos(view_get_camera(0), camerax(), camera_y_pos);
|
|
269
|
if (jackenstein.y <= 1200 && (floor(jackenstein.image_index) == 0 || floor(jackenstein.image_index) == 2))
|
|
270
|
{
|
|
271
|
finish = true;
|
|
272
|
with (jackenstein)
|
|
273
|
stop_climbing();
|
|
274
|
}
|
|
275
|
if (finish)
|
|
276
|
{
|
|
277
|
global.interact = 1;
|
|
278
|
con = 8;
|
|
279
|
}
|
|
280
|
}
|
|
281
|
}
|
|
282
|
if (con == 8 && customcon == 1 && !d_ex())
|
|
283
|
{
|
|
284
|
con = 9;
|
|
285
|
customcon = 0;
|
|
286
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
287
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
288
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("jackenstein");
|
|
289
|
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, * WALL BECOMES THIN HERE...Delay 11 LET'S BE CAREFUL...Wait for inputClose Message"* WALL BECOMES THIN HERE..^1. LET'S BE CAREFUL.../%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_437_0" );
|
|
290
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
291
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
292
|
}
|
|
293
|
if (con == 9 && customcon == 1 && !d_ex())
|
|
294
|
{
|
|
295
|
if (global.interact == 1)
|
|
296
|
{
|
|
297
|
global.interact = 0;
|
|
298
|
camera_y_pos = cameray();
|
|
299
|
with (jackenstein)
|
|
300
|
{
|
|
301
|
climb_speed = 0.5;
|
|
302
|
start_climbing();
|
|
303
|
}
|
|
304
|
}
|
|
305
|
else
|
|
306
|
{
|
|
307
|
var finish = false;
|
|
308
|
camera_y_pos = scr_movetowardsscr_movetowards
function scr_movetowards(arg0, arg1, arg2)
{
if (arg0 == arg1)
return arg0;
else if (arg0 > arg1)
return max(arg0 - arg2, arg1);
else
return min(arg0 + arg2, arg1);
}
function scr_obj_movetowards_obj(arg0, arg1, arg2 = 0, arg3 = 0)
{
scr_obj_movetowards_point(arg0.x + arg2, arg0.y + arg3, arg1);
}
function scr_obj_movetowards_point(arg0, arg1, arg2)
{
var _distance = point_distance(x, y, arg0, arg1);
if (arg2 >= _distance)
{
x = arg0;
y = arg1;
}
else
{
var _direction = point_direction(x, y, arg0, arg1);
x += lengthdir_x(arg2, _direction);
y += lengthdir_y(arg2, _direction);
}
} (camera_y_pos, jackenstein.y - 120, 12);
|
|
309
|
camera_set_view_pos(view_get_camera(0), camerax(), camera_y_pos);
|
|
310
|
if (jackenstein.y <= 740)
|
|
311
|
{
|
|
312
|
jackenstein.y = 740;
|
|
313
|
sword_controller.target_y_pos = glassheights[12] + 80;
|
|
314
|
sword_controller.is_active = true;
|
|
315
|
with (jackenstein)
|
|
316
|
stop_climbing();
|
|
317
|
}
|
|
318
|
if (sword_controller.destroyed)
|
|
319
|
{
|
|
320
|
finish = true;
|
|
321
|
with (obj_actor)
|
|
322
|
visible = 1;
|
|
323
|
glass_row_shake([12, 10]);
|
|
324
|
glass_row_shake([11, 5]);
|
|
325
|
glass_row_shake([10, 3]);
|
|
326
|
glass_row_crack(12);
|
|
327
|
scr_lerp_var_instance(id, "wobble", 0, 1, 30);
|
|
328
|
with (jackenstein)
|
|
329
|
{
|
|
330
|
sprite_index = spr_npc_jackenstein_climb;
|
|
331
|
image_index = 0;
|
|
332
|
stop_climbing();
|
|
333
|
}
|
|
334
|
}
|
|
335
|
if (finish)
|
|
336
|
{
|
|
337
|
global.interact = 1;
|
|
338
|
con = 10;
|
|
339
|
}
|
|
340
|
}
|
|
341
|
}
|
|
342
|
if (con == 10 && customcon == 1 && !d_ex())
|
|
343
|
{
|
|
344
|
con = recruit_version ? 19 : 11;
|
|
345
|
alarm[0] = 30; gml_Object_obj_dw_churchc_finalclimb_Alarm_0.gml
con++;
|
|
346
|
snd_play(snd_impact);
|
|
347
|
snd_play(snd_wing);
|
|
348
|
with (jackenstein)
|
|
349
|
start_slipping();
|
|
350
|
scr_shakescreenscr_shakescreen
function scr_shakescreen(arg0 = 4, arg1 = 4)
{
var shaker = instance_create(x, y, obj_shake);
if (i_ex(shaker))
{
shaker.shakex = arg0;
shaker.shakey = arg1;
}
} ();
|
|
351
|
}
|
|
352
|
if ((con == 12 && customcon == 1 && !d_ex()) || scr_cutscene_loadedscr_cutscene_loaded
function scr_cutscene_loaded()
{
var __loadedState = 0;
if (instance_exists(obj_cutscene_master))
{
if (obj_cutscene_master.loadedState == 1)
__loadedState = 1;
}
return __loadedState;
} ())
|
|
353
|
{
|
|
354
|
con = 13;
|
|
355
|
customcon = 0;
|
|
356
|
kris_down_face = false;
|
|
357
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
358
|
c_mus2c_mus2
function c_mus2(arg0, arg1, arg2)
{
c_cmd("mus", arg0, arg1, arg2, 0);
} ("initloop", "creepychase.ogg", 0);
|
|
359
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (camerax(), cameray() + 80, 30);
|
|
360
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
361
|
var _jacky = jackenstein.y;
|
|
362
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_index", 1);
|
|
363
|
c_lerp_var_instance(jackenstein, "y", _jacky, _jacky - 15, 10);
|
|
364
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (5);
|
|
365
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_index", 2);
|
|
366
|
c_lerp_var_instance(jackenstein, "y", _jacky - 15, _jacky - 38, 5);
|
|
367
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (5);
|
|
368
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (function()
|
|
369
|
{
|
|
370
|
glass_row_shake([11, 7]);
|
|
371
|
snd_play(snd_wing, 1, 1.2);
|
|
372
|
snd_play(snd_glass_crunch, 0.4, 1.2);
|
|
373
|
glass_tile_shatter(glassrows[11][5]);
|
|
374
|
glass_tile_shatter(glassrows[10][3], false);
|
|
375
|
glass_tile_shatter(glassrows[10][0], false);
|
|
376
|
});
|
|
377
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "image_index", 3);
|
|
378
|
c_lerp_var_instance(jackenstein, "y", _jacky - 38, _jacky - 48, 5);
|
|
379
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (5);
|
|
380
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
381
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
382
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
383
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_climb_poses_alt);
|
|
384
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (1);
|
|
385
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
386
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_climb_poses_alt);
|
|
387
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
388
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("susie");
|
|
389
|
c_msgsidec_msgside
function c_msgside(arg0)
{
c_cmd("msgside", arg0, 0, 0, 0);
} ("bottom");
|
|
390
|
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* H-hey!Wait for input"\\EZ* H-hey!/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_582_0" );
|
|
391
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("jackenstein", 0);
|
|
392
|
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);
} (* FRAINDS...Wait for input"* FRAINDS.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_584_0" );
|
|
393
|
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);
} (* IF JACK MOVE...Wait for input"* IF JACK MOVE.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_585_0" );
|
|
394
|
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);
} (* WALL BREAK...Delay 11 EVERYONE FALL DOWN...Wait for input"* WALL BREAK..^1. EVERYONE FALL DOWN.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_586_0" );
|
|
395
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("susie", "c");
|
|
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 c* The hell are we supposed to do,Delay 11 then...Wait for input"\\Ec* The hell are we supposed to do^1, then.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_588_0" );
|
|
397
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("jackenstein", 0);
|
|
398
|
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 CLAIMB OFF JACK...Delay 11 LEAVE JACK HERE...Wait for input"* ..^1. CLAIMB OFF JACK..^1. LEAVE JACK HERE.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_590_0" );
|
|
399
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("susie", "Z");
|
|
400
|
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* What? Hell if we're leaving you behind!Wait for input"\\EZ* What? Hell if we're leaving you behind!/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_592_0" );
|
|
401
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("ralsei", "b");
|
|
402
|
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* Susie...Wait for input"\\Eb* Susie.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_594_0" );
|
|
403
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("susie", "V");
|
|
404
|
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 V* ...Wait for input"\\EV* .../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_596_0" );
|
|
405
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("ralsei", "8");
|
|
406
|
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 8* We...Delay 11 We just have to be realistic.Wait for input"\\E8* We..^1. We just have to be realistic./", "obj_dw_churchc_finalclimb_slash_Step_0_gml_598_0" );
|
|
407
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("susie", "V");
|
|
408
|
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 V* ...Wait for input"\\EV* .../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_600_0" );
|
|
409
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("ralsei", "e");
|
|
410
|
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 e* Let's just...Delay 11 Climb off. Carefully.Wait for inputClose Message"\\Ee* Let's just..^1. Climb off. Carefully./%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_602_0" );
|
|
411
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
412
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
413
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
414
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
415
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
416
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "sprite_index", spr_npc_jackenstein_climb_look_left);
|
|
417
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (3);
|
|
418
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "sprite_index", spr_npc_jackenstein_climb);
|
|
419
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (4);
|
|
420
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "sprite_index", spr_npc_jackenstein_climb_look_down);
|
|
421
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (6);
|
|
422
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "sprite_index", spr_npc_jackenstein_climb_look_left);
|
|
423
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
424
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (1);
|
|
425
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (8);
|
|
426
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "sprite_index", spr_npc_jackenstein_climb);
|
|
427
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (10);
|
|
428
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
429
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
430
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (12);
|
|
431
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
432
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (1);
|
|
433
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (16);
|
|
434
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
435
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
436
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
437
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
438
|
c_stickto_stopc_stickto_stop
function c_stickto_stop()
{
c_cmd("stick", "off", 0, 0, 0);
} ();
|
|
439
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
440
|
c_stickto_stopc_stickto_stop
function c_stickto_stop()
{
c_cmd("stick", "off", 0, 0, 0);
} ();
|
|
441
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
442
|
c_stickto_stopc_stickto_stop
function c_stickto_stop()
{
c_cmd("stick", "off", 0, 0, 0);
} ();
|
|
443
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (function()
|
|
444
|
{
|
|
445
|
with (obj_actor)
|
|
446
|
visible = 0;
|
|
447
|
ra_wobble_marker = scr_dark_marker_fancyscr_dark_marker_fancy
function scr_dark_marker_fancy(arg0, arg1, arg2)
{
var _thismarker = instance_create(arg0, arg1, obj_marker_fancy);
with (_thismarker)
{
sprite_index = arg2;
image_speed = 0;
image_xscale = 2;
image_yscale = 2;
}
return _thismarker;
} (ra_actor.x, ra_actor.y, ra_actor.sprite_index);
|
|
448
|
su_wobble_marker = scr_dark_marker_fancyscr_dark_marker_fancy
function scr_dark_marker_fancy(arg0, arg1, arg2)
{
var _thismarker = instance_create(arg0, arg1, obj_marker_fancy);
with (_thismarker)
{
sprite_index = arg2;
image_speed = 0;
image_xscale = 2;
image_yscale = 2;
}
return _thismarker;
} (su_actor.x, su_actor.y, su_actor.sprite_index);
|
|
449
|
kr_wobble_marker = scr_dark_marker_fancyscr_dark_marker_fancy
function scr_dark_marker_fancy(arg0, arg1, arg2)
{
var _thismarker = instance_create(arg0, arg1, obj_marker_fancy);
with (_thismarker)
{
sprite_index = arg2;
image_speed = 0;
image_xscale = 2;
image_yscale = 2;
}
return _thismarker;
} (kr_actor.x, kr_actor.y, kr_actor.sprite_index);
|
|
450
|
with (ra_wobble_marker)
|
|
451
|
ref_actor = other.ra_actor;
|
|
452
|
with (su_wobble_marker)
|
|
453
|
ref_actor = other.su_actor;
|
|
454
|
with (kr_wobble_marker)
|
|
455
|
ref_actor = other.kr_actor;
|
|
456
|
with (obj_marker_fancy)
|
|
457
|
{
|
|
458
|
if (variable_instance_exists(id, "ref_actor"))
|
|
459
|
{
|
|
460
|
end_step_func = function()
|
|
461
|
{
|
|
462
|
x = floor(ref_actor.x) + obj_dw_churchc_finalclimb.wobblex;
|
|
463
|
y = ref_actor.y;
|
|
464
|
sprite_index = ref_actor.sprite_index;
|
|
465
|
image_index = ref_actor.image_index;
|
|
466
|
depth = ref_actor.depth - 2;
|
|
467
|
if (ref_actor.visible)
|
|
468
|
visible = false;
|
|
469
|
else
|
|
470
|
visible = true;
|
|
471
|
};
|
|
472
|
}
|
|
473
|
}
|
|
474
|
});
|
|
475
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
476
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
477
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
478
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (1);
|
|
479
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (10);
|
|
480
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_climb);
|
|
481
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
482
|
c_lerp_var_instance(ra_actor, "image_index", 1, 12, 55);
|
|
483
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (363, 859, 15);
|
|
484
|
c_delaywalkdirectc_delaywalkdirect
function c_delaywalkdirect(arg0, arg1, arg2, arg3)
{
c_cmd_x("delaycmd", arg0, "walkdirect", arg1, arg2, arg3, 0);
} (15, 363, 809, 20);
|
|
485
|
c_delaywalkdirectc_delaywalkdirect
function c_delaywalkdirect(arg0, arg1, arg2, arg3)
{
c_cmd_x("delaycmd", arg0, "walkdirect", arg1, arg2, arg3, 0);
} (35, 350, 798, 20);
|
|
486
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (65, "sprite", spr_ralsei_climb_poses);
|
|
487
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (65, "imageindex", 2);
|
|
488
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (80, "sprite", spr_ralsei_climb);
|
|
489
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (80, "imageindex", 0);
|
|
490
|
c_delaycmd4c_delaycmd4
function c_delaycmd4(arg0, arg1, arg2, arg3, arg4, arg5)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (90, "walkdirect", 342, 696, 50, 0);
|
|
491
|
c_delay_customfunc(90, function()
|
|
492
|
{
|
|
493
|
scr_lerp_instance_var(ra_actor, "image_index", 1, 12, 50);
|
|
494
|
});
|
|
495
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
496
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
497
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
498
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_kris_climb_new);
|
|
499
|
c_lerp_var_instance(kr_actor, "image_index", 1, 3, 15);
|
|
500
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (kr_actor.x, 886, 15);
|
|
501
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (15, "sprite", spr_kris_climb_new_charge);
|
|
502
|
c_delay_customfunc(15, function()
|
|
503
|
{
|
|
504
|
scr_lerp_instance_var(kr_actor, "image_index", 0, 2, 15);
|
|
505
|
});
|
|
506
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (30, "sprite", spr_kris_climb_new_jump_up);
|
|
507
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (30, "imageindex", 0);
|
|
508
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (30, "imagespeed", 0.4);
|
|
509
|
c_delaycmd4c_delaycmd4
function c_delaycmd4(arg0, arg1, arg2, arg3, arg4, arg5)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (30, "walkdirect", kr_actor.x, 836, 10, 0);
|
|
510
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (40, "sprite", spr_kris_climb_new);
|
|
511
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (40, "imagespeed", 0);
|
|
512
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (40, "imageindex", 0);
|
|
513
|
c_delaycmd4c_delaycmd4
function c_delaycmd4(arg0, arg1, arg2, arg3, arg4, arg5)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (40, "addxy", 0, -12, 0, 0);
|
|
514
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (40, "soundplay", snd_noise);
|
|
515
|
c_delaycmd4c_delaycmd4
function c_delaycmd4(arg0, arg1, arg2, arg3, arg4, arg5)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (50, "walkdirect", kr_actor.x, 720, 60, 0);
|
|
516
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (50, "imagespeed", 0.2);
|
|
517
|
c_delaycmd4c_delaycmd4
function c_delaycmd4(arg0, arg1, arg2, arg3, arg4, arg5)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (50, "pan", camerax(), cameray() - 100, 60, 0);
|
|
518
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (110, "imagespeed", 0);
|
|
519
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
520
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
521
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
522
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_climb_poses_alt);
|
|
523
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (3);
|
|
524
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (30, "sprite", spr_susie_climb);
|
|
525
|
c_delaycmd4c_delaycmd4
function c_delaycmd4(arg0, arg1, arg2, arg3, arg4, arg5)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (30, "walkdirect", su_actor.x, 835, 20, 0);
|
|
526
|
c_delay_customfunc(30, function()
|
|
527
|
{
|
|
528
|
scr_lerp_instance_var(su_actor, "image_index", 2, 6, 20);
|
|
529
|
});
|
|
530
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (55, "sprite", spr_susie_climb_poses_alt);
|
|
531
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (55, "imageindex", 1);
|
|
532
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (70, "sprite", spr_susie_climb);
|
|
533
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (70, "imageindex", 2);
|
|
534
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (75, "sprite", spr_susie_jump_up);
|
|
535
|
c_delaycmd4c_delaycmd4
function c_delaycmd4(arg0, arg1, arg2, arg3, arg4, arg5)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (75, "walkdirect", su_actor.x, 765, 10, 0);
|
|
536
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (75, "imagespeed", 0.4);
|
|
537
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (85, "soundplay", snd_noise);
|
|
538
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (85, "sprite", spr_susie_climb);
|
|
539
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (85, "imageindex", 3);
|
|
540
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (85, "imagespeed", 0);
|
|
541
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (100, "imagespeed", 0.2);
|
|
542
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (100, "imageindex", 4);
|
|
543
|
c_delaycmd4c_delaycmd4
function c_delaycmd4(arg0, arg1, arg2, arg3, arg4, arg5)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (100, "walkdirect", su_actor.x, 720, 30, 0);
|
|
544
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (130, "imagespeed", 0);
|
|
545
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
546
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (kr_actor, "y", "<", 800);
|
|
547
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (true);
|
|
548
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
549
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (ra_actor, "y", "<", 765);
|
|
550
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (true);
|
|
551
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
552
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (su_actor, "y", "<", 765);
|
|
553
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (true);
|
|
554
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (40);
|
|
555
|
c_msgsidec_msgside
function c_msgside(arg0)
{
c_cmd("msgside", arg0, 0, 0, 0);
} ("top");
|
|
556
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("jackenstein");
|
|
557
|
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, * JACK...Delay 11 STAY HERE...Delay 11 VERY STILL.Wait for input"* JACK..^1. STAY HERE..^1. VERY STILL./", "obj_dw_churchc_finalclimb_slash_Step_0_gml_824_0" );
|
|
558
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("ralsei", "8");
|
|
559
|
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 8* Sorry,Delay 11 Jack...Delay 11 We'll seal the fountain as fast as we can.Wait for inputClose Message"\\E8* Sorry^1, Jack..^1. We'll seal the fountain as fast as we can./%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_826_0" );
|
|
560
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
561
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
562
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
563
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
564
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (kr_actor.x, 664, 60);
|
|
565
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
566
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
567
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (su_actor.x, 664, 60);
|
|
568
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
569
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
570
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (ra_actor.x, 634, 60);
|
|
571
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
572
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller, "target_y_pos", jackenstein.y + 100);
|
|
573
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller, "is_active", true);
|
|
574
|
c_musc_mus
function c_mus(arg0)
{
c_cmd("mus", arg0, 0, 0, 0);
} ("free_all");
|
|
575
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (sword_controller, "destroyed", "=", true);
|
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (function()
|
|
577
|
{
|
|
578
|
with (jackenstein)
|
|
579
|
scr_shakeobj_xscr_shakeobj_x
function scr_shakeobj_x()
{
shakeobj = instance_create(x, y, obj_shakeobj);
shakeobj.target = id;
if (argument_count >= 1)
shakeobj.shakeamt = argument[0];
if (argument_count >= 2)
shakeobj.shakespeed = argument[1];
if (argument_count == 3)
shakeobj.shakespeed = argument[2];
with (shakeobj)
event_user(0);
return shakeobj;
} (20);
|
|
580
|
wobble = 0;
|
|
581
|
layer_x(glasslayers[10], 0);
|
|
582
|
layer_x(glasslayers[11], 0);
|
|
583
|
glass_row_shatter(10);
|
|
584
|
glass_row_shatter(11, false);
|
|
585
|
});
|
|
586
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
587
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
588
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
589
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
590
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
591
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
592
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
593
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
594
|
}
|
|
595
|
if (con == 13 && customcon == 1 && !d_ex())
|
|
596
|
{
|
|
597
|
con = 15;
|
|
598
|
snd_play(snd_wing);
|
|
599
|
with (jackenstein)
|
|
600
|
start_falling();
|
|
601
|
}
|
|
602
|
if (con == 15 && customcon == 1 && !d_ex())
|
|
603
|
{
|
|
604
|
con = 16;
|
|
605
|
customcon = 0;
|
|
606
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
607
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
608
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_climb_poses);
|
|
609
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (1);
|
|
610
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (4);
|
|
611
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
612
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
613
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_climb_poses);
|
|
614
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
615
|
c_msgsidec_msgside
function c_msgside(arg0)
{
c_cmd("msgside", arg0, 0, 0, 0);
} ("bottom");
|
|
616
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("susie");
|
|
617
|
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* JACK!!!Wait for inputClose Message"\\Ed* JACK!!!/%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_909_0" );
|
|
618
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
619
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
620
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (1);
|
|
621
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
622
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("ralsei");
|
|
623
|
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 4* ...Wait for input"\\E4* .../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_919_0" );
|
|
624
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("susie", 31);
|
|
625
|
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 V* Damn it...Wait for input"\\EV* Damn it.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_921_0" );
|
|
626
|
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 U* We...Delay 11 We didn't see him land or anythingWait for input"\\EU* We..^1. We didn't see him land or anything/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_922_0" );
|
|
627
|
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 U* You think there's any chance...Delay 11 He's still okay?Wait for input"\\EU* You think there's any chance..^1. He's still okay?/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_923_0" );
|
|
628
|
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 U* Ralsei,Delay 11 what do you think?Wait for input"\\EU* Ralsei^1, what do you think?/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_924_0" );
|
|
629
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("ralsei", "e");
|
|
630
|
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 e* I...Wait for input"\\Ee* I.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_926_0" );
|
|
631
|
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 f* ...Wait for input"\\Ef* .../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_927_0" );
|
|
632
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("susie", 31);
|
|
633
|
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 V* ThatWait for input"\\EV* That/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_929_0" );
|
|
634
|
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 V* Goddamn knight...Wait for input"\\EV* Goddamn knight.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_930_0" );
|
|
635
|
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* That GODDAMN KNIGHT!!!Wait for inputClose Message"\\EI* That GODDAMN KNIGHT!!!/%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_931_0" );
|
|
636
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
637
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
638
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
639
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (1);
|
|
640
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (3);
|
|
641
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
642
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
643
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (4);
|
|
644
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
645
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (3);
|
|
646
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (5);
|
|
647
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
648
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
649
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
650
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
651
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (7);
|
|
652
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
653
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (1);
|
|
654
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (10);
|
|
655
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
656
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
657
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (12);
|
|
658
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
659
|
c_shakeobjc_shakeobj
function c_shakeobj()
{
c_cmd("shakeobj", 0, 0, 0, 0);
} ();
|
|
660
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
661
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
662
|
c_snd_play(snd_noise);
|
|
663
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_climb);
|
|
664
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.4);
|
|
665
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (su_actor.x, cameray() - 200, 60);
|
|
666
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("ralsei");
|
|
667
|
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 C* Susie,Delay 11 don't climb so fast!!Wait for inputClose Message"\\EC* Susie^1, don't climb so fast!!/%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_975_0" );
|
|
668
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
669
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
670
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
671
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
672
|
c_snd_play(snd_noise);
|
|
673
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_climb);
|
|
674
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.4);
|
|
675
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (ra_actor.x, cameray() - 200, 60);
|
|
676
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
677
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
678
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (0);
|
|
679
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
680
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (0);
|
|
681
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (function()
|
|
682
|
{
|
|
683
|
with (obj_marker_fancy)
|
|
684
|
instance_destroy();
|
|
685
|
});
|
|
686
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
687
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
688
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (kr_actor.x, 360, 120);
|
|
689
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (120);
|
|
690
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
691
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (1);
|
|
692
|
c_setxyc_setxy
function c_setxy(arg0, arg1)
{
c_cmd("setxy", arg0, arg1, 0, 0);
} (kr_actor.x - 16, 200);
|
|
693
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_kris_stand_from_kneel_up);
|
|
694
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
695
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (camerax(), 0, 140);
|
|
696
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (140);
|
|
697
|
c_lerp_var_instance(kr_actor, "image_index", 0, 4, 30);
|
|
698
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (45);
|
|
699
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (1);
|
|
700
|
c_walkc_walk
function c_walk(arg0, arg1, arg2)
{
c_cmd("walk", arg0, arg1, arg2, 0);
} ("u", 4, 95);
|
|
701
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (95);
|
|
702
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "con", 50);
|
|
703
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
704
|
}
|
|
705
|
if (con == 20 && customcon == 1 && !d_ex())
|
|
706
|
{
|
|
707
|
con = 21;
|
|
708
|
customcon = 0;
|
|
709
|
var _wall_cover = scr_dark_markerscr_dark_marker
function scr_dark_marker(arg0, arg1, arg2)
{
thismarker = instance_create(arg0, arg1, obj_marker);
with (thismarker)
{
sprite_index = arg2;
image_speed = 0;
image_xscale = 2;
image_yscale = 2;
}
return thismarker;
} (200, jackenstein.y - 40, spr_blank_tile_black);
|
|
710
|
with (_wall_cover)
|
|
711
|
{
|
|
712
|
image_xscale = 6;
|
|
713
|
image_yscale = 2;
|
|
714
|
depth = 999990;
|
|
715
|
visible = 0;
|
|
716
|
}
|
|
717
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
718
|
c_mus2c_mus2
function c_mus2(arg0, arg1, arg2)
{
c_cmd("mus", arg0, arg1, arg2, 0);
} ("initloop", "creepychase.ogg", 0);
|
|
719
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (camerax(), 740, 30);
|
|
720
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
721
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_climb_poses_alt);
|
|
722
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (1);
|
|
723
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
724
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_climb_poses_alt);
|
|
725
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
726
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
727
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
728
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_climb_poses_alt);
|
|
729
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
730
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
731
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_climb_poses_alt);
|
|
732
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (0);
|
|
733
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("jackenstein");
|
|
734
|
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, * NO WORRY...Delay 11 JACK JUST HANG ON AND...Wait for inputClose Message"* NO WORRY..^1. JACK JUST HANG ON AND.../%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_1076_0" );
|
|
735
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
736
|
c_musc_mus
function c_mus(arg0)
{
c_cmd("mus", arg0, 0, 0, 0);
} ("free_all");
|
|
737
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller, "is_active", true);
|
|
738
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller, "target_y_pos", 835);
|
|
739
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller, "flip_side", false);
|
|
740
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller_b, "is_active", true);
|
|
741
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller_b, "target_y_pos", 1085);
|
|
742
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (sword_controller_b, "flip_side", true);
|
|
743
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (sword_controller, "destroyed", "=", true);
|
|
744
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (function()
|
|
745
|
{
|
|
746
|
wobble = 0;
|
|
747
|
layer_x(glasslayers[10], 0);
|
|
748
|
layer_x(glasslayers[11], 0);
|
|
749
|
glass_row_shatter(11, true, 1);
|
|
750
|
glass_row_shatter(10, false, 1);
|
|
751
|
});
|
|
752
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (8);
|
|
753
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (function()
|
|
754
|
{
|
|
755
|
snd_play(snd_wing);
|
|
756
|
falling_sound = snd_play(snd_closet_fall);
|
|
757
|
with (jackenstein)
|
|
758
|
start_falling();
|
|
759
|
});
|
|
760
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (1);
|
|
761
|
c_shakec_shake
function c_shake()
{
c_cmd("shake", 0, 0, 0, 0);
} ();
|
|
762
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
763
|
}
|
|
764
|
if (con == 21 && customcon == 1)
|
|
765
|
{
|
|
766
|
con = 22;
|
|
767
|
with (cup_stack)
|
|
768
|
{
|
|
769
|
visible = 0;
|
|
770
|
y += 300;
|
|
771
|
}
|
|
772
|
}
|
|
773
|
if (con == 22 && customcon == 1 && !d_ex())
|
|
774
|
{
|
|
775
|
con = 23;
|
|
776
|
camera_y_pos = cameray();
|
|
777
|
var pan_time = round(point_distance(camerax(), cameray(), camerax(), cup_top_y_pos) / 18);
|
|
778
|
scr_lerpvarscr_lerpvar
function scr_lerpvar()
{
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_lerpvar_respect()
{
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]);
___lerpvar.respectglobalinteract = true;
return ___lerpvar;
} ("camera_y_pos", cameray(), cup_top_y_pos, pan_time, 3, "inout");
|
|
779
|
}
|
|
780
|
if (con == 23)
|
|
781
|
{
|
|
782
|
camera_set_view_pos(view_get_camera(0), camerax(), camera_y_pos);
|
|
783
|
if (cameray() >= cup_top_y_pos)
|
|
784
|
con = 24;
|
|
785
|
}
|
|
786
|
if (con == 24 && customcon == 1 && !d_ex())
|
|
787
|
{
|
|
788
|
con = 26;
|
|
789
|
customcon = 0;
|
|
790
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
791
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (75);
|
|
792
|
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 c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (function()
|
|
793
|
{
|
|
794
|
snd_stop(falling_sound);
|
|
795
|
});
|
|
796
|
c_sound_play(snd_noise);
|
|
797
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (45);
|
|
798
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (jackenstein, "visible", false);
|
|
799
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (cup_stack, "visible", 1);
|
|
800
|
c_var_lerp_to_instance(cup_stack, "y", cup_stack.ystart, 60);
|
|
801
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
802
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("susie");
|
|
803
|
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* You guys...Delay 11 The hell are you doing here!?Wait for inputClose Message"\\EZ* You guys..^1. The hell are you doing here!?/%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_1166_0" );
|
|
804
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
805
|
c_mus2c_mus2
function c_mus2(arg0, arg1, arg2)
{
c_cmd("mus", arg0, arg1, arg2, 0);
} ("initloop", "gerson_theme_nointro.ogg", 0);
|
|
806
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("no_name");
|
|
807
|
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, * We apologize for our belated realization...Wait for input"* We apologize for our belated realization.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_1175_0" );
|
|
808
|
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 you three are the heroes,Delay 11 are you not!?Wait for input"* But you three are the heroes^1, are you not!?/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_1176_0" );
|
|
809
|
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 story of your kindness...Delay 11 Has become legendary!!Wait for inputClose Message"* The story of your kindness..^1. Has become legendary!!/%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_1177_0" );
|
|
810
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
811
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
812
|
}
|
|
813
|
if (con == 26 && customcon == 1 && !d_ex())
|
|
814
|
{
|
|
815
|
con = 27;
|
|
816
|
camera_y_cache = cameray();
|
|
817
|
camera_y_pos = cameray();
|
|
818
|
var pan_time = round(point_distance(camerax(), cameray(), camerax(), cup_bottom_y_pos) / 18);
|
|
819
|
scr_lerpvarscr_lerpvar
function scr_lerpvar()
{
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_lerpvar_respect()
{
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]);
___lerpvar.respectglobalinteract = true;
return ___lerpvar;
} ("camera_y_pos", cameray(), cup_bottom_y_pos, pan_time, 3, "inout");
|
|
820
|
}
|
|
821
|
if (con == 27)
|
|
822
|
{
|
|
823
|
camera_set_view_pos(view_get_camera(0), camerax(), camera_y_pos);
|
|
824
|
if (cameray() >= cup_bottom_y_pos)
|
|
825
|
{
|
|
826
|
con = 28;
|
|
827
|
alarm[0] = 30; gml_Object_obj_dw_churchc_finalclimb_Alarm_0.gml
con++;
|
|
828
|
}
|
|
829
|
}
|
|
830
|
if (con == 29 && customcon == 1 && !d_ex())
|
|
831
|
{
|
|
832
|
con = 30;
|
|
833
|
var pan_time = round(point_distance(camerax(), cameray(), camerax(), camera_y_cache) / 18);
|
|
834
|
scr_lerpvarscr_lerpvar
function scr_lerpvar()
{
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_lerpvar_respect()
{
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]);
___lerpvar.respectglobalinteract = true;
return ___lerpvar;
} ("camera_y_pos", cameray(), camera_y_cache, pan_time, 3, "inout");
|
|
835
|
}
|
|
836
|
if (con == 30)
|
|
837
|
{
|
|
838
|
camera_set_view_pos(view_get_camera(0), camerax(), camera_y_pos);
|
|
839
|
if (cameray() <= camera_y_cache)
|
|
840
|
{
|
|
841
|
con = 31;
|
|
842
|
alarm[0] = 30; gml_Object_obj_dw_churchc_finalclimb_Alarm_0.gml
con++;
|
|
843
|
}
|
|
844
|
}
|
|
845
|
if (con == 32 && customcon == 1 && !d_ex())
|
|
846
|
{
|
|
847
|
con = 33;
|
|
848
|
customcon = 0;
|
|
849
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
850
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("no_name");
|
|
851
|
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, * And so,Delay 11 posthaste,Delay 11 we come to aid you in your battle...Wait for input"* And so^1, posthaste^1, we come to aid you in your battle.../", "obj_dw_churchc_finalclimb_slash_Step_0_gml_1241_0" );
|
|
852
|
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);
} (* Go forth...Delay 11 and defeat the Knight!Wait for inputClose Message"* Go forth..^1. and defeat the Knight!/%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_1242_0" );
|
|
853
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
854
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (cup_stack, "con", 1);
|
|
855
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
856
|
c_snd_play(snd_wing);
|
|
857
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (40);
|
|
858
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (cup_stack, "jack_index", 1);
|
|
859
|
c_snd_play(snd_jump);
|
|
860
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
861
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
862
|
c_stickto_stopc_stickto_stop
function c_stickto_stop()
{
c_cmd("stick", "off", 0, 0, 0);
} ();
|
|
863
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_kris_fall_ball);
|
|
864
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.4);
|
|
865
|
c_setxyc_setxy
function c_setxy(arg0, arg1)
{
c_cmd("setxy", arg0, arg1, 0, 0);
} (290, cup_top_y_pos + 200);
|
|
866
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (1);
|
|
867
|
c_jumpc_jump
function c_jump(arg0, arg1, arg2, arg3)
{
c_cmd("jump", arg0, arg1, arg2, arg3);
} (300, 167, 24, 70);
|
|
868
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (71, "sprite", spr_krisd_dark);
|
|
869
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (71, "imagespeed", 0);
|
|
870
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
871
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
872
|
c_stickto_stopc_stickto_stop
function c_stickto_stop()
{
c_cmd("stick", "off", 0, 0, 0);
} ();
|
|
873
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_dw_fall_ball);
|
|
874
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.4);
|
|
875
|
c_setxyc_setxy
function c_setxy(arg0, arg1)
{
c_cmd("setxy", arg0, arg1, 0, 0);
} (244, cup_top_y_pos + 200);
|
|
876
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (1);
|
|
877
|
c_jumpc_jump
function c_jump(arg0, arg1, arg2, arg3)
{
c_cmd("jump", arg0, arg1, arg2, arg3);
} (244, 172, 24, 80);
|
|
878
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (81, "sprite", spr_susie_walk_down_dw);
|
|
879
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (81, "imagespeed", 0);
|
|
880
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
881
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
882
|
c_stickto_stopc_stickto_stop
function c_stickto_stop()
{
c_cmd("stick", "off", 0, 0, 0);
} ();
|
|
883
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_jump_ball);
|
|
884
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.4);
|
|
885
|
c_setxyc_setxy
function c_setxy(arg0, arg1)
{
c_cmd("setxy", arg0, arg1, 0, 0);
} (347, cup_top_y_pos + 200);
|
|
886
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (1);
|
|
887
|
c_jumpc_jump
function c_jump(arg0, arg1, arg2, arg3)
{
c_cmd("jump", arg0, arg1, arg2, arg3);
} (347, 177, 24, 80);
|
|
888
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (81, "sprite", spr_ralsei_walk_down);
|
|
889
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (81, "imagespeed", 0);
|
|
890
|
var pan_time = round(point_distance(camerax(), cameray(), camerax(), 0) / 28);
|
|
891
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (camerax(), 0, pan_time);
|
|
892
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (71);
|
|
893
|
c_snd_play(snd_wing);
|
|
894
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (10);
|
|
895
|
c_snd_play(snd_wing);
|
|
896
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
897
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
898
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_wave_start);
|
|
899
|
c_lerp_var_instance(ra_actor, "image_index", 0, 2, 8);
|
|
900
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (12, "sprite", spr_ralsei_wave_down);
|
|
901
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, 0, 0, 0);
} (12, "imagespeed", 0.2);
|
|
902
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("ralsei");
|
|
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 2* Everyone...Delay 11 thank you so much!Wait for input"\\E2* Everyone..^1. thank you so much!/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_1310_0" );
|
|
904
|
c_facenextc_facenext
function c_facenext(arg0, arg1)
{
c_cmd("msgfacenext", arg0, arg1, 0, 0);
} ("susie", 9);
|
|
905
|
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 9* Heh,Delay 11 guess being nice kinda pays off...!Wait for input"\\E9* Heh^1, guess being nice kinda pays off...!/", "obj_dw_churchc_finalclimb_slash_Step_0_gml_1312_0" );
|
|
906
|
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 2* Now let's go kick that Knight's ass!Wait for inputClose Message"\\E2* Now let's go kick that Knight's ass!/%", "obj_dw_churchc_finalclimb_slash_Step_0_gml_1313_0" );
|
|
907
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
908
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (3);
|
|
909
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
910
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_pose);
|
|
911
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
912
|
c_mus2c_mus2
function c_mus2(arg0, arg1, arg2)
{
c_cmd("mus", arg0, arg1, arg2, 0);
} ("volume", 0, 60);
|
|
913
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
914
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("r");
|
|
915
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
916
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
917
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("l");
|
|
918
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
919
|
c_panobjc_panobj
function c_panobj(arg0, arg1)
{
c_cmd("panobj", arg0, arg1, 0, 0);
} (kr_actor, 20);
|
|
920
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (21);
|
|
921
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "con", 50);
|
|
922
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
923
|
}
|
|
924
|
if (con == 50 && !d_ex() && customcon == 1)
|
|
925
|
{
|
|
926
|
con = 60;
|
|
927
|
customcon = 0;
|
|
928
|
global.facing = 0;
|
|
929
|
with (obj_mainchara)
|
|
930
|
freeze = 0;
|
|
931
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
932
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
933
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("d");
|
|
934
|
c_actortokrisc_actortokris
function c_actortokris()
{
c_cmd("actortokris", 0, 0, 0, 0);
} ();
|
|
935
|
if (recruit_version)
|
|
936
|
c_actortocaterpillarc_actortocaterpillar
function c_actortocaterpillar()
{
c_cmd("actortocaterpillar", 0, 0, 0, 0);
} ();
|
|
937
|
c_terminatekillactorsc_terminatekillactors
function c_terminatekillactors()
{
c_cmd("terminatekillactors", 0, 0, 0, 0);
} ();
|
|
938
|
}
|
|
939
|
if (con == 60 && !i_ex(obj_cutscene_master))
|
|
940
|
{
|
|
941
|
con = -1;
|
|
942
|
global.interact = 0;
|
|
943
|
global.facing = kris_down_face ? 0 : 2;
|
|
944
|
with (obj_mainchara)
|
|
945
|
cutscene = 0;
|
|
946
|
global.plot = 245;
|
|
947
|
scr_flag_setscr_flag_set
function scr_flag_set(arg0, arg1)
{
global.flag[arg0] = arg1;
if (scr_debug())
show_debug_message("*** flag [" + string(arg0) + "] updated: " + string(arg1) + " | " + scr_flag_name_get(arg0));
}
function scr_setflag(arg0, arg1)
{
scr_flag_set(arg0, arg1);
} (7, 0);
|
|
948
|
scr_tempsavescr_tempsave
function scr_tempsave()
{
filechoicebk2 = global.filechoice;
global.filechoice = 9;
scr_saveprocess(global.filechoice);
global.filechoice = filechoicebk2;
} ();
|
|
949
|
}
|