Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_day2lever_Step_0

(view raw script w/o annotations or w/e)
1
if (!instance_exists(obj_pl))
2
    exit;
3
if (global.flag[4 Pulled the lever immediately after the second Dalv monologue] == true && image_index == 0)
4
    swit = true;
5
if (keyboard_multicheck_pressed(0))
6
{
7
    if (scr_interact
scr_interact

function scr_interact() { if (distance_to_object(obj_pl) < 20 && obj_pl.state == scr_normal_state) { var pl_dir = obj_pl.direction; var pl_x = 0; var pl_y = 0; var check_distance_x = 0; var check_distance_y = 0; switch (pl_dir) { case 0: pl_x = obj_pl.bbox_right; pl_y = obj_pl.bbox_top + 1; check_distance_x = 20; break; case 180: pl_x = obj_pl.bbox_left; pl_y = obj_pl.bbox_top + 1; check_distance_x = -20; break; case 90: pl_x = obj_pl.x; pl_y = obj_pl.bbox_top; check_distance_y = -20; break; case 270: pl_x = obj_pl.x; pl_y = obj_pl.bbox_bottom; check_distance_y = 20; break; } if (collision_line_first(pl_x, pl_y, pl_x + check_distance_x, pl_y + check_distance_y, id, false, false)) return true; } }
() == true)
8
    {
9
        if (swit == false)
10
        {
11
            swit = true;
12
            audio_play_sound(snd_switch, 1, 0);
13
            global.flag[4 Pulled the lever immediately after the second Dalv monologue] = true;
14
        }
15
    }
16
}
17
if (swit == true)
18
    image_index = 1;
19
if (swit == false)
20
    image_index = 0;
21
if (image_index == 1)
22
{
23
    with (obj_spikes)
24
        image_index = 1;
25
}
26
else if (image_index == 0)
27
{
28
    with (obj_spikes)
29
        image_index = 0;
30
}