Undertale script viewer

← back to main script listing

gml_Object_obj_chairiel_Other_7

(view raw script w/o annotations or w/e)
1
if (sprite_index == spr_chairielgetup)
2
{
3
    image_index = 0;
4
    image_speed = 0;
5
    sprite_index = spr_chairempty;
6
    instance_create(x + 28, y + 3, obj_toroverworld3);
7
    with (obj_toroverworld3)
8
        facing = 1;
9
    with (obj_toroverworld3)
10
        path_start(path_torielwalkhouse1, 5, path_action_stop, 0);
11
    global.plot = 21;
12
    with (obj_mainchara)
13
        uncan = 0;
14
    global.interact = 0;
15
    instance_create(x, y, obj_chairiel);
16
    instance_destroy();
17
}