AleeBot/BOT TIMER.txt
2017-07-06 11:49:18 -04:00

10 lines
No EOL
283 B
Text

Here is a timer you could add to aleebot
newCommand("Timer", 0, "timer", "Times a thing", function(args, msgo) {
var interval;
function toRun() {
msgo.reply("You wanted me to remind you to do: " + args[2]);
clearInterval(interval)
}
setInterval(toRun, args[1]*60*1000);
});