Code: Select all
# RemoveBans.tcl by Nils Ostbjerg <shorty@business.auc.dk>
# (C) Copyright (2001)
#
# This script makes the bot remove all bans set on channel once every
# 15 minutes. Edid the time bind below to change fequency.
#
# This version of the RemoveBans script is tested on Eggdrop version
# 1.6.x
#
# Please report any bugs to me at shorty@business.auc.dk.
# Idea and suggestion to new features are also welcome.
#
# - Nils Ostbjerg <shorty@business.auc.dk>
#
# Version 1.6.0 - 01 Nov 2001 First version, should work ok.
# - Nils Ostbjerg <shorty@business.auc.dk>
bind time - "* * 1 * *" time:removebans
##########################################################################
# time:RemoveBans start #
##########################################################################
proc time:removebans {min hour day month year} {
foreach chan [channels] {
resetbans $chan
}
}
##########################################################################
# time:RemoveBans end #
##########################################################################
##########################################################################
# putlog #
##########################################################################
putlog "Loaded RemoveBans (DLF)"