Simple Nick Identifier
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 1.0 (of 1 scores) |
| Date Added | Nov 30, 2008 |
| Last Updated | Apr 28, 2009 |
| Tags | identifier nick simple |
Introduction
First, This script does NOT go in your remotes section of script editor, it goes into your aliases tab. This script activates by pressing an F-key (i.e. F1, F2, F3, etc).
The below snippet is custom for a few of the servers I go on. To make this script work for you, you replace the text "PeerCommons", "FanNet" and "StrikeX-Network" in the snippet below with the names of the servers you use. Then replace the text "<password>" with your nicks password you use on that server. After you finish adding the server names and your passwords, connect to the server and hit the F1 button and it will identify you.
Oh, and another thing, if you don't know the name of the server your using, in any channel on that server type //say $network and you will know its name.
mIRC Snippet:
Simple Nick Identifier
Posted on Nov 30, 2008 9:15 am
Posted on Nov 30, 2008 9:15 am
Or you can make it go into your Remotes tab, by changing
to
What would be better is to perhaps change it into an on CONNECT script?
Example:
You can also shorten the script by changing
to
I also would suggest is to add an on LOAD script to set a default nick and password for each specified server by using variables, and an input-dialog at start.
Not everyone uses the same server as you, too.
| Code: |
| /F1 |
to
| Code: |
| alias F1 |
What would be better is to perhaps change it into an on CONNECT script?
Example:
| Code: |
| on *:CONNECT:{ if ($network == PeerCommons) { msg NickServ identify <password> } if ($network == FanNet) { msg NickServ identify <password> } if ($network == StrikeX-Network) { msg NickServ identify <password> } } |
You can also shorten the script by changing
| Code: |
| msg Nickserv |
to
| Code: |
| ns |
I also would suggest is to add an on LOAD script to set a default nick and password for each specified server by using variables, and an input-dialog at start.
Not everyone uses the same server as you, too.
mIRC Snippet:
Simple Nick Identifier
Posted on Nov 30, 2008 7:19 pm
Posted on Nov 30, 2008 7:19 pm
Well the reason I didn't want it in my remotes is because my remotes has too many scripts in it, my aliases is practically empty except for two custom scripts. If someone wants to change it to remotes, they know how to do it.
Also, if you read the beginning, I said change the servers to the ones you use, and remove the ones I added, I was just using mine as an example -.- I also said I wasn't looking for advice on how to make it more automated with variables, hence the name "Simple Nick Identifier". The only useful bit I actually found in your comment was changing 'msg Nickserv' to 'ns' and I mean come on, how many people visiting this site care about whether that is typed or not or don't know to that themselves?
Also, if you read the beginning, I said change the servers to the ones you use, and remove the ones I added, I was just using mine as an example -.- I also said I wasn't looking for advice on how to make it more automated with variables, hence the name "Simple Nick Identifier". The only useful bit I actually found in your comment was changing 'msg Nickserv' to 'ns' and I mean come on, how many people visiting this site care about whether that is typed or not or don't know to that themselves?
mIRC Snippet:
Simple Nick Identifier
Posted on Dec 4, 2008 7:33 am
Posted on Dec 4, 2008 7:33 am
Thnks man :)
mIRC Snippet:
Simple Nick Identifier
Posted on Apr 25, 2009 12:20 pm
Posted on Apr 25, 2009 12:20 pm
Hrm, sorry for gravedig. Just wanted to correct Kirby.
Some networks do not allow /ns, vs /msg nickserv. Some require you to actually message it.
Some networks do not allow /ns, vs /msg nickserv. Some require you to actually message it.
mIRC Snippet:
Simple Nick Identifier
Posted on Apr 25, 2009 2:54 pm
Posted on Apr 25, 2009 2:54 pm
also you may want to add: "this if for servers with anope services"
mIRC Snippet:
Simple Nick Identifier
Posted on Apr 28, 2009 5:09 pm
Posted on Apr 28, 2009 5:09 pm
added :<






