bind notc - "*This nickname*" ident:nickserv
proc ident:nickserv { nick uhost hand args } {
global botnick nickpass nickserv
putlog "$nickserv wants me to identify myself, trying to do so now."
putserv "PRIVMSG $nickserv :identify $nickpass"
}
set nickpass "youpasswordhere"
set nickserv "nickserv@services.dal.net"
bind msg m "identify" pub:identify
proc pub:identify {nick uhost hand chan arg} {
global botnick nickpass nickserv
putserv "PRIVMSG $nickserv :identify $nickpass"
putlog "$nick wants me to identify myself, trying to do so now."
}
Note: This will only work when you type /msg Botnick identify. It works only for +m flags (master).
Note: Didn't test what I wrote though. I'm not sure if it will work. Just popping by to help. Good Luck pal!
<font size=-1>[ This Message was edited by: Stafford on 2001-12-21 06:07 ]</font>