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.

Help for a NoOb : Auto OP my eggy

Old posts that have not been replied to for several years.
Locked
n
neXus

Help for a NoOb : Auto OP my eggy

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
User avatar
Papillon
Owner
Posts: 724
Joined: Fri Feb 15, 2002 8:00 pm
Location: *.no

Post by Papillon »

search the tcl-archive at www.egghelp.org
Elen sila lúmenn' omentielvo
User avatar
]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"
}


 
User avatar
gumbydammit
Master
Posts: 311
Joined: Thu Sep 05, 2002 4:52 pm
Location: Canada
Contact:

Post by gumbydammit »

here's a good one nexus
Locked