Undertale script viewer

← back to main script listing

gml_Object_obj_skymoon_Alarm_3

(view raw script w/o annotations or w/e)
1
if (sum == 1)
2
{
3
    aimbullet = instance_create(200 - random(200), 200 - random(200), obj_meteorbullet);
4
    with (aimbullet)
5
        direction = point_direction(x, y, obj_heart.x, obj_heart.y);
6
    alarm[3] = 30;
gml_Object_obj_skymoon_Alarm_3.gml

if (sum == 1) { aimbullet = instance_create(200 - random(200), 200 - random(200), obj_meteorbullet); with (aimbullet) direction = point_direction(x, y, obj_heart.x, obj_heart.y); alarm[3] = 30; }
7
}