Deltarune (Chapter 1) script viewer

← back to main script listing

gml_Object_obj_musicer_man_Step_0

(view raw script w/o annotations or w/e)
1
timer += 1;
2
if (timer == 1)
3
{
4
    with (obj_caterpillarchara)
5
        instance_destroy();
6
    global.flag[32 hide_equip_comments] = 1;
7
}
8
if (timer == 2)
9
    snd_free_all();
10
if (timer == 3)
11
{
12
    if (!snd_is_playing(global.currentsong[1]))
13
    {
14
        global.currentsong[0] = snd_init("man.ogg");
15
        global.currentsong[1] = mus_loop_ext(global.currentsong[0], 1, 1);
16
    }
17
}
18
if (timer == 4)
19
    instance_destroy();