Deltarune (Chapter 4) script viewer

← back to main script listing

gml_Object_obj_climb_destructableareatrigger_Other_12

(view raw script w/o annotations or w/e)
1
with (obj_climb_destructableclimbarea)
2
{
3
    if (dangerous && place_meeting(x, y, other) && con == 0)
4
        con = 1;
5
}
6
with (obj_climb_appearingclimbarea)
7
{
8
    if (place_meeting(x, y, other))
9
        con = 1;
10
}
11
with (obj_climb_animationmarker)
12
{
13
    if (trigger_activated && place_meeting(x, y, other))
14
        event_user(10);
15
}
16
with (obj_climb_titan_kris_throw_off_sequence)
17
{
18
    if (place_meeting(x, y, other))
19
        event_user(0);
20
}
21
instance_destroy();