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.

Auto Auth with nickserv and chanserv?

Old posts that have not been replied to for several years.
Locked
M
Magma
Voice
Posts: 9
Joined: Fri Jun 03, 2005 7:59 pm

Auto Auth with nickserv and chanserv?

Post by Magma »

How can I make it so if for some reason my bot dies he can log back onto the server and do 2 commands

/msg nickserv identify <password>
/msg chanserv indentify channel password
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Search the TCL Archive as there are plenty of scripts that resolve that problem.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

Alchera wrote:Search the TCL Archive as there are plenty of scripts that resolve that problem.
Or maybe you might want to consider r-e-a-d-i-n-g your entire conf file, seeing how this easily falls under the purvue of the set init-server variable...
:?
M
Magma
Voice
Posts: 9
Joined: Fri Jun 03, 2005 7:59 pm

Post by Magma »

YooHoo wrote:
Alchera wrote:Search the TCL Archive as there are plenty of scripts that resolve that problem.
Or maybe you might want to consider r-e-a-d-i-n-g your entire conf file, seeing how this easily falls under the purvue of the set init-server variable...
:?
all it says
This is a Tcl script to be run immediately after connecting to a server.
bind evnt - init-server evnt:init_server

I had the bot setup from my shell provider and then have tweaked parts of it from there.

I dont know what evnt I would need to use, hence why I came here for help
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

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 chanserv :identify #chan <pass>"
  putquick "privmsg nickserv :identify <pass>"
}
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Locked