hi, actually i have picked this script from this forum, its work great Except its kick other bots and Ops as well, since we are using netbots tcl, so everytime flooders try to flood, other bots send a chn notice that cos of flood chn has been moderated...etc,
i will apprecite it if someone can help me to fix this problem that it shouldn't kick ops, other chn bots.
thanks
regards
AW
set channels ""
bind notc - "*" notice
proc notice {nick host hand text dest} {
global channels botnick
foreach chan $channels {
if {$chan == $dest} {
set x [split $host @]
newchanban $chan *!*@[lindex $x 1] $botnick "Another noticing sickoo bites the dust.." 60
}
}
}