Undertale script viewer

← back to main script listing

gml_Object_obj_6shoe_master_Alarm_0

(view raw script w/o annotations or w/e)
1
if (type == 0)
2
{
3
    if (num != 12)
4
        instance_create(room_width + 10, 400, obj_6shoe_part);
5
    else
6
        instance_create(room_width + 50, 400, obj_6shoe_act);
7
    num += 1;
8
    alarm[0] = 24;
gml_Object_obj_6shoe_master_Alarm_0.gml

if (type == 0) { if (num != 12) instance_create(room_width + 10, 400, obj_6shoe_part); else instance_create(room_width + 50, 400, obj_6shoe_act); num += 1; alarm[0] = 24; }
9
}