Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_room_controller_mansion_entrance_Create_0

(view raw script w/o annotations or w/e)
1
if (global.dunes_flag[41] >= 5)
2
{
3
    instance_destroy();
4
    exit;
5
}
6
if (global.dunes_flag[41] >= 3)
7
{
8
    scene = 11;
9
    exit;
10
}
11
scene = 0;
12
cutscene_timer = 0;
13
scr_cutscene_start
scr_cutscene_start

function scr_cutscene_start() { global.cutscene = true; obj_pl.state = scr_frozen_state; obj_pl.image_index = 0; obj_pl.image_speed = 0; }
();