kick ban badword
Platform: mIRC
Published Jan 15, 2012
Updated Jan 15, 2012
kick Ban Bad Word on Channel
on @*:text:*:#: {
;Start Insert
if ($nick !isop #) {
var %SayKick = babi,butuh,kimak,lancau,puki,burit,kote,cipap,fark
;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 Banned
}
}
;End Insert
}