twinblade-infinity/scripts/action_set_alarm/action_set_alarm.gml

10 lines
199 B
Plaintext
Raw Normal View History

/// @description (Old DnD) - set alarm
/// @param index alarm index
/// @param val value to set to
function action_set_alarm(argument0, argument1) {
alarm_set( argument1, argument0 );
}