mIRC Home    About    Download    Register    News    Help

Print Thread
#161931 12/10/06 03:29 PM
Joined: Oct 2006
Posts: 23
F
Ameglian cow
OP Offline
Ameglian cow
F
Joined: Oct 2006
Posts: 23
how can you do so that a script is timing to rejoin a chan when the user is banned?

I want it to try to rejoin every 10th (or similar) minute untill it get back in

Last edited by Frenatic; 12/10/06 03:33 PM.
#161932 12/10/06 05:33 PM
Joined: Mar 2003
Posts: 612
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Mar 2003
Posts: 612
Code:
on 1:KICK:#:{
if $knick == $me { 
timerrejoin 0 600 rejoinchan $chan }
}

alias -l rejoinchan {
if $me ison $1 {
timerrejoin off
}
else join $1
}

untested but should work methinks.

btk


billythekid
#161933 14/10/06 01:22 PM
Joined: Oct 2006
Posts: 23
F
Ameglian cow
OP Offline
Ameglian cow
F
Joined: Oct 2006
Posts: 23
thanks, it worked very well smile


Link Copied to Clipboard