1 |
script_execute(gml_Script_scr_controls_text) |
2 |
if key_revert_pressed |
3 |
{ |
4 |
characters = message_length |
5 |
message_draw = string_copy(message[message_current], 0, characters) |
6 |
} |
7 |
if (characters < message_length) |
8 |
{ |
9 |
if (counter == 0) |
10 |
{ |
11 |
script_execute(gml_Script_scr_text_increase) |
12 |
script_execute(gml_Script_scr_talking_normal) |
13 |
} |
14 |
else |
15 |
can_talk = false |
16 |
} |
17 |
else |
18 |
{ |
19 |
can_talk = false |
20 |
if key_select_pressed |
21 |
{ |
22 |
if (message_current < message_end) |
23 |
{ |
24 |
message_current += 1 |
25 |
message_length = string_length(message[message_current]) |
26 |
characters = 0 |
27 |
message_draw = "" |
28 |
} |
29 |
else |
30 |
{ |
31 |
global.text_box_open = false |
32 |
with (obj_stats_screen_pause_screen_overworld) |
33 |
instance_destroy() |
34 |
with (obj_main_selection_pause_screen_overworld) |
35 |
instance_destroy() |
36 |
with (obj_frisk) |
37 |
moveable = true |
38 |
instance_destroy() |
39 |
} |
40 |
} |
41 |
} |
42 |
script_execute(gml_Script_scr_text_counter) |