1 |
function scr_recreate_heart_battle_menu_text_guardenerscr_recreate_heart_battle_menu_text_guardenerfunction scr_recreate_heart_battle_menu_text_guardener()
{
var last_text_move_select = global.last_text_move_select;
if (text_deadlock_1 == true)
{
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, text_deadlock_contents_1);
}
else if (last_text_move_select == 0)
{
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_intro);
text_deadlock_contents_1 = 3004;
text_deadlock_1 = true;
}
else if (global.enemy_sparing == true)
{
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_sparing);
text_deadlock_contents_1 = 3030;
text_deadlock_1 = true;
}
else
{
var random_text_move_select = irandom_range(1, 6);
if (random_text_move_select == 1)
{
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_1);
text_deadlock_contents_1 = 3020;
text_deadlock_1 = true;
}
else if (random_text_move_select == 2)
{
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_2);
text_deadlock_contents_1 = 3021;
text_deadlock_1 = true;
}
else if (random_text_move_select == 3)
{
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_3);
text_deadlock_contents_1 = 3022;
text_deadlock_1 = true;
}
else if (random_text_move_select == 4)
{
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_4);
text_deadlock_contents_1 = 3023;
text_deadlock_1 = true;
}
else if (random_text_move_select == 5)
{
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_5);
text_deadlock_contents_1 = 3024;
text_deadlock_1 = true;
}
else if (random_text_move_select == 6)
{
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_6);
text_deadlock_contents_1 = 3025;
text_deadlock_1 = true;
}
}
} () |
2 |
{ |
3 |
var last_text_move_select = global.last_text_move_select; |
4 |
if (text_deadlock_1 == true) |
5 |
{ |
6 |
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, text_deadlock_contents_1); |
7 |
} |
8 |
else if (last_text_move_select == 0) |
9 |
{ |
10 |
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_intro); |
11 |
text_deadlock_contents_1 = 3004; |
12 |
text_deadlock_1 = true; |
13 |
} |
14 |
else if (global.enemy_sparing == true) |
15 |
{ |
16 |
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_sparing); |
17 |
text_deadlock_contents_1 = 3030; |
18 |
text_deadlock_1 = true; |
19 |
} |
20 |
else |
21 |
{ |
22 |
var random_text_move_select = irandom_range(1, 6); |
23 |
if (random_text_move_select == 1) |
24 |
{ |
25 |
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_1); |
26 |
text_deadlock_contents_1 = 3020; |
27 |
text_deadlock_1 = true; |
28 |
} |
29 |
else if (random_text_move_select == 2) |
30 |
{ |
31 |
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_2); |
32 |
text_deadlock_contents_1 = 3021; |
33 |
text_deadlock_1 = true; |
34 |
} |
35 |
else if (random_text_move_select == 3) |
36 |
{ |
37 |
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_3); |
38 |
text_deadlock_contents_1 = 3022; |
39 |
text_deadlock_1 = true; |
40 |
} |
41 |
else if (random_text_move_select == 4) |
42 |
{ |
43 |
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_4); |
44 |
text_deadlock_contents_1 = 3023; |
45 |
text_deadlock_1 = true; |
46 |
} |
47 |
else if (random_text_move_select == 5) |
48 |
{ |
49 |
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_5); |
50 |
text_deadlock_contents_1 = 3024; |
51 |
text_deadlock_1 = true; |
52 |
} |
53 |
else if (random_text_move_select == 6) |
54 |
{ |
55 |
instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_6); |
56 |
text_deadlock_contents_1 = 3025; |
57 |
text_deadlock_1 = true; |
58 |
} |
59 |
} |
60 |
} |