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.

Wrong password command? [solved]

General support and discussion of Eggdrop bots.
Post Reply
User avatar
Cr4sh
Halfop
Posts: 63
Joined: Sat Jan 14, 2006 5:16 pm
Contact:

Wrong password command? [solved]

Post by Cr4sh »

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

Code: Select all

irc.azzurra.org:6667:******
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.
User avatar
Trixar_za
Op
Posts: 143
Joined: Wed Nov 18, 2009 1:44 pm
Location: South Africa
Contact:

Post by Trixar_za »

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.
w
willyw
Revered One
Posts: 1197
Joined: Thu Jan 15, 2009 12:55 am

Post by willyw »

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.
User avatar
Cr4sh
Halfop
Posts: 63
Joined: Sat Jan 14, 2006 5:16 pm
Contact:

Post by Cr4sh »

Thank you very much, works! :wink:
User avatar
Chymookie
Voice
Posts: 2
Joined: Mon Mar 28, 2016 1:57 pm
Location: Fungeon
Contact:

Post by Chymookie »

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!
Post Reply