I found this tcl that cleans the channels bans
I used it and began my eggdrop again but the tcl never worked.
my eggdrop is 6.21
he would be grateful to them very much if someone makes her work[16:23] * sedition sets mode: +b mmmmdd!*@*
[16:23] * sedition sets mode: +b *!*@200.36.689.3
[16:23] <sedition> !op
[16:26] * JulieTh sets mode: +o sedition
[16:27] * sedition sets mode: +b *!*@200.36.689.3669
[16:27] * sedition sets mode: +b utee!*@*
[16:27] <@sedition> !clearbans
Code: Select all
# Author: tomekk
# e-mail: tomekk/@/oswiecim/./eu/./org
# home page: http://tomekk.oswiecim.eu.org/
#
# Version 0.1
#
# This file is Copyrighted under the GNU Public License.
# http://www.gnu.org/copyleft/gpl.html
##############################################
################
bind pub o|o !clearbans cb
proc cb { nick uhost hand chan arg } {
foreach global_ban [banlist] {
killban [lindex $global_ban 0]
}
foreach chan_ban [channels] {
foreach ban [banlist $chan_ban] {
killchanban $chan_ban [lindex $ban 0]
}
}
}
putlog "cb.tcl ver 0.1 by tomekk loaded"