Deltarune script viewer

← back to main script listing

gml_GlobalScript_c_stickto_stop

(view raw script w/o annotations or w/e)
1
function c_stickto_stop
c_stickto_stop

function c_stickto_stop() { c_cmd("stick", "off", 0, 0, 0); }
()
2
{
3
    c_cmd
c_cmd

function c_cmd(arg0, arg1, arg2, arg3, arg4) { if (instance_exists(obj_cutscene_master)) { __cs_i = obj_cutscene_master.maximum_command - 1; obj_cutscene_master.command[__cs_i] = arg0; obj_cutscene_master.command_arg1[__cs_i] = arg1; obj_cutscene_master.command_arg2[__cs_i] = arg2; obj_cutscene_master.command_arg3[__cs_i] = arg3; obj_cutscene_master.command_arg4[__cs_i] = arg4; with (obj_cutscene_master) maximum_command++; } }
("stick", "off", 0, 0, 0);
4
}