Deltarune (Chapter 5) script viewer

← back to main script listing

gml_Object_obj_dw_cliff_kawkawdash_Step_2

related scripts: Create_0Draw_0Other_11Step_0Step_1Step_2

(view raw script w/o annotations or w/e)
1
with (npc_aqua)
2
{
3
    var yy = y;
4
    if (instance_exists(jumper))
5
    {
6
        if (instance_exists(jumper.body_obj))
7
            yy = jumper.body_obj.y;
8
    }
9
    other.npc_seth.depth = marker.depth;
10
    other.npc_seth.x = x + 50;
11
    other.npc_seth.y = yy - 70;
12
}