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.

Making Eggdrop change mode and auth to Q @ quakenet?

Old posts that have not been replied to for several years.
Locked
r
rancor

Making Eggdrop change mode and auth to Q @ quakenet?

Post by rancor »

Hi.

I want my egg to auth to Q at quakenet.

I have this script but it does not seems to work

Code: Select all

bind evnt - init-server evnt:init_server

proc evnt:init_server {type} {
  global botnick
  putquick "MODE $botnick +i-ws"
  putquick "MSG q@cserve.quakenet.org auth <username> <password>"
  putquick "MODE $botnick +x"
}
Any idéa?

Thanks
// rancor
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

Use this:

Code: Select all

bind evnt - init-server bot:auth
proc bot:auth init-server {
  putquick "MODE $::botnick +i-ws"
  putquick "PRIVMSG Q@CServe.quakenet.org :AUTH <username> <password>"
  putquick "MODE $::botnick +x"
}
Btw, shouldn't this be in TCL Scripts Forum?
r
rancor

Post by rancor »

TNX! That solved my problem :D
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

Anytime :D
Locked