This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

[SOLVED] Cannot get Confguration to load

General support and discussion of Eggdrop bots.
Post Reply
m
madmikeuk
Voice
Posts: 2
Joined: Sat May 26, 2007 3:13 pm

[SOLVED] Cannot get Confguration to load

Post by madmikeuk »

Hi, I recently changed my eggdrop.conf file, and when I reload it, I get the following:
Eggdrop v1.6.18 (C) 1997 Robey Pointer (C) 2006 Eggheads
[20:07] --- Loading eggdrop v1.6.18 (Sat May 26 2007)
[20:07] Listening at telnet port 3313 (all).
[20:07] Module loaded: dns
[20:07] Module loaded: channels
[20:07] Tcl error in file 'eggdrop.conf':
[20:07] invalid command name "ban-time"
while executing
"ban-time 120"
(file "eggdrop.conf" line 509)
[20:07] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR)

Everytime I delete such a line in the config, it has the same error about the command name on the first line after the one deleted. Any help?
Last edited by madmikeuk on Sat May 26, 2007 3:33 pm, edited 1 time in total.
n
nml375
Revered One
Posts: 2860
Joined: Fri Aug 04, 2006 2:09 pm

Post by nml375 »

Most likely, one of your channel-records is messed up in your config-file..

A proper record would look something like this:

Code: Select all

channel add #lamest {
 chanmode "+nt-likm"
 idle-kick 0
 ...
}
I would suspect you've got something like this:

Code: Select all

channel add #lamest
 chanmode "+nt-likm"
 idle-kick 0
 ...
Which turns chanmode, idle-kick, etc into separate commands, rather than a list of arguments to the command "channel" on the line above...
NML_375
m
madmikeuk
Voice
Posts: 2
Joined: Sat May 26, 2007 3:13 pm

Post by madmikeuk »

Doh, didn't check for that :oops: Sorry for wasting your time.
Post Reply