Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_battle_enemy_attack_tellyvis_tape_generator_Create_0

(view raw script w/o annotations or w/e)
1
var dbox = 3154
2
attack_number = 7
3
attack_interval = 25
4
alarm[0] = 15
alarm[0]

if (attack_number > 0) { instance_create_depth(0, 0, -1000, obj_battle_enemy_attack_tellyvis_tape) attack_number -= 1 alarm[0] = attack_interval } else instance_destroy()
5
depth = 0
6
scr_enable_battle_box_surface
scr_enable_battle_box_surface

function scr_enable_battle_box_surface() //gml_Script_scr_enable_battle_box_surface { if (!instance_exists(obj_surface_drawer)) instance_create_depth(0, 0, -999, obj_surface_drawer) }
()