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.
Old posts that have not been replied to for several years.
-
n
neXus
Post
by neXus »
So, I've installed an Eggdrop on my chan, I want my bot auth himself ! Actually I'm obliged to type .MSG Q AUTH nick pass to AUTH him.
How can I do to automatize this ?
Thanks for ur help
(note : The bot have been +aov on the chan, it's juste auto AUTH who suxxx)
THx all
-
]Kami[
- Owner
- Posts: 590
- Joined: Thu Jul 24, 2003 2:59 pm
- Location: Slovenia
-
Contact:
Post
by ]Kami[ »
On which Net are you QuakeNet ? If you are on Quake net you need TCL script
-
n
neXus
Post
by neXus »
so it's for quakenet. I found a tcl script but it doesn't work :
the script
Code: Select all
set account "account"
set password "pass"
bind pub o .auth do_auth
proc do_auth {nick host handle chan text} {
global account password
putquick "PRIVMSG Q@CServe.quakenet.org :Auth $account $password"
putserv "NOTICE $nick :Attempting to authenticate..."
}
set init-server {
putquick "PRIVMSG Q@CServe.quakenet.org :AUTH $account $password"
putserv "MODE $nick +x"
}
-
n
neXus
Post
by neXus »
so it's for quakenet. I found a tcl script but it doesn't work :
the script
Code: Select all
set account "account"
set password "pass"
bind pub o .auth do_auth
proc do_auth {nick host handle chan text} {
global account password
putquick "PRIVMSG Q@CServe.quakenet.org :Auth $account $password"
putserv "NOTICE $nick :Attempting to authenticate..."
}
set init-server {
putquick "PRIVMSG Q@CServe.quakenet.org :AUTH $account $password"
putserv "MODE $nick +x"
}