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.

Identify to Server

Old posts that have not been replied to for several years.
Locked
J
JOE
Voice
Posts: 34
Joined: Mon Nov 24, 2003 1:33 am

Identify to Server

Post by JOE »

Hello everyone
Ok im trying to make bot identify to nickserv when it joins my server.Below is what i put in config file.For some reason i dont think what i have is working,because when i do a whois on bot i see the ( ~ ) by its nick.Can you please look at what i put and tell me what i may being doing wrong.Thanks once again JOE.



proc evnt:init_server {type} {
global BellBot
putquick "MODE $botnick +i-ws"
putquick "PRIVMSG NICKSERV identify oldboy"
}

this is what whois looks like.
~BellBot@
User avatar
Turambar
Halfop
Posts: 56
Joined: Thu May 29, 2003 6:25 am

Post by Turambar »

you are talking about two different things.
The identify towards nichlserv has absolutely nothing to do with your bots ident.

Nickserv a service which you can use to register your nickname and therefore need to identify to it so that it recognises you as the owner of the nick.

The ident of the bot is the one identd gives you, usually you can't set it yourself on shellproviders, but it's the name of your shellaccount

cheerz
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

putquick "PRIVMSG NICKSERV identify oldboy"
this will send the word "identify" to nickserv. instead use:

Code: Select all

putquick "PRIVMSG NICKSERV :identify oldboy"
notice the ":"
Locked