on *:text:!count*:#:{
if !$2 {
.msg $nick Format is !count <high number> <interval>
.msg $nick <interval> will default to 1 if not supplied
}
var %rpt = $calc($2 / $iif(!$3,1,$3))
if $abs(%rpt) != %rpt {
.msg $nick Sorry, but I'll never reach $2 using increments of $iif(!$3,1,$3)
}
else {
var %count = 1
while %count <= $2 {
describe $chan %count
inc $iif(!$3,1,$3)
}
}
}