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.

Another identify script that use /nickserv identify

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
b
bobbob
Voice
Posts: 1
Joined: Wed May 14, 2008 1:50 pm

Another identify script that use /nickserv identify

Post by bobbob »

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
User avatar
speechles
Revered One
Posts: 1398
Joined: Sat Aug 26, 2006 10:19 pm
Location: emerald triangle, california (coastal redwoods)

Post by speechles »

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"
}
Post Reply