on 1:NICK: {
var %x = 1
var %y = $comchan($nick,0)
while (%x <= %y) {
msg $comchan($nick,%x) warning, $nick $+ , I am a b00b.
inc %x
}
}
for consistency's sake, Khaled, a review of the functions that allow indexes of some sort and return something? $gettok allows ranges, $comchan is just one of those that doesn't. It'd be nice to be able to do:
Code:
tokenize 32 $comchan($nick,1-)
while ($0 > 0) {
msg $1 $nick $+ : I'm a b00bo
tokenize 32 $2-
}