Undertale script viewer

← back to main script listing

gml_Object_obj_bringitinguys_Alarm_2

(view raw script w/o annotations or w/e)
1
if (global.hp < global.maxhp)
2
{
3
    global.hp += 1;
4
    snd_play(snd_heal_c);
5
}
6
alarm[2] = 12;
gml_Object_obj_bringitinguys_Alarm_2.gml

if (global.hp < global.maxhp) { global.hp += 1; snd_play(snd_heal_c); } alarm[2] = 12;