Ok, here's a little script I found from mirc.stealth.net. I added this addon script into my mIRC today, and was testing it and it works great, but the only thing I would want to change is to actually give those people who violated by saying certain words more chances before they get kicked. For example, if I say "test" I would want the script to actually do a /say first to warn that guy in the channel and if the does it again for 2 times he'll be kicked and banned. Can someone please show me how this is done? Thanks in advance!



on @*:text:*:#: {
;Start Insert
if ($nick !isop #) {

var %SayKick = test, test2, test3

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
}