Deltarune (Chapter 4) script viewer

← back to main script listing

gml_Object_obj_musicer_torhouse_Create_0

(view raw script w/o annotations or w/e)
1
if (!snd_is_playing(global.currentsong[1]))
2
{
3
    if (global.chapter == 4 && (global.plot < 20 || global.plot >= 300))
4
        exit;
5
    global.currentsong[0] = snd_init("home.ogg");
6
    global.currentsong[1] = mus_loop_ext(global.currentsong[0], 1, 1);
7
}