Advertisement
AEAEAEAEarray

Untitled

Aug 23rd, 2021
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //constants
  2. const send = MPP.chat.send;
  3.  
  4. //vars
  5. var username = msg.p.name;
  6. var userinput = msg.a.substring(5);
  7.  
  8. //main command function
  9. function reminder(userinput, username) {
  10.     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]");
  11.     send("✅Reminder set done");
  12.     setTimeout(function() {
  13.         send("Reminder: " + username + "Take your time");
  14.     }, userinput);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement