mIRC Home    About    Download    Register    News    Help

Print Thread
#98561 24/09/04 09:11 PM
Joined: Jul 2004
Posts: 59
S
synth7 Offline OP
Babel fish
OP Offline
Babel fish
S
Joined: Jul 2004
Posts: 59
I've got the option on in the settings, and it works. If I do a !kick trigger to get kicked by the bot, I'll rejoin instantly...but if I do /k <my name> <reason> it will kick me, but it won't rejoin automatically....

Just wondering if it was a bug, or something I'm overlooking...



#98562 24/09/04 09:17 PM
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
mIRC won't auto-rejoin if you kick yourself, the idea (I assume) is that if you kick yourself you don't want to be in the channel.

You can use a script to automatically rejoin the channel if you kick yourself:
on me:*:KICK:#:if ( $knick == $me ) { join # }

You can also have it so you only auto-rejoin if the setting is enabled in options:
on me:*:KICK:#:if ( $knick == $me ) && ( $gettok($readini($mircini,options,n0),8,44) ) { join # }


Link Copied to Clipboard