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.

eggdrop problem...

Old posts that have not been replied to for several years.
Locked
v
vic20

eggdrop problem...

Post by vic20 »

I've just installed and compiled eggdrop but when I try to run it I get a lot of errors:
-----------------------------------------------------------------------------------
bash-2.05$ eggdrop -m test.conf

Eggdrop v1.6.13 (C) 1997 Robey Pointer (C) 2002 Eggheads
[18:59] --- Loading eggdrop v1.6.13 (Thu Jan 30 2003)
[18:59] Can't load modules dns: ld.so.1: eggdrop: fatal: libgcc_s.so.1: open failed: No such file or directory
[18:59] Can't load modules channels: ld.so.1: eggdrop: fatal: libgcc_s.so.1: open failed: No such file or directory
[18:59] Can't load modules server: ld.so.1: eggdrop: fatal: libgcc_s.so.1: open failed: No such file or directory
[18:59] Can't load modules ctcp: ld.so.1: eggdrop: fatal: libgcc_s.so.1: open failed: No such file or directory
[18:59] Can't load modules irc: ld.so.1: eggdrop: fatal: libgcc_s.so.1: open failed: No such file or directory
[18:59] Can't load modules notes: ld.so.1: eggdrop: fatal: libgcc_s.so.1: open failed: No such file or directory
[18:59] Can't load modules console: ld.so.1: eggdrop: fatal: libgcc_s.so.1: open failed: No such file or directory
[18:59] Tcl error in file 'test.conf':
[18:59] invalid command name "channel"
while executing
"channel add #testchannel {
chanmode "+nt"
idle-kick 0
stopnethack-mode 0
}"
(file "test.conf" line 40)
[18:59] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR)
-----------------------------------------------------------------------------------
Here's my (simple) config file:

#! /export/home/john/eggdrop

set mod-path "modules/"
set help-path "help/"
set text-path "text/"

loadmodule dns
loadmodule channels
loadmodule server
loadmodule ctcp
loadmodule irc
loadmodule notes
loadmodule console
checkmodule blowfish

set nick "testbot"
set altnick "testbot??"
set realname "Me myself and I"

set servers {
irc.homelien.no:6667
}

set global-flood-chan 10:30
set global-flood-deop 3:10
set global-flood-kick 3:10
set global-flood-join 5:60
set global-flood-ctcp 3:60
set global-flood-nick 5:60

channel add #testchannel {
chanmode "+nt"
idle-kick 0
stopnethack-mode 0
}

channel set #testchannel +enforcebans +dynamicbans +userbans
channel set #testchannel -dynamicexempts -userexempts -dynamicinvites
channel set #testchannel -autoop -bitch +protectops +protectfriends +dontkickops
channel set #testchannel +greet -statuslog -userinvites
channel set #testchannel +revenge +autovoice
channel set #testchannel -secret -shared +cycle
channel set #testchannel -inactive -seen +nodesynch

set net-type 0
listen 3333 all
set owner "john64"

set notefile "testbot.notes"
set userfile "testbot.user"
set chanfile "testbot.chan"
set temp-path "/tmp"
logfile msbxco * "logs/eggdrop.log"
logfile jpk #testchannel "logs/channel.log"
set console "mkcobxs

source scripts/alltools.tcl
source scripts/action.fix.tcl
source scripts/compat.tcl
source scripts/userinfo.tcl
loadhelp userinfo.help


Doeas anyone know what the problem is ?

Thanks
Vic20
User avatar
arcane
Master
Posts: 280
Joined: Thu Jan 30, 2003 9:18 am
Location: Germany
Contact:

Re: eggdrop problem...

Post by arcane »

vic20 wrote:open failed: No such file or directory
looks like some file or directory doesn't exist...:D
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

Are you using the bot on the same system you compiled it on?
Locked