Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_quote_battle_guardener_death_Step_1

(view raw script w/o annotations or w/e)
1
script_execute(scr_controls_text);
2
if (message_current == 1 || message_current == 0)
3
    draw_set_color(c_fuchsia);
4
if (key_revert_pressed)
5
{
6
    characters = message_length;
7
    message_draw = string_copy(message[message_current], 0, characters);
8
}
9
if (characters < message_length)
10
{
11
    if (counter == 0)
12
    {
13
        script_execute(scr_text_increase);
14
        script_execute(scr_talking_axis);
15
    }
16
    else
17
    {
18
        can_talk = false;
19
    }
20
}
21
else
22
{
23
    can_talk = false;
24
    if (key_select_pressed)
25
    {
26
        if (message_current < message_end)
27
        {
28
            message_current += 1;
29
            message_length = string_length(message[message_current]);
30
            characters = 0;
31
            message_draw = "";
32
        }
33
        else
34
        {
35
            global.enemy_dead = true;
36
            instance_destroy(obj_quote_bubble_battle);
37
            instance_destroy();
38
        }
39
    }
40
}
41
script_execute(scr_text_counter);