The "e-mail" in that Tcl (awyeah@awyeah.org) is non-existent (as with the "website").Getodacul wrote:Try to send an email to awyeah ...
Code: Select all
proc clone:join:flood:check {nick uhost hand chan} {
global clone_channels clone_modelock_switch clone_kick_type clone_kick_msg_type clone_exempt_hosts clone_channel_type clone_banmask_type
global clone_exempt_hosts clone_exempt_flags clone_exempt_ops clone_exempt_voices clone_unresolved_ident clone_punishment_type clone_bantime
Code: Select all
proc clone:join:flood:check {nick uhost hand type chan} {
global clone_channels clone_modelock_switch clone_kick_type clone_kick_msg_type clone_exempt_hosts clone_channel_type clone_banmask_type
global clone_exempt_hosts clone_exempt_flags clone_exempt_ops clone_exempt_voices clone_unresolved_ident clone_punishment_type clone_bantime
if {![string equal -nocase "join" $type]} { return 1 }
Code: Select all
utimer $clone_flyby_time [list unset clone_flyby([string tolower $nick:$chan])]
Code: Select all
utimer $clone_flyby_time [list flyby:reset $nick $chan]
Code: Select all
proc flyby:reset {nick chan} {
global clone_flyby
if {[info exists clone_flyby([string tolower $nick:$chan])]} {
unset clone_flyby([string tolower $nick:$chan])
}
}
Yeah my domain awyeah.org dropped unfortunately and now is registered by someone else, hence my email address awyeah@awyeah.org does not exist anymore. My new email address is: awesomeawyeah@gmail.comAlchera wrote:The "e-mail" in that Tcl (awyeah@awyeah.org) is non-existent (as with the "website").Getodacul wrote:Try to send an email to awyeah ...
I suggest Clone Detector by MC_8
Code: Select all
proc clone:join:flood:check {nick uhost hand type chan} {
global clone_channels clone_modelock_switch clone_kick_type clone_kick_msg_type clone_exempt_hosts clone_channel_type clone_banmask_type
global clone_exempt_hosts clone_exempt_flags clone_exempt_ops clone_exempt_voices clone_unresolved_ident clone_punishment_type clone_bantime
Code: Select all
proc clone:join:flood:check {nick uhost hand type chan} {
global clone_channels clone_modelock_switch clone_kick_type clone_kick_msg_type clone_exempt_hosts
global clone_channel_type clone_banmask_type clone_exempt_hosts clone_exempt_flags clone_exempt_ops
global clone_exempt_nicks clone_exempt_voices clone_unresolved_ident clone_punishment_type clone_bantime
Code: Select all
proc clone:join:flood:check {nick uhost hand type chan} {
global clone_channels clone_modelock_switch clone_kick_type clone_kick_msg_type clone_exempt_hosts clone_channel_type clone_banmask_type
global clone_exempt_hosts clone_exempt_flags clone_exempt_ops clone_exempt_voices clone_unresolved_ident clone_punishment_type clone_bantime
Code: Select all
proc clone:join:flood:check {nick uhost hand type chan} {
global clone_channels clone_channel_type clone_unresolved_ident clone_exempt_flags clone_exempt_nicks
global clone_exempt_masks clone_modelock_switch clone_punishment_type clone_banmask_type clone_bantime
Actually the error you pasted above, wasn't because of the modelock thing, but actually I forgot to declare a variable $clone_exempt_masks as global in the procedure clone:join:flood:check.BrewMaster wrote:I forgot to mention this.
set clone_modelock_switch "0"
is set and I still had the errors.