mIRC Home    About    Download    Register    News    Help

Print Thread
#182857 15/08/07 07:48 PM
Joined: Aug 2007
Posts: 3
R
ReTr0 Offline OP
Self-satisified door
OP Offline
Self-satisified door
R
Joined: Aug 2007
Posts: 3
Could someone please telll me why this isnt kicking?

Many thanks in advance.

on *@:text:*:#:{
var %n = $nick,%c = #,%t = $strip($1-)
if (fuck iswm %t) {
if (%n !isop %c) && (%n !isvoice %c) {
kick %c %n BadWord ...detected tempban for 1min
mode %c +b $address(%n,2)
.timer 1 120 mode %c -b $address(%n,2)
}
}
}

Joined: Nov 2006
Posts: 1,552
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,552
"iswm" checks for a wildcard string, e.g. "*fugg*". Use "isin" instead. And, there is no need to set all that %n %c %t variables:
Code:
on *@:text:*:#:{
  if (-badword- isin $strip($1-)) {
    if ($nick isreg $chan) {
      ban -u120 $chan $address($nick,2)
      kick $chan $nick BadWord ...detected tempban for 2mins
    }
  }
}



Link Copied to Clipboard