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 |
script_execute(scr_cutscene_battle_axis_geno); |
10 |
if (draw_enabled == false) |
11 |
exit; |
12 |
if (key_revert_pressed) |
13 |
{ |
14 |
characters = message_length; |
15 |
message_draw = string_copy(message[message_current], 0, characters); |
16 |
} |
17 |
if (characters < message_length) |
18 |
{ |
19 |
if (counter == 0) |
20 |
{ |
21 |
script_execute(scr_text_increase); |
22 |
script_execute(scr_talking_axis); |
23 |
} |
24 |
else |
25 |
{ |
26 |
can_talk = false; |
27 |
} |
28 |
} |
29 |
else |
30 |
{ |
31 |
can_talk = false; |
32 |
if (key_select_pressed && skippable == true) |
33 |
{ |
34 |
if (message_current < message_end) |
35 |
{ |
36 |
message_adv = true; |
37 |
} |
38 |
else |
39 |
{ |
40 |
with (obj_quote_bubble_battle) |
41 |
instance_destroy(); |
42 |
global.text_speed = 1; |
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); |