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.

Identifieng Eggdrop with Nickserv

General support and discussion of Eggdrop bots.
Post Reply
B
Bernd
Voice
Posts: 3
Joined: Fri Nov 13, 2009 2:34 pm

Identifieng Eggdrop with Nickserv

Post by Bernd »

Hi
i'm using Eggdrop for some days in euIrc. Everything is fine, but i can't get it identified. I tried multiple identify scripts, but none of them worked.

Can anyone give me a step-by-step guide or a euIrc ready Script, where i only have to enter the password?

I hope this is the right section. :oops:

Oh and btw: How can i give the bot the +B usermode?
w
willyw
Revered One
Posts: 1196
Joined: Thu Jan 15, 2009 12:55 am

Re: Identifieng Eggdrop with Nickserv

Post by willyw »

Bernd wrote:Hi
i'm using Eggdrop for some days in euIrc. Everything is fine, but i can't get it identified. I tried multiple identify scripts, but none of them worked.

Can anyone give me a step-by-step guide or a euIrc ready Script, where i only have to enter the password?

I hope this is the right section. :oops:

Oh and btw: How can i give the bot the +B usermode?
Re: having the bot id with NS

Here is one way, that works for me. I have no idea if it will work on the server to which you are logging in though. It is simple and easy for you to try it and find out.


Find this, in your eggdrop.conf:

Code: Select all

# This is a Tcl script to be run immediately after connecting to a server.
bind evnt - init-server evnt:init_server

proc evnt:init_server {type} {
  global botnick
  putquick "MODE $botnick +i-ws"
}
and edit by adding one line:

Code: Select all

# This is a Tcl script to be run immediately after connecting to a server.
bind evnt - init-server evnt:init_server

proc evnt:init_server {type} {
  global botnick
  putquick "MODE $botnick +i-ws"
  putquick "privmsg nickserv : identify your_password_here"
}
and that one line takes care of it. :)




Also, I have used, and liked this script:
http://www.egghelp.org/tclhtml/3478-4-0 ... nt-tcl.htm
You might like to check it out, too.
It does a few more things.


Not sure about setting +B mode, off the top of my head. Maybe somebody else can jump in here with that for you.
B
Bernd
Voice
Posts: 3
Joined: Fri Nov 13, 2009 2:34 pm

Post by Bernd »

Thank you very much! I didn't even had this line in my config, so i added it. I did the B mode in the putquick and now the bot is flagged as bot and identified. Thanks! :)
w
willyw
Revered One
Posts: 1196
Joined: Thu Jan 15, 2009 12:55 am

Post by willyw »

Bernd wrote:Thank you very much! I didn't even had this line in my config, so i added it. I did the B mode in the putquick and now the bot is flagged as bot and identified. Thanks! :)
You're welcome.
Glad to know it worked. :)
m
miyake
Voice
Posts: 1
Joined: Sat Nov 21, 2009 8:55 am

Post by miyake »

it dont work in dalnet ?
w
willyw
Revered One
Posts: 1196
Joined: Thu Jan 15, 2009 12:55 am

Post by willyw »

miyake wrote:it dont work in dalnet ?
I've never tried it on DalNet myself.


But, due to your post, just for fun I logged into DalNet, and sent:
/msg nickserv help
and got a reply that would certainly indicate that the line I gave above would not work with Dalnet:
-NickServ- Error! "/msg NickServ" is no longer supported. Use "/msg nickserv@services.dal.net" or "/nickserv" instead.
So, if you have a bot that you run on Dalnet, ... just for fun, try this instead o f the line I posted above:

Code: Select all

putquick "privmsg nickserv@services.dal.net : identify your_password_here" 
and let us know if it works.

Also, be sure to check out that script that I mentioned too.
Not sure how it would work with Dalnet, but for me, I found it had some nice features.
w
willyw
Revered One
Posts: 1196
Joined: Thu Jan 15, 2009 12:55 am

Post by willyw »

willyw wrote:

Code: Select all

putquick "privmsg nickserv@services.dal.net : identify your_password_here" 
The above line looks like it has a typo in it. See the extra space followign the colon? That shouldn't be there, and DALnet might be cranky about it.

Try:

Code: Select all

putquick "privmsg nickserv@services.dal.net :identify your_password_here"
instead.
For a fun (and popular) Trivia game, visit us at: irc.librairc.net #science-fiction . Over 300K Q & A to play in BogusTrivia !
Post Reply