Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_recreate_heart_battle_menu_text_bowll_solo

(view raw script w/o annotations or w/e)
1
function scr_recreate_heart_battle_menu_text_bowll_solo
scr_recreate_heart_battle_menu_text_bowll_solo

function scr_recreate_heart_battle_menu_text_bowll_solo() { var last_text_move_select = global.last_text_move_select; var heart_position = script_execute(scr_return_heart_battle_menu_position); 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_low_hp == true) { var random_number = irandom_range(1, 2); if (random_number == 1) { instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_low_hp_1); text_deadlock_contents_1 = 3016; } else if (random_number == 2) { instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_low_hp_1_v2); text_deadlock_contents_1 = 3018; } 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 if (heart_position == "2122") { instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_action_3); text_deadlock_contents_1 = 3008; text_deadlock_1 = true; } else { var random_text_move_select = irandom_range(1, 4); 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; } } }
()
2
{
3
    var last_text_move_select = global.last_text_move_select;
4
    var heart_position = script_execute(scr_return_heart_battle_menu_position);
5
    if (text_deadlock_1 == true)
6
    {
7
        instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, text_deadlock_contents_1);
8
    }
9
    else if (last_text_move_select == 0)
10
    {
11
        instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_intro);
12
        text_deadlock_contents_1 = 3004;
13
        text_deadlock_1 = true;
14
    }
15
    else if (global.enemy_low_hp == true)
16
    {
17
        var random_number = irandom_range(1, 2);
18
        if (random_number == 1)
19
        {
20
            instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_low_hp_1);
21
            text_deadlock_contents_1 = 3016;
22
        }
23
        else if (random_number == 2)
24
        {
25
            instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_low_hp_1_v2);
26
            text_deadlock_contents_1 = 3018;
27
        }
28
        text_deadlock_1 = true;
29
    }
30
    else if (global.enemy_sparing == true)
31
    {
32
        instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_sparing);
33
        text_deadlock_contents_1 = 3030;
34
        text_deadlock_1 = true;
35
    }
36
    else if (heart_position == "2122")
37
    {
38
        instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_action_3);
39
        text_deadlock_contents_1 = 3008;
40
        text_deadlock_1 = true;
41
    }
42
    else
43
    {
44
        var random_text_move_select = irandom_range(1, 4);
45
        if (random_text_move_select == 1)
46
        {
47
            instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_1);
48
            text_deadlock_contents_1 = 3020;
49
            text_deadlock_1 = true;
50
        }
51
        else if (random_text_move_select == 2)
52
        {
53
            instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_2);
54
            text_deadlock_contents_1 = 3021;
55
            text_deadlock_1 = true;
56
        }
57
        else if (random_text_move_select == 3)
58
        {
59
            instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_3);
60
            text_deadlock_contents_1 = 3022;
61
            text_deadlock_1 = true;
62
        }
63
        else if (random_text_move_select == 4)
64
        {
65
            instance_create(obj_dialogue_box_battle.x + 20, obj_dialogue_box_battle.x + 20, obj_dialogue_battle_move_select_4);
66
            text_deadlock_contents_1 = 3023;
67
            text_deadlock_1 = true;
68
        }
69
    }
70
}