Code: Select all
tag when posting logs, code
...and you are really irrelevant with that bogus link
Code: Select all
tag when posting logs, code
Register a nick for the bot as you would any other:V2Px wrote:can i register the botnick with nickserv and IDENTIFY automaticly?
sry for my bad english
Code: Select all
/ns REGISTER AnyGoodPassword billy@hotmail.com
Code: Select all
.dump ns REGISTER AnyGoodPassword billy@hotmail.com
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 +iR-ws"
putquick "privmsg nickserv :identify password"
}
Code: Select all
tag when posting logs, code
that "bogus link" ( http://www.egghelp.org/tclhtml/3478-4-0-0-751.htm ) as you call it is to eggdrop org's tcl archive where there are SEVERAL nickserv/chanserv/services scripts listed (which is part of what V2Px was asking for unless I can't comprehend plain english anymore). Have another glass of christmas cheer and calm down, will you?demond wrote:...and you are really irrelevant with that bogus link
Code: Select all
tag when posting logs, code
Code: Select all
bind notc - "*This nickname is owned by someone else.*" identify:notc
proc identify:notc { nick uhost handle text dest } {
global botnick nickserv identcmd identpass
if { $nick == $nickserv } {
puthelp "PRIVMSG $nickserv $identcmd $identpass"
putlog "Identifying : $nickserv (as $botnick)"
}
}
Code: Select all
putquick "privmsg nickserv :identify password"
Code: Select all
puthelp "PRIVMSG $nickserv $identcmd $identpass"
Code: Select all
puthelp "PRIVMSG $nickserv :$identcmd $identpass"
Code: Select all
putquick "$nickserv :$identcmd $identpass"