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.

Start-Command -> Identify on IRC-Server

Old posts that have not been replied to for several years.
Locked
M
Morfio

Start-Command -> Identify on IRC-Server

Post by Morfio »

Hi,

sorry about my bad english.

I've a problem with my chatbot: if I connect to a server, the server need an authentification before the bot can join a chan (because without authentification it's not possible to get op for the bot).

So I need to put a string like this:

/msg NickServ IDENTIFY <password>

to the configuration-file, before it joins any chan. Where can I put it in?

Thank you,

Morfio ...
User avatar
Papillon
Owner
Posts: 724
Joined: Fri Feb 15, 2002 8:00 pm
Location: *.no

Post by Papillon »

find these lines:

Code: Select all

set init-server { 
putserv "MODE $botnick +i-ws" 
}
and change it to:

Code: Select all

set init-server { 
putserv "MODE $botnick +i-ws" 
putserv "PRIVMSG Nickserv IDENTIFY <password>"
}
Elen sila lúmenn' omentielvo
M
Morfio

It doesn't work

Post by Morfio »

Hi,

thanks for the answer, but it doesn't work ..., the bot couldn't be identified to the server, is there any other possibility instead of "PRIVMSG"? MSG doesn't work, too.

Morfio ...
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

replace:

Code: Select all

putserv "PRIVMSG Nickserv IDENTIFY <password>" 
with:

Code: Select all

putserv "PRIVMSG Nickserv :IDENTIFY <password>" 
Once the game is over, the king and the pawn go back in the same box.
User avatar
Papillon
Owner
Posts: 724
Joined: Fri Feb 15, 2002 8:00 pm
Location: *.no

Post by Papillon »

ooops.. sorry :oops:
Elen sila lúmenn' omentielvo
M
Morfio

It works

Post by Morfio »

Thank you very much,

it works very good.

Thanks,

Morfio ..
Locked