Many users need protection and channel management tools, here we supply everyone with the tools and knowledge you'll need to IRC safely and securely operate your channel. There are two sections, one for channel protection and the other for personal protection.
Channel Protection
Personal Protection
Guest Nick Kicker |
Written by DeviL |
Wanna keep those annoying Guest????? nicks out of your channel? Here's something to help you out without the need for another entry on your blacklist. Code should go into mIRC Remotes and code is explained below...
on @*:join:#: { if (Guest* iswm $nick) { mode # +b Guest*!*@* kick # $nick No Guest nicks allowed! } }
The code is pretty simple, you may copy/paste it into remotes and you're set to go. Below is an explanation of the code.
on @*:join:#: { ; Triggers when users join a channel you're op on if (Guest* iswm $nick) { ; Checks if Guest* wildmatches $nick mode # +b Guest*!*@* kick # $nick No Guest nicks allowed! ; Since Guest* did match the nick, we proceed to kick/ban } }
Now you don't have anymore Guest nicks in your channel, you can modify this as you please according to your needs. If you find any errors, please report them to us via email, memo, or our script forum, thank you for your time.