aboutsummaryrefslogtreecommitdiff
path: root/BOT TIMER.txt
blob: 4369b80fc26c7c100139d65d6cb7eef3a4f07b42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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);
});