Deltarune script viewer

← back to main script listing

gml_Object_obj_masterPlatformController_Create_0

(view raw script w/o annotations or w/e)
1
freeze = 0;
2
mouseSpawn = false;
3
freezespawn = -1;
4
hasbegun = 0;
5
if (global.flag[379 noelle_beat_fear] == 0 || global.plot < 78)
6
{
7
    plat[0] = instance_create(x, y, obj_rotationtile_tower);
8
    with (plat[0])
9
    {
10
        x = lx;
11
        y = ry;
12
        phase = 3;
13
        starter = 1;
14
    }
15
    plat[1] = instance_create(x, y, obj_rotationtile_tower);
16
    with (plat[1])
17
    {
18
        x = rx;
19
        y = ry;
20
        phase = 1;
21
    }
22
    currentPlatform = 1;
23
    waitbuffer = 0;
24
    makenewplatform = 0;
25
    noelle = 0;
26
    init = 0;
27
    active = 0;
28
}