Undertale script viewer

← back to main script listing

gml_Object_obj_bigdog_Step_0

(view raw script w/o annotations or w/e)
1
if (myinteract == 453748)
2
{
3
    if (snd_isplaying(snd_movemenu) == 0)
4
        snd_play(snd_movemenu);
5
    if (image_index == 0)
6
    {
7
        image_index = 1;
8
        glow = 1;
9
    }
10
    else
11
    {
12
        image_index = 0;
13
        glow = 0;
14
    }
15
    myinteract = 0;
16
}
17
if (myinteract == 1)
18
{
19
    global.interact = 1;
20
    caster_pause(global.currentsong);
21
    image_index = 1;
22
    alarm[4] = 15;
23
    myinteract = 0;
24
}
25
if (bluh == 1)
26
{
27
    snd_play(snd_bluh);
28
    image_index = 2;
29
    bluh = 2;
30
    alarm[4] = 35;
31
}
32
if (bluh == 3)
33
{
34
    global.interact = 0;
35
    image_index = 0;
36
    caster_resume(global.currentsong);
37
    bluh = 0;
38
}