This is my first post regarding psyBNC scripting and I’m an absolute neophyte at it; which I guess is TMI already...
My query is regarding a script for performing the following:
1. auto NickServ RELEASE command on irc.dal.net when needed, command:
Code: Select all
/msg NickServ@services.dal.net RELEASE MyNick password
Code: Select all
/nick MyNick
1. When my nick is held, this is the message I get (in my status and status only):
1.1. It does NOT come as a notice from NickServ!services@dal.net , like the NOTICE asking me to identify to MyNick:MyNick The nick MyNick is currently being held by a Services Enforcer. If you are the nicks owner, use /msg NickServ@services.dal.net RELEASE MyNick password to release the nickname. If the nickname recently expired, please wait patiently and try again later.
Code: Select all
-NickServ- This nick is owned by someone else. Please choose another.
Code: Select all
server PRIVMSG irc.dal.net * “*The nick MyNick is currently being held by a Services Enforcer.*” echo "PRIVMSG NickServ!services@dal.net :RELEASE MyNick password"
1.3. I’ve used the same syntax as the auto identify script which works fine for me:
Code: Select all
server NOTICE NickServ!services@dal.net * "*This nickname is registered and protected*" echo "PRIVMSG NickServ :IDENTIFY password"
Code: Select all
/nick MyNick
• The status bar
• In the channel
• In the query window etc.
3. Of course once the nick is released NickServ!services@dal.net sends a NOTICE saying:
Code: Select all
-NickServ- The nickname MyNick has been released.
Code: Select all
server NOTICE NickServ!services@dal.net * "The nickname * has been released." echo "PRIVMSG irc.dal.net :NICK FireWarrior "
4. To conclude all I can think of is that my error lies in not being able to understand how to deal with irc.dal.net and NickServ.
I’d be highly obliged if anyone could help and point me in the right direction. Many thanks in advance,
Regards,
FireWarrior