It requires that at the time that the BoT ChanServ send me a private with the text "Permission denied!", continue the loop.
Quote:
/joinall {
echo -s Joining all channels.....
var %counter = 1
while (%counter <= $numtok(%recan,44)) {
if ( $comchan($me,%counter) == $gettok(%recan,%counter,44)) { .timer 1 $calc(%counter + 3) echo -s you already are in $comchan($me,%counter)
inc %counter
}
else {
.timer 1 $calc(%counter + 3) .msg chan invite $gettok(%recan,%counter,44)
inc %counter
on *:text:*Permission denied!*:?:{ continue }
}
}


Doing it the way I do not work.
Is there any other way?
Edit:
For the case could not solve, is there any way that the alias detects that message and ignore it, continuing the loop ?

Last edited by JuanAm; 03/04/16 10:21 PM. Reason: more data