use
$nick($chan,nick).idle
to see a nicks idle time
and maybe use a small loop
to check and ban them
-
alias checkidlers {
var %i = 1
while (%i != $nick(#chan,0)) {
if ($nick(#chan,%i).idle > 3000) {
mode #chan +b $address($nick,1)
kick #chan $nick MESSAGE
}
inc %i
}
}

use a timer to run the alias

use the search
aswell cuz im sure this will be there
wink

Last edited by whatsthedillio; 05/11/04 02:23 PM.