Advertisement

 Protection on IRC

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

  • Guest Nick Kicker
  • !list Kicker
  • Mass Clone Flood Protection
  • Mass Kick Protection
  • Repeat Flood Protection
  • Ban Protection
  • Long Text Kicker
  • Spam/Advertisement Kicker [Fixed]
  • Clone Protection
  • Revolving Door Kicker
  • Seen Script Kicker
  • Swear Kicker
  • Control Code Kicker
  • Excess Punctuation Kicker
  • Caps Kicker
  • Caps Kicker #2
  • Control Code Kicker #2
  • Repeat Kicker
  • Personal Protection

  • Ctcp Flood Protection
  • Dcc Flood Protection
  • Query Window Flood Protection
  • Notice Flood Protection
  • Internet/PC Protection
  •  

    Guest Nick Kicker
    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.