I get this in dcc chat with my bot:
mcpart called with too many arguments
section it refers too looks like this:
bind part - * mcpart
proc mcpart {nick uhost hand chan} {
global mc_cd botnick
set chan [string tolower $chan]
set host [string range $uhost [expr [string first @ $uhost]+1] e]
if {$nick == $botnick} {
foreach array [array names mc_cd] {
if {([string index $array 0] == "!") &&
([string tolower [lindex [split $array :] 1]] == $chan)} {
unset mc_cd($array)
}
}
} {
if {![info exists mc_cd(!$host:$chan)]} {return 0}
incr mc_cd(!$host:$chan) -1
}
}
this is in mc.clonedetector.tcl v 1.0
any idea's?? I cant find a clone detector that works with 1.6.7 eggdrop