Top

badword kick


mIRC Code
+ 1 likes
Please Register to submit score.
Bookmark and Share
Average Score  4.0 (of 3 scores)
Date Added  Sep 22, 2007
Last Updated  Sep 22, 2007
Tags  badword  kick 

Introduction

add your kick works to the line right belowe this line eparate kick words by a comma plz leave a comment and Rate it =]

Grab the Code

on @*:text:*:#: {
  ;Start Insert
  if ($nick !isop #) {
    var %SayKick = WORD1,WORD2,WORD3,WORD 4,WORD5
 
    ;Kick words on the line above this line
 
    var %SayKickCount = 0
    while ($gettok(%SayKick,0,44) > %SayKickCount) {
      inc %SayKickCount
      if ($gettok(%SayKick,%SayKickCount,44) isin $strip($1-)) {
        var %SayKickHit = Yes
      }
    }
    if (%SayKickHit == Yes) {
      ban # $nick 2
      kick # $nick Baned
    }
  }
  ;End Insert
}

Comments

  (13)  RSS
mountaindew
Comments: 1,826
 
mIRC Snippet:  badword kick
Posted on Sep 22, 2007 1:59 pm
rather than ppl manually adding it, just do something like

Code:

menu status,menu,channel {
  Bad Word Kicker
  .Add Word: set %saykick $addtok(%saykick,$$?="Word?",44)
  .Rem Word: set %saykick $remtok(%saykick,$$?"Word?",1,44)
}
Cazz
Comments: 40
 
mIRC Snippet:  badword kick
Posted on Sep 22, 2007 2:07 pm
its okay, but i dont think its very useful since theres botserv and all. :|
XRaGeX
Comments: 10
 
mIRC Snippet:  badword kick
Posted on Sep 22, 2007 2:10 pm
Yes, I gave it a 3 because of 2 reasons, We Have BotServs.. and Most Servers Dont have it... but they do have services and flood control. And The Mode +G is implanted on most servers so i found no use for it. Sorry
M[n]M
Comments: 98
 
mIRC Snippet:  badword kick
Posted on Sep 22, 2007 2:20 pm
cazz what do you mean ?
Kyousoukyoku
Comments: 45
 
mIRC Snippet:  badword kick
Posted on Sep 22, 2007 2:55 pm
Well, the mode +G just censores the word, it doesn't actually kick the user. I could go around all day saying censored, so I guess this provides some use. I think just using var %saykickcount is just a good as var %SayKickCount = 0.
Joshuaxiong1
Comments: 127
 
mIRC Snippet:  badword kick
Posted on Oct 6, 2007 3:20 pm
WHat do I change to make it 5 badword till banned? pm me in IRC
mountaindew
Comments: 1,826
 
mIRC Snippet:  badword kick
Posted on Oct 6, 2007 3:22 pm
no need for %saykickhit

and josh, you would need to, instead of kicking, inc a variable, and if the variable is >= 5, it kicks the person
M[n]M
Comments: 98
 
mIRC Snippet:  badword kick
Posted on Oct 17, 2007 8:24 pm
mountaindew thanks dude!
Kemppih
Comments: 1
 
mIRC Snippet:  badword kick
Posted on Dec 10, 2008 4:29 pm
how can i set it to kick only if only the bad word is said. Like if tomatoe is a bad word, it wouldnt kick is someone says "i like tomatoes", but then it would if someone'd say just "tomatoe"?
Thanks.
mountaindew
Comments: 1,826
 
mIRC Snippet:  badword kick
Posted on Dec 10, 2008 8:14 pm
Code:

if ($istok(tomatoe potato,$1,32) && !$2) {
Gabe
Comments: 1
 
mIRC Snippet:  badword kick
Posted on Mar 14, 2009 6:38 pm
how do i make it give it a warning just kick. then ban?
Gage
Comments: 16
 
mIRC Snippet:  badword kick
Posted on Nov 2, 2009 8:09 pm
I like it.Works good just tested it :o
Gage
Comments: 16
 
mIRC Snippet:  badword kick
Posted on Nov 2, 2009 8:10 pm
btw you spelled "banned" wrong x]

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom