Files
AM2R-Community-Updates/scripts/make_notification.gml
2020-12-22 20:54:55 -06:00

9 lines
278 B
Plaintext

/// make_notification(text1, text2, delay, btn1, btn2)
with (oNotification) instance_destroy();
notif = instance_create(0, 0, oNotification);
notif.text1 = argument0;
notif.text2 = argument1;
notif.alarm[0] = argument2;
notif.btn1_name = argument3;
notif.btn2_name = argument4;