Deltarune (Chapter 3) script viewer

← back to main script listing

gml_Object_obj_board_weedmow_Step_0

(view raw script w/o annotations or w/e)
1
if (active)
2
{
3
    if (place_meeting(x, y, obj_board_lawnmower))
4
    {
5
        snd_stop(snd_board_kill);
6
        snd_play(snd_board_kill);
7
        with (obj_board_event_lawnmower)
8
            mowscore++;
9
        instance_destroy();
10
    }
11
}