Undertale script viewer

← back to main script listing

gml_Object_obj_theend_forcefield_Create_0

(view raw script w/o annotations or w/e)
1
con = 0;
2
ended = 0;
3
if (global.flag[418 core_shooter_complete] == 1)
4
    ended = 1;
5
if (global.flag[419 warriors_path_complete] == 1)
6
    ended = 1;
7
if (global.flag[420 core_laser_timeout] == 1)
8
    ended = 1;
9
if (ended == 0)
10
{
11
    ff = instance_create(x, y, obj_kitchenforcefield);
12
    ff.image_yscale = 4;
13
    ff.basic = 0;
14
}
15
timer = 0;