Top

irc antiban


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  4.0
Scores Submitted  2
Date Added  Feb 28, 2008
Last Updated  Feb 28, 2008
Tags  anti  antiban  ban 
  Bookmark and Share

Introduction

Right a simple script that i made, very easy to use.

When banned, or when banned and kicked from a channel this code unbans you using chanserv, re-invites you using chanserv gives you ops, voice, half-op and protect.

Not all of them will occur, it depends on channel access available to you

Grab the Code

Comments

  (2)  RSS
LucSatise
Comments: 122
 
mIRC Snippet:  irc antiban
Posted on Feb 28, 2008 1:45 pm
u forgot to rejoin chan. not everyone joins on invite/kick

Also the $me after the cs commands are pointless as wihout them cs wil give u status anyway.
When checkking address always check if it is in mask 5 formore validity.

Code:

on *:ban:#:{
  if $banmask iswm $address($me,5) {
    msg chanserv unban $chan
    msg chanserv  invite $chan
    join $chan
    msg chanserv  voice $chan
    msg chanserv  op $chan
    msg chanserv  protect $chan
  }
}
Cheiron
Comments: 329
 
mIRC Snippet:  irc antiban
Posted on Feb 28, 2008 4:56 pm
nice simple script, didnt need much to correct it so it would work. goes nicely. gets a 7 from me. keep up the work :)

Please Register or Login to start posting comments.
Bottom