AleeBot/BOT TIMER.txt

10 lines
283 B
Text
Raw Normal View History

2017-07-06 16:49:18 +01:00
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);
});