when the bot connect you trigger the timer.
on *:connect: {
.timer 1 60 echo -a It have been 1 minute since i connected!
}
or you can use a on join event.
on *:join:#: {
if ($nick == $me) { .timer 1 60 I joined the channel 1 minute ago! }
}
You can also trigger a alias with the timer.
on *:join:#: {
if ($nick == $me) { .timer 1 60 call_alias }
}
alias call_alias {
echo -a It was one minute since you triggered this alias!
; restarting the call again, and it will keep on goint untill you stop it.
.timer 1 60 call_alias
}
And this goes in to the remote, you need to give the value in seconds, 60 = 1 minute, 120 = 2 minutes and so on.