Code: Select all
ap:bchans: {+ 180 kb 2 5}
It does nothing else than whois the users of your channel every 5 minutes to check for bad channels.AskMe wrote:Sir_Fz
i have a question for you...
i put this settingas you can see it rescan for badchan every 5 mins...Code: Select all
ap:bchans: {+ 180 kb 2 5}
but my problem is it not only rescan for badchan it trigger all my
bind join - * proc from all other .tcl i have...
do you have any solutions for that???
thanks for this great scripts
Sample:Sydneybabe wrote:how to change this part? example do i have only to change the altnick on set antispam(nick) $::altnick with my antispambot nick or the whole $::altnick with my antispambot nick? give me a sample to edit this part of allprotection...
# AntiSpamBot basic settings
set antispam(nick) $::altnick
set antispam(altnick) ${::altnick}1
set antispam(user) AP
set antispam(realname) "AllProtection Anti-Spam"
set antispam(ip) ${::my-ip}
set antispam(host) ${::my-hostname}
Thanks a lot in advance and more power!
# AntiSpamBot basic settings
set antispam(nick) AntiSpam-Nick
set antispam(altnick) AntiSpam-AltNick
set antispam(user) AP-ident
set antispam(realname) "AllProtection Anti-Spam"
set antispam(ip) 127.0.0.1
set antispam(host) localhost
This indeed passed by my head a month or two ago. In the next version I'll make this feature custom (i.e. ability to choose exempting voices/ops/halfops/custom flags without defaults...).nsrafk wrote:Thanks for a nice script, i have a question though. Is it possible to make the script not protect channel ops as default? im running a free-op channel, so the script is not useable
Code: Select all
if {[isbotnick $n] || ![botisop $c] || [isop $n $c] || [matchattr $h fmo|fmo $c]} {return 1}
Code: Select all
if {[isbotnick $n] || ![botisop $c] || [matchattr $h fmo|fmo $c]} {return 1}
Code: Select all
set cbcd(procs) {clones bnicks bchans}