Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //constants
- const send = MPP.chat.send;
- //vars
- var username = msg.p.name;
- var userinput = msg.a.substring(5);
- //main command function
- function reminder(userinput, username) {
- if (userinput == "") return send("Please enter second time to remind. (1000 = 1 sec) If you have to remind in minute or hout and you don't how much sec = min or hour. You can use .hts [hour to sec] .mts [minute to second]");
- send("✅Reminder set done");
- setTimeout(function() {
- send("Reminder: " + username + "Take your time");
- }, userinput);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement