Top

Simple Nick Identifier


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  1.0 (of 1 scores)
Date Added  Nov 30, 2008
Last Updated  Apr 28, 2009
Tags  identifier  nick  simple 

Introduction

Ok, I'm not looking for a high rating or for comments about how it could be more automated or anything, I just wanted to post a simple nick identifier that anyone on mIRC could use, which is the same one that I used to use before I expanded it to auto-join and all that. It takes a couple minutes to set up, but after that it's very simple. This if for servers with anope services

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.


Grab the Code

/F1  {
  if ($network == PeerCommons) { /ns identify <password> }
  if ($network == FanNet) { /ns identify <password> }
  if ($network == StrikeX-Network) { /ns identify <password> }
}

Comments

  (6)  RSS
Kirby
Comments: 475
 
mIRC Snippet:  Simple Nick Identifier
Posted on Nov 30, 2008 9:15 am
Or you can make it go into your Remotes tab, by changing
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.
MoeEpsilon
Comments: 10
 
mIRC Snippet:  Simple Nick Identifier
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?
goldenboy
Comments: 2
 
mIRC Snippet:  Simple Nick Identifier
Posted on Dec 4, 2008 7:33 am
Thnks man :)
hy71194
Comments: 16
 
mIRC Snippet:  Simple Nick Identifier
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.
napa182
Comments: 1,455
 
mIRC Snippet:  Simple Nick Identifier
Posted on Apr 25, 2009 2:54 pm
also you may want to add: "this if for servers with anope services"
MoeEpsilon
Comments: 10
 
mIRC Snippet:  Simple Nick Identifier
Posted on Apr 28, 2009 5:09 pm
added :<

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom