there is a line in your conf file, looks like thisvans wrote: The Faq doesn't mention anything about the .set command so i dont know how to do that.
Code: Select all
unbind dcc n set *dcc:set
i couldnt find the unbind dcc n set *dcc:set in my config file so maybe its this thats making the script not work?If it is can you tell me how to genereate a proper one and BTW this is the default script that came loaded with my eggdrop. Thanks again guysset chanfile "eggdrop.chan"
set userfile "eggdrop.user"
set userfile-perm "0700"
set pidfile "eggdrop.pid"
set help-path "help/"
set mod-path "modules/"
set script-path "scripts/"
set temp-path "tmp/"
set text-path "text/"
set motd "text/motd"
set telnet-banner "text/banner"
set timezone "GMT"
addlang "english"
set initializedmodules "1"
loadmodule "dns"
loadmodule "channels"
loadmodule "server"
loadmodule "ctcp"
loadmodule "irc"
loadmodule "console"
loadmodule "blowfish"
loadmodule "transfer"
loadmodule "seen"
set console "so"
set max-logs "50"
set max-logsize "100"
set quick-logs "0"
set log-time "1"
set keep-all-logs "0"
set logfile-suffix ".%Y%m%d"
set quiet-save "1"
set switch-logfiles-at "300"
logfile mco * "eggdrop.log"
set my-hostname "v.host.blah.blah"
set my-ip "192.168.0.1"
set nick "BOT"
set altnick "bot"
set botnet-nick "bot"
set username "bot"
set realname "bot"
set keep-nick "1"
set owner "blah"
set ctcp-mode "2"
set lowercase-ctcp "0"
set require-p "1"
set stealth-telnets "1"
set telnet-flood "0:0"
set must-be-owner "2"
set notify-newusers "shinyyy"
set learn-users "0"
set default-flags "-"
set sort-users "1"
set NULL "\0"
listen 33583 "all"
set net-type "5"
set nick-len "15"
set max-bans "45"
set opchars "@"
set use-354 "1"
set check-stoned "1"
set double-mode "1"
set double-server "1"
set double-help "1"
set modes-per-line "6"
set default-port "6667"
set servers {
irc.quakenet.org:6667
}
set global-flood-chan "0:0"
set global-flood-deop "0:0"
set global-flood-kick "0:0"
set global-flood-join "0:0"
set global-flood-ctcp "0:0"
set global-flood-nick "0:0"
set global-aop-delay "0:0"
set global-chanmode ""
set global-stopnethack-mode "0"
set global-revenge-mode "0"
set global-ban-time "0"
set global-exempt-time "0"
set global-invite-time "0"
set global-chanset {
"-autovoice"
"-autohalfop"
"-autoop"
"-protecthalfops"
"-protectfriends"
"-protectops"
"-bitch"
"-dontkickops"
"-enforcebans"
"-greet"
"-inactive"
"-nodesynch"
"-revenge"
"-revengebot"
"-secret"
"-seen"
"-statuslog"
"+cycle"
"+shared"
"+dynamicbans"
"+dynamicexempts"
"+dynamicinvites"
"+userbans"
"+userexempts"
"+userinvites"
}
channel add "#blah"
loadhelp "userinfo.help"
set scripts [lsort -dictionary [glob -nocomplain -- ${script-path}*]]; set x 0; set y 0
foreach script $scripts {
if {(![file isdirectory $script]) && ([string match -nocase *?.tcl $script])} {
set failed [catch {source $script} error]
incr y 1
if {$failed} {
putlog "TCL_ERROR: $script: error: $error"
continue
}
incr x 1
}
}
if {$x} {
putlog "$x of $y scripts initialized."
} else {
putlog "couldn't initialize scripts"
}
vans wrote:One more thing every 5 minutes the bot spits out this message: [11:25] #blah (+CtNn) : [m/6 o/4 h/0 v/0 n/2 b/0 e/0 I/0] what does it mean? and how do i stop it because i find it annoying.
Code: Select all
.chanset * -statuslog
vans wrote:.. but imdb still returns an error.
# use or not the imdb debugger (1=enable debug 0=disable debug)
set IMDB_DEBUG 0
Turn off = no messages (which are non-fatal)vans wrote:thanks for help me get rid of that message.
I dont kno what u mean by the other quotes. I have set the imdb.tcl script to use debugger. This is what i get
[11:16] IMDB_DEBUG permission_result == 1
[11:16] IMDB_DEBUG instance == 0
[11:16] IMDB_DEBUG toput_result == PRIVMSG #rlslog
[11:16] IMDB_DEBUG new instance == 1
[11:16] IMDB_DEBUG searchString: "blah"
[11:16] IMDB_DEBUG http://akas.imdb.com/find?tt=on;nm=on;mx=5;q=blah
[11:16] IMDB_DEBUG redirect 1
[11:16] Tcl error [imdb_proc]: bad index "": must be integer or end?-integer?
[11:18] IMDB_DEBUG instance decreased by timer to: 0
anyone kno how to fix this script? thanks for the continued support.