Need some help with a script, if you guys don't mind.
What would be the easiest way to write a simple ass Auto ident to nickserv?
<font size=-1>[ This Message was edited by: Navarth on 2001-12-21 03:14 ]</font>
Code: Select all
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"
}
Code: Select all
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."
}