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.
Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
bobbob
Voice
Posts: 1 Joined: Wed May 14, 2008 1:50 pm
Post
by bobbob » Wed May 14, 2008 2:15 pm
He everybody,
I`m searching for a identify script. that can identify to nickserv ussing.
/nickserv identify password. The most scripts use .prvmsg or.msg but those scripts wil not work. the nickserv will return: Please use /nickserv identify password.
Can enyone point me in the right direction.
tx
speechles
Revered One
Posts: 1398 Joined: Sat Aug 26, 2006 10:19 pm
Location: emerald triangle, california (coastal redwoods)
Post
by speechles » Wed May 14, 2008 3:01 pm
Code: Select all
variable nickservpassword "your_password_here"
bind evnt - init-server evnt:init_server
proc evnt:init_server {type} {
putquick "MODE $::botnick +iR-ws"
putquick "nickserv identify $::nickservpassword"
}