|
1
|
if (_flowery_float)
|
|
2
|
{
|
|
3
|
if (fl_actor != -4)
|
|
4
|
{
|
|
5
|
if (_flowery_hover)
|
|
6
|
{
|
|
7
|
_flowery_hover_siner += 0.16;
|
|
8
|
fl_actor.y = _flowery_y_target + (sin(_flowery_hover_siner) * 6);
|
|
9
|
}
|
|
10
|
else
|
|
11
|
{
|
|
12
|
fl_actor.y = 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);
}
} (fl_actor.y, _flowery_y_target, 16);
|
|
13
|
}
|
|
14
|
}
|
|
15
|
}
|
|
16
|
if (enter_active)
|
|
17
|
{
|
|
18
|
var triggered = false;
|
|
19
|
with (obj_trigger)
|
|
20
|
{
|
|
21
|
if (place_meeting(x, y, obj_mainchara))
|
|
22
|
{
|
|
23
|
if (extflag == "flowery_a")
|
|
24
|
triggered = true;
|
|
25
|
}
|
|
26
|
}
|
|
27
|
if (triggered && global.interact == 0 && !d_ex())
|
|
28
|
{
|
|
29
|
con = 0;
|
|
30
|
global.interact = 1;
|
|
31
|
enter_active = false;
|
|
32
|
with (obj_trigger)
|
|
33
|
{
|
|
34
|
if (extflag == "flowery_a")
|
|
35
|
instance_destroy();
|
|
36
|
}
|
|
37
|
}
|
|
38
|
}
|
|
39
|
if (con < 0)
|
|
40
|
exit;
|
|
41
|
if (con == 0)
|
|
42
|
{
|
|
43
|
con = 1;
|
|
44
|
alarm[0] = 1; gml_Object_obj_ch5_DW29_Alarm_0.gml
con++;
|
|
45
|
}
|
|
46
|
if (con == 2 && !d_ex())
|
|
47
|
{
|
|
48
|
con = 3;
|
|
49
|
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;
} ();
|
|
50
|
scr_maincharacters_actorsscr_maincharacters_actors
function scr_maincharacters_actors()
{
if (i_ex(obj_plat_player))
{
scr_maincharacters_actors_plat();
exit;
}
actor_count = 0;
kr = 0;
kr_actor = instance_create(obj_mainchara.x, obj_mainchara.y, obj_actor);
scr_actor_setup(kr, kr_actor, "kris");
kr_actor.sprite_index = obj_mainchara.sprite_index;
kr_actor.depth = obj_mainchara.depth;
with (obj_mainchara)
visible = 0;
for (__jj = 0; __jj < array_length_1d(global.cinstance); __jj++)
{
if (i_ex(global.cinstance[__jj]))
{
if (global.cinstance[__jj].name == "susie")
{
actor_count++;
su = __jj + 1;
su_actor = instance_create(global.cinstance[__jj].x, global.cinstance[__jj].y, obj_actor);
scr_actor_setup(su, su_actor, "susie");
su_actor.sprite_index = global.cinstance[__jj].sprite_index;
su_actor.depth = global.cinstance[__jj].depth;
with (global.cinstance[__jj])
visible = 0;
}
if (global.cinstance[__jj].name == "ralsei")
{
actor_count++;
ra = __jj + 1;
ra_actor = instance_create(global.cinstance[__jj].x, global.cinstance[__jj].y, obj_actor);
scr_actor_setup(ra, ra_actor, "ralsei");
ra_actor.sprite_index = global.cinstance[__jj].sprite_index;
ra_actor.depth = global.cinstance[__jj].depth;
with (global.cinstance[__jj])
visible = 0;
}
if (global.cinstance[__jj].name == "noelle")
{
actor_count++;
no = __jj + 1;
no_actor = instance_create(global.cinstance[__jj].x, global.cinstance[__jj].y, obj_actor);
scr_actor_setup(no, no_actor, "noelle");
no_actor.sprite_index = global.cinstance[__jj].sprite_index;
no_actor.depth = global.cinstance[__jj].depth;
with (global.cinstance[__jj])
visible = 0;
}
}
}
} ();
|
|
51
|
fl = actor_count + 1;
|
|
52
|
fl_actor = instance_create(780, 870, obj_actor);
|
|
53
|
scr_actor_setupscr_actor_setup
function scr_actor_setup(arg0, arg1, arg2)
{
_actorid = arg0;
_actorinstance = arg1;
_actorname = arg2;
obj_cutscene_master.actor_id[_actorid] = _actorinstance;
obj_cutscene_master.actor_name[_actorid] = _actorname;
with (_actorinstance)
{
number = arg0;
if (object_index != obj_plat_npc)
scr_set_facing_sprites(arg2);
}
} (fl, fl_actor, "flowery");
|
|
54
|
fl_actor.sprite_index = spr_flowery_float;
|
|
55
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
56
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (80, 800, 20);
|
|
57
|
c_sndplay(snd_spearappear);
|
|
58
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
59
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
60
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
61
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
62
|
c_var_lerp_to_instance(fl_actor, "x", 550, 12, 2, "out");
|
|
63
|
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()
|
|
64
|
{
|
|
65
|
with (fl_actor)
|
|
66
|
scr_afterimagerscr_afterimager
function scr_afterimager(arg0, arg1, arg2 = false, arg3 = -1)
{
with (instance_create(x, y, obj_afterimager))
{
fog = arg3;
creator = other.id;
remaining = arg0;
period = arg1;
alarm[0]
rainbow_mode = arg2;
}
} (10, 2, true);
|
|
67
|
});
|
|
68
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (6);
|
|
69
|
var kr_x_pos = 370;
|
|
70
|
var kr_y_pos = 1020;
|
|
71
|
var kr_walktime = scr_calculate_move_distancescr_calculate_move_distance
function scr_calculate_move_distance(arg0, arg1, arg2, arg3, arg4 = 6)
{
var move_time = 1;
var distance_time = round(point_distance(arg0, arg1, arg2, arg3) / arg4);
if (distance_time > move_time)
move_time = distance_time;
return move_time;
} (kr_actor.x, kr_actor.y, kr_x_pos, kr_y_pos, 6);
|
|
72
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
73
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (kr_x_pos, kr_y_pos, kr_walktime);
|
|
74
|
c_delayfacingc_delayfacing
function c_delayfacing(arg0, arg1)
{
c_cmd_x("delaycmd", arg0, "facing", arg1, 0, 0, 0);
} (kr_walktime + 1, "r");
|
|
75
|
var su_x_pos = kr_x_pos - 50;
|
|
76
|
var su_y_pos = kr_y_pos - 16;
|
|
77
|
var su_walktime = scr_calculate_move_distancescr_calculate_move_distance
function scr_calculate_move_distance(arg0, arg1, arg2, arg3, arg4 = 6)
{
var move_time = 1;
var distance_time = round(point_distance(arg0, arg1, arg2, arg3) / arg4);
if (distance_time > move_time)
move_time = distance_time;
return move_time;
} (su_actor.x, su_actor.y, su_x_pos, su_y_pos, 6);
|
|
78
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
79
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("susieunhappy");
|
|
80
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
81
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_walk_right_dw_unhappy);
|
|
82
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
83
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (su_x_pos, su_y_pos, su_walktime);
|
|
84
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (su_walktime + 1, "imagespeed", 0);
|
|
85
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (su_walktime + 1, "imageindex", 0);
|
|
86
|
var ra_x_pos = kr_x_pos - 90;
|
|
87
|
var ra_y_pos = kr_y_pos - 12;
|
|
88
|
var ra_walktime = scr_calculate_move_distancescr_calculate_move_distance
function scr_calculate_move_distance(arg0, arg1, arg2, arg3, arg4 = 6)
{
var move_time = 1;
var distance_time = round(point_distance(arg0, arg1, arg2, arg3) / arg4);
if (distance_time > move_time)
move_time = distance_time;
return move_time;
} (ra_actor.x, ra_actor.y, ra_x_pos, ra_y_pos, 6);
|
|
89
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
90
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("ralseiunhappy");
|
|
91
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
92
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_walk_right_unhappy);
|
|
93
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
94
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (ra_x_pos, ra_y_pos, ra_walktime);
|
|
95
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (ra_walktime + 1, "imagespeed", 0);
|
|
96
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (ra_walktime + 1, "imageindex", 0);
|
|
97
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
98
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (ra_actor, "x", ">=", ra_x_pos);
|
|
99
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("flowery");
|
|
100
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
101
|
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, \Vg* Kris...Delay 11 Susie...Delay 11 Ralsei.Wait for inputClose Message"\\Vg* Kris..^1. Susie..^1. Ralsei./%", "obj_ch5_DW29_slash_Step_0_gml_129_0" );
|
|
102
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
103
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
104
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
105
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_head_down_right);
|
|
106
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
107
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("flowery_s");
|
|
108
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
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, * So you finally made it.Wait for input"* So you finally made it./", "obj_ch5_DW29_slash_Step_0_gml_136_0" );
|
|
110
|
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 Fountain's just a step away now.Wait for input"* The Fountain's just a step away now./", "obj_ch5_DW29_slash_Step_0_gml_137_0" );
|
|
111
|
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);
} (* Come here.Wait for inputClose Message"* Come here./%", "obj_ch5_DW29_slash_Step_0_gml_138_0" );
|
|
112
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
113
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
114
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
115
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float);
|
|
116
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
117
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
118
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
119
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_head_down_right);
|
|
120
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
121
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
122
|
c_sndplay(snd_spearappear);
|
|
123
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
124
|
c_var_lerp_to_instance(fl_actor, "x", 780, 12, 2, "out");
|
|
125
|
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()
|
|
126
|
{
|
|
127
|
with (fl_actor)
|
|
128
|
scr_afterimagerscr_afterimager
function scr_afterimager(arg0, arg1, arg2 = false, arg3 = -1)
{
with (instance_create(x, y, obj_afterimager))
{
fog = arg3;
creator = other.id;
remaining = arg0;
period = arg1;
alarm[0]
rainbow_mode = arg2;
}
} (10, 2, true);
|
|
129
|
});
|
|
130
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
131
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
132
|
c_panobjc_panobj
function c_panobj(arg0, arg1)
{
c_cmd("panobj", arg0, arg1, 0, 0);
} (kr_actor, 20);
|
|
133
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (21);
|
|
134
|
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()
|
|
135
|
{
|
|
136
|
scr_flag_setscr_flag_set
function scr_flag_set(arg0, arg1)
{
global.flag[arg0] = arg1;
}
function scr_flag_set_ext(arg0, arg1, arg2, arg3 = 1)
{
if (arg1 < 0)
scr_flag_set(arg0, arg2);
else
global.flag[arg0] = scr_set_bitmask_value(global.flag[arg0], arg1, arg2, arg3);
} (1877, 1);
|
|
137
|
regain_control();
|
|
138
|
});
|
|
139
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
140
|
}
|
|
141
|
if (con == 3 && customcon == 1)
|
|
142
|
{
|
|
143
|
var triggered = false;
|
|
144
|
with (obj_trigger)
|
|
145
|
{
|
|
146
|
if (place_meeting(x, y, obj_mainchara))
|
|
147
|
{
|
|
148
|
if (extflag == "flowery_b")
|
|
149
|
triggered = true;
|
|
150
|
}
|
|
151
|
}
|
|
152
|
if (triggered && global.interact == 0 && !d_ex())
|
|
153
|
{
|
|
154
|
con = 5;
|
|
155
|
lose_control();
|
|
156
|
with (obj_trigger)
|
|
157
|
{
|
|
158
|
if (extflag == "flowery_b")
|
|
159
|
instance_destroy();
|
|
160
|
}
|
|
161
|
}
|
|
162
|
}
|
|
163
|
if (con == 5 && customcon == 1)
|
|
164
|
{
|
|
165
|
con = 6;
|
|
166
|
customcon = 0;
|
|
167
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
168
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
169
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (860, 800, 20);
|
|
170
|
c_sndplay(snd_spearappear);
|
|
171
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
172
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
173
|
c_setxyc_setxy
function c_setxy(arg0, arg1)
{
c_cmd("setxy", arg0, arg1, 0, 0);
} (1530, 870);
|
|
174
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float);
|
|
175
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
176
|
c_var_lerp_to_instance(fl_actor, "x", camerax() + 560, 12, 2, "out");
|
|
177
|
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()
|
|
178
|
{
|
|
179
|
with (fl_actor)
|
|
180
|
scr_afterimagerscr_afterimager
function scr_afterimager(arg0, arg1, arg2 = false, arg3 = -1)
{
with (instance_create(x, y, obj_afterimager))
{
fog = arg3;
creator = other.id;
remaining = arg0;
period = arg1;
alarm[0]
rainbow_mode = arg2;
}
} (10, 2, true);
|
|
181
|
});
|
|
182
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (6);
|
|
183
|
var kr_x_pos = camerax() + 370;
|
|
184
|
var kr_y_pos = 1020;
|
|
185
|
var kr_walktime = scr_calculate_move_distancescr_calculate_move_distance
function scr_calculate_move_distance(arg0, arg1, arg2, arg3, arg4 = 6)
{
var move_time = 1;
var distance_time = round(point_distance(arg0, arg1, arg2, arg3) / arg4);
if (distance_time > move_time)
move_time = distance_time;
return move_time;
} (kr_actor.x, kr_actor.y, kr_x_pos, kr_y_pos, 6);
|
|
186
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
187
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (kr_x_pos, kr_y_pos, kr_walktime);
|
|
188
|
c_delayfacingc_delayfacing
function c_delayfacing(arg0, arg1)
{
c_cmd_x("delaycmd", arg0, "facing", arg1, 0, 0, 0);
} (kr_walktime + 1, "r");
|
|
189
|
var su_x_pos = kr_x_pos - 50;
|
|
190
|
var su_y_pos = kr_y_pos - 16;
|
|
191
|
var su_walktime = scr_calculate_move_distancescr_calculate_move_distance
function scr_calculate_move_distance(arg0, arg1, arg2, arg3, arg4 = 6)
{
var move_time = 1;
var distance_time = round(point_distance(arg0, arg1, arg2, arg3) / arg4);
if (distance_time > move_time)
move_time = distance_time;
return move_time;
} (su_actor.x, su_actor.y, su_x_pos, su_y_pos, 6);
|
|
192
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
193
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("susieunhappy");
|
|
194
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
195
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_walk_right_dw_unhappy);
|
|
196
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
197
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (su_x_pos, su_y_pos, su_walktime);
|
|
198
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (su_walktime + 1, "imagespeed", 0);
|
|
199
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (su_walktime + 1, "imageindex", 0);
|
|
200
|
var ra_x_pos = kr_x_pos - 90;
|
|
201
|
var ra_y_pos = kr_y_pos - 12;
|
|
202
|
var ra_walktime = scr_calculate_move_distancescr_calculate_move_distance
function scr_calculate_move_distance(arg0, arg1, arg2, arg3, arg4 = 6)
{
var move_time = 1;
var distance_time = round(point_distance(arg0, arg1, arg2, arg3) / arg4);
if (distance_time > move_time)
move_time = distance_time;
return move_time;
} (ra_actor.x, ra_actor.y, ra_x_pos, ra_y_pos, 6);
|
|
203
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
204
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("ralseiunhappy");
|
|
205
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
206
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_walk_right_unhappy);
|
|
207
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
208
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (ra_x_pos, ra_y_pos, ra_walktime);
|
|
209
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (ra_walktime + 1, "imagespeed", 0);
|
|
210
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (ra_walktime + 1, "imageindex", 0);
|
|
211
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
212
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (ra_actor, "x", ">=", ra_x_pos);
|
|
213
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("flowery_s");
|
|
214
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
215
|
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, * Fate should say we are destined to fight...Wait for input"* Fate should say we are destined to fight.../", "obj_ch5_DW29_slash_Step_0_gml_278_0" );
|
|
216
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* But...Delay 11 I believe in you three.Wait for input"* But..^1. I believe in you three./", "obj_ch5_DW29_slash_Step_0_gml_279_0" );
|
|
217
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* I believe you have the power to change that fate.Wait for input"* I believe you have the power to change that fate./", "obj_ch5_DW29_slash_Step_0_gml_280_0" );
|
|
218
|
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);
} (* So...Delay 11 will you use it?Wait for input"* So..^1. will you use it?/", "obj_ch5_DW29_slash_Step_0_gml_281_0" );
|
|
219
|
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);
} (* Or will you prove your fantasy stronger than ours?Wait for inputClose Message"* Or will you prove your fantasy stronger than ours?/%", "obj_ch5_DW29_slash_Step_0_gml_282_0" );
|
|
220
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
221
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
222
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
223
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_head_down_right);
|
|
224
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
225
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (3);
|
|
226
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
227
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_shrug_shake_right);
|
|
228
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
229
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (4);
|
|
230
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
231
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_head_down_right);
|
|
232
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
233
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
234
|
c_sndplay(snd_spearappear);
|
|
235
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
236
|
c_var_lerp_to_instance(fl_actor, "x", 1580, 12, 2, "out");
|
|
237
|
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()
|
|
238
|
{
|
|
239
|
with (fl_actor)
|
|
240
|
scr_afterimagerscr_afterimager
function scr_afterimager(arg0, arg1, arg2 = false, arg3 = -1)
{
with (instance_create(x, y, obj_afterimager))
{
fog = arg3;
creator = other.id;
remaining = arg0;
period = arg1;
alarm[0]
rainbow_mode = arg2;
}
} (12, 2, true);
|
|
241
|
});
|
|
242
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
243
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
244
|
c_panobjc_panobj
function c_panobj(arg0, arg1)
{
c_cmd("panobj", arg0, arg1, 0, 0);
} (kr_actor, 20);
|
|
245
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (21);
|
|
246
|
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()
|
|
247
|
{
|
|
248
|
scr_flag_setscr_flag_set
function scr_flag_set(arg0, arg1)
{
global.flag[arg0] = arg1;
}
function scr_flag_set_ext(arg0, arg1, arg2, arg3 = 1)
{
if (arg1 < 0)
scr_flag_set(arg0, arg2);
else
global.flag[arg0] = scr_set_bitmask_value(global.flag[arg0], arg1, arg2, arg3);
} (1877, 2);
|
|
249
|
regain_control();
|
|
250
|
});
|
|
251
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "_flowery_y_target", 340);
|
|
252
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
253
|
c_setxyc_setxy
function c_setxy(arg0, arg1)
{
c_cmd("setxy", arg0, arg1, 0, 0);
} (1614, 340);
|
|
254
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (1);
|
|
255
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
256
|
}
|
|
257
|
if (con == 6 && customcon == 1)
|
|
258
|
{
|
|
259
|
var triggered = false;
|
|
260
|
with (obj_trigger)
|
|
261
|
{
|
|
262
|
if (place_meeting(x, y, obj_mainchara))
|
|
263
|
{
|
|
264
|
if (extflag == "flowery_c")
|
|
265
|
triggered = true;
|
|
266
|
}
|
|
267
|
}
|
|
268
|
if (triggered && global.interact == 0 && !d_ex())
|
|
269
|
{
|
|
270
|
con = 7;
|
|
271
|
lose_control();
|
|
272
|
with (obj_trigger)
|
|
273
|
{
|
|
274
|
if (extflag == "flowery_c")
|
|
275
|
instance_destroy();
|
|
276
|
}
|
|
277
|
}
|
|
278
|
}
|
|
279
|
if (con == 7 && customcon == 1)
|
|
280
|
{
|
|
281
|
battle_transition = instance_create(obj_flowery_towery.x, obj_flowery_towery.y, obj_flowery_battle_transition);
|
|
282
|
con = 10;
|
|
283
|
customcon = 0;
|
|
284
|
global.tempflag[97] = 1;
|
|
285
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
286
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
287
|
var walk_speed = 6;
|
|
288
|
if (_shortened_mode)
|
|
289
|
{
|
|
290
|
walk_speed = 8;
|
|
291
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (1320, 160, 20);
|
|
292
|
}
|
|
293
|
else
|
|
294
|
{
|
|
295
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (1320, 320, 20);
|
|
296
|
}
|
|
297
|
var kr_x_pos = 1622;
|
|
298
|
var kr_y_pos = 520;
|
|
299
|
var kr_walktime = scr_calculate_move_distancescr_calculate_move_distance
function scr_calculate_move_distance(arg0, arg1, arg2, arg3, arg4 = 6)
{
var move_time = 1;
var distance_time = round(point_distance(arg0, arg1, arg2, arg3) / arg4);
if (distance_time > move_time)
move_time = distance_time;
return move_time;
} (kr_actor.x, kr_actor.y, kr_x_pos, kr_y_pos, walk_speed);
|
|
300
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
301
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (kr_x_pos, kr_y_pos, kr_walktime);
|
|
302
|
c_delayfacingc_delayfacing
function c_delayfacing(arg0, arg1)
{
c_cmd_x("delaycmd", arg0, "facing", arg1, 0, 0, 0);
} (kr_walktime + 1, "u");
|
|
303
|
var su_x_pos = 1560;
|
|
304
|
var su_y_pos = 524;
|
|
305
|
var su_walktime = scr_calculate_move_distancescr_calculate_move_distance
function scr_calculate_move_distance(arg0, arg1, arg2, arg3, arg4 = 6)
{
var move_time = 1;
var distance_time = round(point_distance(arg0, arg1, arg2, arg3) / arg4);
if (distance_time > move_time)
move_time = distance_time;
return move_time;
} (su_actor.x, su_actor.y, su_x_pos, su_y_pos, walk_speed);
|
|
306
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
307
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("susieunhappy");
|
|
308
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
309
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_walk_up_dw);
|
|
310
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
311
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (su_x_pos, su_y_pos, su_walktime);
|
|
312
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (su_walktime + 1, "imagespeed", 0);
|
|
313
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (su_walktime + 1, "imageindex", 0);
|
|
314
|
c_delayfacingc_delayfacing
function c_delayfacing(arg0, arg1)
{
c_cmd_x("delaycmd", arg0, "facing", arg1, 0, 0, 0);
} (su_walktime + 1, "u");
|
|
315
|
var ra_x_pos = 1672;
|
|
316
|
var ra_y_pos = 530;
|
|
317
|
var ra_walktime = scr_calculate_move_distancescr_calculate_move_distance
function scr_calculate_move_distance(arg0, arg1, arg2, arg3, arg4 = 6)
{
var move_time = 1;
var distance_time = round(point_distance(arg0, arg1, arg2, arg3) / arg4);
if (distance_time > move_time)
move_time = distance_time;
return move_time;
} (ra_actor.x, ra_actor.y, ra_x_pos, ra_y_pos, walk_speed);
|
|
318
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
319
|
c_facingc_facing
function c_facing(arg0)
{
c_cmd("facing", arg0, 0, 0, 0);
} ("ralseiunhappy");
|
|
320
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
321
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_walk_up);
|
|
322
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
323
|
c_walkdirectc_walkdirect
function c_walkdirect(arg0, arg1, arg2)
{
c_cmd("walkdirect", arg0, arg1, arg2, 0);
} (ra_x_pos, ra_y_pos, ra_walktime);
|
|
324
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (ra_walktime + 1, "imagespeed", 0);
|
|
325
|
c_delaycmdc_delaycmd
function c_delaycmd(arg0, arg1, arg2, arg3 = 0, arg4 = 0, arg5 = 0)
{
c_cmd_x("delaycmd", arg0, arg1, arg2, arg3, arg4, arg5);
} (ra_walktime + 1, "imageindex", 0);
|
|
326
|
c_delayfacingc_delayfacing
function c_delayfacing(arg0, arg1)
{
c_cmd_x("delaycmd", arg0, "facing", arg1, 0, 0, 0);
} (ra_walktime + 1, "u");
|
|
327
|
if (!_shortened_mode)
|
|
328
|
{
|
|
329
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
330
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (ra_actor, "y", "<=", ra_y_pos);
|
|
331
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("flowery_s");
|
|
332
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
333
|
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, * So you made up your minds...Delay 11Wait for inputClose Message"* So you made up your minds..^1./%", "obj_ch5_DW29_slash_Step_0_gml_447_0" );
|
|
334
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
335
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
336
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
337
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (0);
|
|
338
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float);
|
|
339
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
340
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
341
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
342
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("flowery_s");
|
|
343
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
344
|
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, * Listen.Wait for input"* Listen./", "obj_ch5_DW29_slash_Step_0_gml_464_0" );
|
|
345
|
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);
} (* Since the beginning,Delay 11 we were love...Wait for input"* Since the beginning^1, we were love.../", "obj_ch5_DW29_slash_Step_0_gml_465_0" );
|
|
346
|
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);
} (* Your father grew us,Delay 11 a rainbow bouquet of seven flowers...Wait for input"* Your father grew us^1, a rainbow bouquet of seven flowers.../", "obj_ch5_DW29_slash_Step_0_gml_466_0" );
|
|
347
|
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);
} (* As a proposal to your mother.Wait for input"* As a proposal to your mother./", "obj_ch5_DW29_slash_Step_0_gml_467_0" );
|
|
348
|
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);
} (* Flowers,Delay 11 that were only supposed to live for one smiling day...Wait for inputClose Message"* Flowers^1, that were only supposed to live for one smiling day.../%", "obj_ch5_DW29_slash_Step_0_gml_468_0" );
|
|
349
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
350
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
351
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
352
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_head_down_right);
|
|
353
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
354
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
355
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
356
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float);
|
|
357
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
358
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (4);
|
|
359
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
360
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_head_down_right);
|
|
361
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
362
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
363
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
364
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
365
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float);
|
|
366
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
367
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("flowery_s");
|
|
368
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
369
|
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 yet,Delay 11 he did not let us go.Delay 11 He kept us alive,Delay 11 alongside his love...Wait for input"* And yet^1, he did not let us go^1. He kept us alive^1, alongside his love.../", "obj_ch5_DW29_slash_Step_0_gml_496_0" );
|
|
370
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* Every day,Delay 11 he watered us.Delay 11 He talked to us.Delay 11 He sang his dreams to us.Wait for input"* Every day^1, he watered us^1. He talked to us^1. He sang his dreams to us./", "obj_ch5_DW29_slash_Step_0_gml_497_0" );
|
|
371
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* And each day,Delay 11 we wished we could do something in return.Wait for input"* And each day^1, we wished we could do something in return./", "obj_ch5_DW29_slash_Step_0_gml_498_0" );
|
|
372
|
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);
} (* His friend grew sick,Delay 11 and we could do nothing.Wait for input"* His friend grew sick^1, and we could do nothing./", "obj_ch5_DW29_slash_Step_0_gml_499_0" );
|
|
373
|
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);
} (* His money ran out,Delay 11 and we could do nothing.Wait for input"* His money ran out^1, and we could do nothing./", "obj_ch5_DW29_slash_Step_0_gml_500_0" );
|
|
374
|
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);
} (* His family left him...Delay 11 and we could do nothing.Wait for input"* His family left him..^1. and we could do nothing./", "obj_ch5_DW29_slash_Step_0_gml_501_0" );
|
|
375
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* And yet he still cared for us...!Wait for input"* And yet he still cared for us...!/", "obj_ch5_DW29_slash_Step_0_gml_502_0" );
|
|
376
|
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);
} (* Weak,Delay 11 useless flowers...Delay 11 flowers that could do nothing in return!Wait for inputClose Message"* Weak^1, useless flowers..^1. flowers that could do nothing in return!/%", "obj_ch5_DW29_slash_Step_0_gml_503_0" );
|
|
377
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
378
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
379
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
380
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_head_down_right);
|
|
381
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
382
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
383
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
384
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_shrug_shake_right);
|
|
385
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
386
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (3);
|
|
387
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
388
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0.2);
|
|
389
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (4);
|
|
390
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
391
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float);
|
|
392
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
393
|
c_imagespeedc_imagespeed
function c_imagespeed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
}
function c_image_speed(arg0)
{
c_cmd("imagespeed", arg0, 0, 0, 0);
} (0);
|
|
394
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (5);
|
|
395
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
396
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_head_down_right);
|
|
397
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
398
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (6);
|
|
399
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
400
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float);
|
|
401
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
402
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (7);
|
|
403
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
404
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_head_down_right);
|
|
405
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
406
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
407
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
408
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
409
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float);
|
|
410
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
411
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("flowery_s");
|
|
412
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
413
|
c_msgsetlocc_msgsetloc
function c_msgsetloc(arg0, arg1, arg2)
{
var msg_index = arg0;
var english = arg1;
var localized_string_id = arg2;
var str = english;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgset(msg_index, str);
} (0, * But now...Delay 11 our time has come!Delay 11 For flowers to be the heroes!Wait for input"* But now..^1. our time has come^1! For flowers to be the heroes!/", "obj_ch5_DW29_slash_Step_0_gml_532_0" );
|
|
414
|
c_msgnextlocc_msgnextloc
function c_msgnextloc(arg0, arg1)
{
var str = arg0;
var localized_string_id = arg1;
if (!is_english())
str = scr_84_get_lang_string(localized_string_id);
c_msgnext(str);
} (* And build a world...Delay 11 where all his kindness may be repaid!Wait for input"* And build a world..^1. where all his kindness may be repaid!/", "obj_ch5_DW29_slash_Step_0_gml_533_0" );
|
|
415
|
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);
} (* Kris!Delay 11 This is your final chance!Wait for input"* Kris^1! This is your final chance!/", "obj_ch5_DW29_slash_Step_0_gml_534_0" );
|
|
416
|
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 you really believe your world is better...Wait for input"* If you really believe your world is better.../", "obj_ch5_DW29_slash_Step_0_gml_535_0" );
|
|
417
|
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);
} (* Then stand against us!Wait for inputClose Message"* Then stand against us!/%", "obj_ch5_DW29_slash_Step_0_gml_536_0" );
|
|
418
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
419
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (1);
|
|
420
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
421
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_shrug_shake_right);
|
|
422
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (2);
|
|
423
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
424
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float_head_down_right);
|
|
425
|
c_haltc_halt
function c_halt()
{
c_cmd("halt", 0, 0, 0, 0);
} ();
|
|
426
|
c_wait_boxc_wait_box
function c_wait_box(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
}
function c_wait_msg(arg0)
{
c_cmd("waitbox", arg0, 0, 0, 0);
} (4);
|
|
427
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
428
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_float);
|
|
429
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (2);
|
|
430
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
431
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
432
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (1320, 160, 20);
|
|
433
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (20);
|
|
434
|
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()
|
|
435
|
{
|
|
436
|
_power_up_fx = instance_create(0, 0, obj_ch5_DW29_power_up);
|
|
437
|
_power_up_fx.start(id);
|
|
438
|
});
|
|
439
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (90);
|
|
440
|
c_msgsidec_msgside
function c_msgside(arg0)
{
c_cmd("msgside", arg0, 0, 0, 0);
} ("bottom");
|
|
441
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("flowery_s");
|
|
442
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
443
|
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, * My RECRUITs!Wait for inputClose Message"* My RECRUITs!/%", "obj_ch5_DW29_slash_Step_0_gml_566_0" );
|
|
444
|
c_talk_waitc_talk_wait
function c_talk_wait()
{
c_talk();
c_waittalk();
}
function c_talkwait()
{
c_talk_wait();
} ();
|
|
445
|
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()
|
|
446
|
{
|
|
447
|
_power_up_flowery = instance_create(1637, 409, obj_ch5_DW29_power_up_flowery);
|
|
448
|
_power_up_flowery.init(fl_actor);
|
|
449
|
});
|
|
450
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
451
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (0);
|
|
452
|
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()
|
|
453
|
{
|
|
454
|
global.writersnd[0] = snd_flowery_voiceclip_lend_me_your_power;
|
|
455
|
});
|
|
456
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (15);
|
|
457
|
c_speakerc_speaker
function c_speaker(arg0)
{
c_cmd("speaker", arg0, 0, 0, 0);
} ("flowery");
|
|
458
|
c_fefcc_fefc
function c_fefc(arg0, arg1)
{
c_cmd("fe", arg0, arg1, 0, 0);
} (0, 0);
|
|
459
|
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, \Vz* Lend me your power!Wait for inputClose Message"\\Vz* Lend me your power!/%", "obj_ch5_DW29_slash_Step_0_gml_607_0" );
|
|
460
|
c_talkc_talk
function c_talk()
{
c_cmd("talk", 0, 0, 0, 0);
} ();
|
|
461
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (60);
|
|
462
|
c_wait_talkc_wait_talk
function c_wait_talk()
{
c_cmd("waitdialoguer", 0, 0, 0, 0);
} ();
|
|
463
|
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()
|
|
464
|
{
|
|
465
|
with (_power_up_flowery)
|
|
466
|
set_mode(0);
|
|
467
|
with (_power_up_fx)
|
|
468
|
end_sequence();
|
|
469
|
});
|
|
470
|
c_snd_play(snd_flowery_power_up);
|
|
471
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (90);
|
|
472
|
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()
|
|
473
|
{
|
|
474
|
_flowery_y_target = fl_actor.y;
|
|
475
|
});
|
|
476
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "_flowery_hover", false);
|
|
477
|
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()
|
|
478
|
{
|
|
479
|
with (_power_up_flowery)
|
|
480
|
set_mode(1);
|
|
481
|
});
|
|
482
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
483
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
484
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_poweringup);
|
|
485
|
c_imageindexc_imageindex
function c_imageindex(arg0)
{
c_cmd("imageindex", arg0, 0, 0, 0);
} (4);
|
|
486
|
c_visiblec_visible
function c_visible(arg0)
{
c_cmd("visible", arg0, 0, 0, 0);
} (1);
|
|
487
|
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()
|
|
488
|
{
|
|
489
|
_flowery_y_target = fl_actor.y;
|
|
490
|
});
|
|
491
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "_flowery_hover", false);
|
|
492
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "_flowery_float", false);
|
|
493
|
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()
|
|
494
|
{
|
|
495
|
with (_power_up_flowery)
|
|
496
|
instance_destroy();
|
|
497
|
});
|
|
498
|
}
|
|
499
|
else
|
|
500
|
{
|
|
501
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (ra_actor, "y", "<=", ra_y_pos);
|
|
502
|
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()
|
|
503
|
{
|
|
504
|
_flowery_y_target = fl_actor.y;
|
|
505
|
});
|
|
506
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "_flowery_hover", false);
|
|
507
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "_flowery_float", false);
|
|
508
|
c_delay_customfuncc_delay_customfunc
function c_delay_customfunc(arg0, arg1, arg2 = -1)
{
if (instance_exists(obj_cutscene_master))
c_cmd_x("delaycmd", arg0, "customfunc", arg2, arg1, 0, 0);
} (1, finished_power_up);
|
|
509
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (1);
|
|
510
|
c_snd_play(snd_weaponpull);
|
|
511
|
}
|
|
512
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "wind_con", 1);
|
|
513
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (kr);
|
|
514
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_kris_idleu_windr);
|
|
515
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (false);
|
|
516
|
c_image_speed(1/3);
|
|
517
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (su);
|
|
518
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_susie_block_up_wind);
|
|
519
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (false);
|
|
520
|
c_image_speed(1/3);
|
|
521
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (ra);
|
|
522
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_ralsei_walk_up_windy_simple);
|
|
523
|
c_autowalkc_autowalk
function c_autowalk(arg0)
{
c_cmd("autowalk", arg0, 0, 0, 0);
} (false);
|
|
524
|
c_image_speed(1/3);
|
|
525
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (battle_transition, "con", 1);
|
|
526
|
if (_shortened_mode)
|
|
527
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (battle_transition, "quick", 1);
|
|
528
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
529
|
}
|
|
530
|
if (con == 15 && customcon == 1 && !d_ex())
|
|
531
|
{
|
|
532
|
con = 20;
|
|
533
|
customcon = 0;
|
|
534
|
with (_power_up_fx)
|
|
535
|
clean_up();
|
|
536
|
c_waitcustom_endc_waitcustom_end
function c_waitcustom_end()
{
with (obj_cutscene_master)
{
cs_wait_custom = 0;
waiting = 0;
}
} ();
|
|
537
|
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()
|
|
538
|
{
|
|
539
|
_flowery_y_target = fl_actor.y;
|
|
540
|
});
|
|
541
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "_flowery_hover", false);
|
|
542
|
var move_speed = _shortened_mode ? 20 : 60;
|
|
543
|
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(arg0)
|
|
544
|
{
|
|
545
|
with (obj_border_controller)
|
|
546
|
show_border(1 / arg0);
|
|
547
|
}, move_speed);
|
|
548
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
549
|
c_autodepthc_autodepth
function c_autodepth(arg0)
{
c_cmd("autodepth", arg0, 0, 0, 0);
} (0);
|
|
550
|
c_depthc_depth
function c_depth(arg0)
{
c_cmd("depth", arg0, 0, 0, 0);
} (60000);
|
|
551
|
if (_shortened_mode)
|
|
552
|
{
|
|
553
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_poweringup);
|
|
554
|
setxy(1637, 409);
|
|
555
|
c_animatec_animate
function c_animate(arg0, arg1, arg2)
{
c_cmd("animate", arg0, arg1, arg2, 0);
} (0, 4, 1/3);
|
|
556
|
}
|
|
557
|
c_lerp_var_instance(fl_actor, "y", fl_actor.y, 156, move_speed, 3, "inout");
|
|
558
|
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(arg0)
|
|
559
|
{
|
|
560
|
with (fl_actor)
|
|
561
|
scr_afterimagerscr_afterimager
function scr_afterimager(arg0, arg1, arg2 = false, arg3 = -1)
{
with (instance_create(x, y, obj_afterimager))
{
fog = arg3;
creator = other.id;
remaining = arg0;
period = arg1;
alarm[0]
rainbow_mode = arg2;
}
} (arg0 - 2, 2, true);
|
|
562
|
}, move_speed);
|
|
563
|
c_pannablec_pannable
function c_pannable(arg0)
{
c_cmd("pannable", arg0, 0, 0, 0);
} (1);
|
|
564
|
c_panc_pan
function c_pan(arg0, arg1, arg2)
{
c_cmd("pan", arg0, arg1, arg2, 0);
} (1320, 0, move_speed);
|
|
565
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (battle_transition, "con", 2);
|
|
566
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (move_speed + 1);
|
|
567
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
568
|
if (!_shortened_mode)
|
|
569
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (30);
|
|
570
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
571
|
c_spriteimagec_spriteimage
function c_spriteimage(arg0, arg1, arg2 = -999)
{
c_cmd("sprite", arg0, 0, 0, 0);
c_cmd("imageindex", arg1, 0, 0, 0);
if (arg2 != -999)
{
c_cmd("imagespeed", arg2, 0, 0, 0);
if (arg2 == 0)
c_cmd("autowalk", false, 0, 0, 0);
}
} (3557, 0);
|
|
572
|
c_animatec_animate
function c_animate(arg0, arg1, arg2)
{
c_cmd("animate", arg0, arg1, arg2, 0);
} (0, 7, 0.5);
|
|
573
|
c_lerp_var_instance(fl_actor, "x", fl_actor.x, 1757, 16, 3, "inout");
|
|
574
|
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()
|
|
575
|
{
|
|
576
|
with (fl_actor)
|
|
577
|
scr_afterimagerscr_afterimager
function scr_afterimager(arg0, arg1, arg2 = false, arg3 = -1)
{
with (instance_create(x, y, obj_afterimager))
{
fog = arg3;
creator = other.id;
remaining = arg0;
period = arg1;
alarm[0]
rainbow_mode = arg2;
}
} (12, 2, true);
|
|
578
|
});
|
|
579
|
c_waitc_wait
function c_wait(arg0)
{
c_cmd("wait", arg0, 0, 0, 0);
} (17);
|
|
580
|
c_selc_sel
function c_sel(arg0)
{
c_cmd("select", arg0, 0, 0, 0);
} (fl);
|
|
581
|
c_var_add("x", 64);
|
|
582
|
c_spritec_sprite
function c_sprite(arg0)
{
c_cmd("sprite", arg0, 0, 0, 0);
} (spr_flowery_idle3);
|
|
583
|
c_image_speed(1/3);
|
|
584
|
c_var_lerp_instancec_var_lerp_instance
function c_var_lerp_instance()
{
if (argument_count < 6)
c_cmd_x("var", argument[0], argument[1], argument[2], argument[3], argument[4], 0);
else if (argument_count == 6)
c_cmd_x("var", argument[0], argument[1], argument[2], argument[3], argument[4], argument[5]);
else if (argument_count == 7)
c_cmd_x("var", argument[0], argument[1], argument[2], argument[3], argument[4], string(argument[5]) + string(argument[6]));
}
function c_lerp_var_instance()
{
if (argument_count >= 6)
c_var_lerp_instance(argument0, argument1, argument2, argument3, argument4, argument5);
else if (argument_count >= 7)
c_var_lerp_instance(argument0, argument1, argument2, argument3, argument4, argument5, argument6);
else
c_var_lerp_instance(argument0, argument1, argument2, argument3, argument4);
}
function c_lerpvar_instance()
{
if (argument_count >= 6)
c_var_lerp_instance(argument0, argument1, argument2, argument3, argument4, argument5);
else if (argument_count >= 7)
c_var_lerp_instance(argument0, argument1, argument2, argument3, argument4, argument5, argument6);
else
c_var_lerp_instance(argument0, argument1, argument2, argument3, argument4);
} (fl_actor, "image_speed", 1/3, 0.2, 60);
|
|
585
|
c_var_instancec_var_instance
function c_var_instance(arg0, arg1, arg2)
{
c_cmd_x("var", arg0, arg1, arg2, 0, 0, 0);
} (id, "petal_burst", true);
|
|
586
|
c_wait_ifc_wait_if
function c_wait_if(arg0, arg1, arg2, arg3)
{
c_cmd("waitif", arg0, arg1, arg2, arg3);
} (battle_transition, "con", "<=", -1);
|
|
587
|
c_waitcustomc_waitcustom
function c_waitcustom()
{
c_cmd("waitcustom", 0, 0, 0, 0);
} ();
|
|
588
|
}
|
|
589
|
if (con == 20 && customcon == 1 && !d_ex())
|
|
590
|
{
|
|
591
|
con = -1;
|
|
592
|
snd_free_all();
|
|
593
|
scr_tempsavescr_tempsave
function scr_tempsave()
{
filechoicebk2 = global.filechoice;
global.filechoice = 9;
scr_saveprocess(global.filechoice);
global.filechoice = filechoicebk2;
} ();
|
|
594
|
global.tempflag[98] = 1;
|
|
595
|
global.flowery_battle_items_used = false;
|
|
596
|
global.flowery_battle_items = [];
|
|
597
|
for (var i = 0; i < 13; i++)
|
|
598
|
global.flowery_battle_items[i] = global.item[i];
|
|
599
|
var kr_x = kr_actor.x;
|
|
600
|
var kr_y = kr_actor.y;
|
|
601
|
obj_mainchara.x = kr_x;
|
|
602
|
obj_mainchara.y = kr_y;
|
|
603
|
obj_mainchara.visible = 1;
|
|
604
|
var su_x = su_actor.x;
|
|
605
|
var su_y = su_actor.y;
|
|
606
|
var ra_x = ra_actor.x;
|
|
607
|
var ra_y = ra_actor.y;
|
|
608
|
with (obj_caterpillarchara)
|
|
609
|
{
|
|
610
|
if (name == "susie")
|
|
611
|
{
|
|
612
|
x = su_x;
|
|
613
|
y = su_y;
|
|
614
|
}
|
|
615
|
else if (name == "ralsei")
|
|
616
|
{
|
|
617
|
x = ra_x;
|
|
618
|
y = ra_y;
|
|
619
|
}
|
|
620
|
scr_caterpillar_interpolatescr_caterpillar_interpolate
function scr_caterpillar_interpolate(arg0 = "none")
{
if (arg0 == "all")
{
with (obj_caterpillarchara)
scr_caterpillar_interpolate_old();
}
else if (arg0 == "none")
{
if (object_index == obj_caterpillarchara)
scr_caterpillar_interpolate_old();
}
else
{
with (obj_caterpillarchara)
{
if (name == arg0)
scr_caterpillar_interpolate_old();
}
}
}
function scr_caterinterp(arg0 = "none")
{
scr_caterpillar_interpolate(arg0);
}
function scr_caterpillar_interpolate_old()
{
var _newfacing = direction_to_object_bbox(id, 1198, true);
remx[0] = obj_mainchara.x;
remy[0] = obj_mainchara.y;
facing[0] = _newfacing;
for (var _iaia = target; _iaia > 0; _iaia -= 1)
{
remx[_iaia] = lerp(obj_mainchara.x, x + halign, _iaia / target);
remy[_iaia] = lerp(obj_mainchara.y, y + valign, _iaia / target);
facing[_iaia] = _newfacing;
}
} ();
|
|
621
|
visible = 1;
|
|
622
|
}
|
|
623
|
with (obj_actor)
|
|
624
|
visible = 0;
|
|
625
|
_flowery_float = false;
|
|
626
|
encounterflag = 225;
|
|
627
|
global.flag[54 encounter_pointer] = encounterflag;
|
|
628
|
scr_battlescr_battle
function scr_battle(arg0, arg1, arg2, arg3, arg4)
{
global.specialbattle = arg1;
global.encounterno = arg0;
if (global.flag[9 battle_music] != 2)
{
global.flag[9 battle_music] = 1;
if (global.chapter == 5)
global.batmusic[0] = snd_init("rakuichi_buster_wip.ogg");
else
global.batmusic[0] = snd_init("battle.ogg");
}
instance_create(0, 0, obj_battleback);
instance_create(0, 0, obj_encounterbasic);
__enemymarker[0] = arg2;
__enemymarker[1] = arg3;
__enemymarker[2] = arg4;
for (__ien = 0; __ien < 3; __ien++)
{
if (global.monstertype[__ien] != 0(None))
{
if (!i_ex(__enemymarker[__ien]))
{
__enemymarker[__ien] = scr_dark_marker(global.monstermakex[__ien] + 300, global.monstermakey[__ien], object_get_sprite(global.monsterinstancetype[__ien]));
__enemymarker[__ien].depth = -__ien;
}
__enemymarker[__ien].__ien = __ien;
with (__enemymarker[__ien])
{
scr_move_to_point_over_time(global.monstermakex[__ien], global.monstermakey[__ien], 20);
__doom = instance_create(x, y, obj_doom);
__doom.target = id;
var alarmtime = 25;
if (sprite_index == spr_shinobeetle || sprite_index == spr_shinobeetle_pose)
alarmtime = 24;
__doom.alarm[0] = alarmtime;
__doom.respects_platmode = false;
if (global.chapter == 5 && room == room_dw_cliff_kawkawdash)
{
if (sprite_index == spr_kawkaw)
{
image_xscale = 1.5;
image_yscale = 1.5;
}
}
}
}
}
} (225, 0, fl_actor, 0, 0);
|
|
629
|
with (fl_actor)
|
|
630
|
visible = true;
|
|
631
|
with (obj_battleback)
|
|
632
|
instance_destroy();
|
|
633
|
global.flag[9 battle_music] = 1;
|
|
634
|
}
|
|
635
|
if (petal_burst)
|
|
636
|
{
|
|
637
|
petal_burst = false;
|
|
638
|
var _burst = instance_create(fl_actor.x + 47, fl_actor.y + 31, obj_petal_burst);
|
|
639
|
_burst.depth = fl_actor.depth;
|
|
640
|
_burst.direction = 10;
|
|
641
|
_burst.sprites = [4523, 3786, 5856];
|
|
642
|
_burst.count = 20;
|
|
643
|
_burst.strength = 0.5;
|
|
644
|
}
|
|
645
|
with (obj_doom)
|
|
646
|
{
|
|
647
|
if (i_ex(obj_battlecontroller))
|
|
648
|
sprite_index = spr_nothing;
|
|
649
|
}
|