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.

Need some help..

Old posts that have not been replied to for several years.
Locked
N
Navarth

Post by Navarth »

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>
N
Navarth

Post by Navarth »

started on my own, but doesn't seem to fully work, works when i notice the bot with *nickname* but not nickname

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"
}
any ideas?
S
Stafford

Post by Stafford »

Hope this will help...

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."
} 
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>
Locked