1 |
script_execute(scr_controls_text); |
2 |
if (instance_exists(obj_quote_bubble_battle)) |
3 |
{ |
4 |
if (draw_enabled == false) |
5 |
obj_quote_bubble_battle.visible = 0; |
6 |
else |
7 |
obj_quote_bubble_battle.visible = 1; |
8 |
} |
9 |
if (draw_enabled == false) |
10 |
exit; |
11 |
if (key_revert_pressed) |
12 |
{ |
13 |
characters = message_length; |
14 |
message_draw = string_copy(message[message_current], 0, characters); |
15 |
} |
16 |
if (characters < message_length) |
17 |
{ |
18 |
if (counter == 0) |
19 |
{ |
20 |
script_execute(scr_text_increase); |
21 |
script_execute(scr_talking_martlet); |
22 |
} |
23 |
else |
24 |
{ |
25 |
can_talk = false; |
26 |
} |
27 |
} |
28 |
else |
29 |
{ |
30 |
can_talk = false; |
31 |
if (key_select_pressed && skippable == true) |
32 |
{ |
33 |
if (message_current < message_end) |
34 |
{ |
35 |
message_adv = true; |
36 |
} |
37 |
else |
38 |
{ |
39 |
with (obj_heart_battle_fighting_parent) |
40 |
moveable = true; |
41 |
with (obj_quote_bubble_battle) |
42 |
instance_destroy(); |
43 |
instance_destroy(); |
44 |
} |
45 |
} |
46 |
} |
47 |
if (message_adv == true) |
48 |
{ |
49 |
message_current += 1; |
50 |
message_length = string_length(message[message_current]); |
51 |
characters = 0; |
52 |
message_draw = ""; |
53 |
draw_enabled = true; |
54 |
message_adv = false; |
55 |
} |
56 |
script_execute(scr_text_counter); |