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.
General support and discussion of Eggdrop bots.
Cr4sh
Halfop
Posts: 63 Joined: Sat Jan 14, 2006 5:16 pm
Contact:
Post
by Cr4sh » Wed Dec 15, 2010 1:17 pm
I've registered the nick of the eggdrop, but if i insert it in the config.conf the eggdrop don't enter in the channel
Whitout the pass there's no problem but obviously change the nick...
Last edited by
Cr4sh on Thu Dec 16, 2010 5:19 am, edited 1 time in total.
Trixar_za
Op
Posts: 143 Joined: Wed Nov 18, 2009 1:44 pm
Location: South Africa
Contact:
Post
by Trixar_za » Wed Dec 15, 2010 2:05 pm
That's because it's for the server password (as in the password you need to give before you can connect to that server) and NOT the nickserv password...
Rather use a nickserv auto-identifying script to identify the bot for you on connect.
willyw
Revered One
Posts: 1203 Joined: Thu Jan 15, 2009 12:55 am
Post
by willyw » Wed Dec 15, 2010 8:16 pm
Here's one way to have the bot send the identify command and password to Nickserv:
For reference, go here:
http://eggwiki.org/Eggdrop.conf
and scroll down to:
# This is a Tcl script to be run immediately after connecting to a server.
and, in your eggdrop.conf, change:
Code: Select all
bind evnt - init-server evnt:init_server
proc evnt:init_server {type} {
global botnick
putquick "MODE $botnick +i-ws"
}
to
Code: Select all
bind evnt - init-server evnt:init_server
proc evnt:init_server {type} {
global botnick
putquick "MODE $botnick +i-ws"
putserv "privmsg nickserv :identify password_here"
}
All it is, is adding one line.
I hope this helps.
Last edited by
willyw on Sun Aug 03, 2014 10:32 am, edited 1 time in total.
Cr4sh
Halfop
Posts: 63 Joined: Sat Jan 14, 2006 5:16 pm
Contact:
Post
by Cr4sh » Thu Dec 16, 2010 5:18 am
Thank you very much, works!
Chymookie
Voice
Posts: 2 Joined: Mon Mar 28, 2016 1:57 pm
Location: Fungeon
Contact:
Post
by Chymookie » Mon Mar 28, 2016 4:40 pm
Thank you for this Willyw - it saved me much hair pulling as some prior codes were not working for me.
Likely a version issue. I've never coded TCL/Eggdrops ever.. so I'm kinda reverse engineering in an attempt to figure this out.
Thank you, thank you, thank you!