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.

i have problem with my nickserv ident

Old posts that have not been replied to for several years.
Locked
i
illusi

Post by illusi »

Change this to what nickserv says on connection
bind notc - "*This nick is owned by someone else. Please choose another*" identify_notc

proc identify_notc { nick uh hand text text1 } {
global botnick nickserv identcmd identpass
if {[string match [string tolower $nick] [string tolower $nickserv]]} {
putserv "PRIVMSG $nickserv :$identcmd $identpass"
putlog "Identifying: $nickserv (as $botnick)"
}
}
on the telnet or dcc coming message as given below,
-NickServ (service@dal.net)- Error! "/msg NickServ" is no longer support
ed. Use "/msg nickserv@services.dal.net" or "/nickserv" instead.

help me please..thx
K
KID

Post by KID »

im not sure about Dalnet NickServ but try it ...

set passwd "your-botnick-pass"
bind notc -|- "*owned*" services:autoid
proc services:autoid {nick uhost hand text dest} {
global botnick passwd
if {$nick == "NickServ"} {
putserv "NickServ identify $passwd"
putlog "..:: sending password to NickServ ::.."
return 0
} else {
#putserv "privmsg $nick : **** off"
return 0
}

}

D
Drewbu

Post by Drewbu »

It means that server allias is messed up ... and you should msg nickserv@services.dal.net insted of nickserv....
so it should be putserv "PRIVMSG nickserv@services.dal.net :Identify $pass"
I think that's just temperaly ...
Locked