Top

IP / Nick tracker


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  5.0
Scores Submitted  5
Date Added  Dec 17, 2007
Last Updated  Dec 17, 2007
Tags  ip  nick  tracker  whois 
  Bookmark and Share

Introduction

ever get annoyed by those flybys and stuff or lose track of who uses what name/nick.. check this out for a ip/nick tracker.

goes into a new remote page on the mIRC.

when people join it makes a note of their /whois info along with any other nicks that it has seen them use and displays in a seperate window.

please note that the database increases as time goes on and people change nicks etc so dont be surprised if at first it dont show much and then after a couple weeks you get a "OMG how many nicks" return

thoughts people please?

Grab the Code

Comments

  (13)  RSS
Noutrious
Comments: 355
 
mIRC Snippet:  IP / Nick tracker
Posted on Dec 17, 2007 3:02 pm
Well, for the idea - thats nice, really - something i like. Just the code, it can be a lot cleaner and eat lot more resources :) i suggest using hashtables or inis - whatever you want and you dont need new line for every info text for the %mask - you can continue using $gettok and $addtok and resolving using chars like 255 that ain't used in any of the parameters.
tzar469
Comments: 17
 
mIRC Snippet:  IP / Nick tracker
Posted on Dec 17, 2007 6:00 pm
Code:
alias tracker.txt {
  return tracker.txt
}


You have this twice in your code. That part is useless.
Cheiron
Comments: 328
 
mIRC Snippet:  IP / Nick tracker
Posted on Dec 17, 2007 7:15 pm
joys of writing with insomnia when you should be sleeping. heh. mistakes happen. still.. it works fine and you only get one post per join,... not 2. and that is all that matters for the moment till i get better aquainted with more complex scripting. can i have some scores people please. at least show me some credit for me efforts
Rebellious
Comments: 64
 
mIRC Snippet:  IP / Nick tracker
Posted on Dec 17, 2007 7:26 pm
I'm curious to know why you are using writeini -n tracker.txt. Also, you can just directly add the nicks to the database using writeini -n tracker.ini %mask fullname $+($readini(tracker.ini,%mask,fullname),etc) for example. Otherwise, the idea is good but it could use a bit of recode
EL
Comments: 1,369
 
mIRC Snippet:  IP / Nick tracker
Posted on Dec 17, 2007 11:03 pm
Works well I like it alot actually and i dont have a !seen system so this is nice for me.Not sure about it gathering data on every join, figure it would be unnecessary if the nickname an address are the same as before,clearly not all people register nicks so 2 people one uses it an logs off then another person uses the same nick an joins then it sends the data to the @window.Another issue i had with is this: ip *!*@XXXXX.dsl.bell.ca
altnicks: Sunny Vid-Cleaning Vid
full names: Shadow java
last seen on 17/12/2007
Spotted In: #mIRC
End Sunny ------------------------------------------
See the hosts are the same with the nickname Sunny and Vid-Sleeping they are both in Canada.So for both nicknames you get data from one another cause of the host.Also useing a different mask would i think help with my previous issue with the multiple data from the same nick/host.Useing nick/indent/host may be the cure.I personally will change the address to the full isp.is nice some tweakage an its ace.Good job and 7/10.`-.-´
Cheiron
Comments: 328
 
mIRC Snippet:  IP / Nick tracker
Posted on Dec 18, 2007 4:51 am
yeah unfortunately not all the ip's get resolved by the server/client. nought can be done there about that with the <nick>@123.456.789.IP style returns. as for the same nick thing there EL.. everytime someone joins, it returns the info it has on them if it has only seen them with a set nick and no others, then it will return that. but it stores all the info on a notepad document. the reason i have done that is i share the seen info with my ops team for their scripts as they do not stay on 24/7. hence the notepad. all they do is swap my notepad copy for theirs to bring it up to date for if i am afk or something, then they can see who is who with regards any in channel notes we have on a nick (ban evasion, trouble maker, troll, etc) hope that explains a bit for you both.

many thanks for the scoring and hope you enjoy using the script. please check out my other scripts also. i dont do run of the mill ones usuall
penelope
Comments: 3
 
mIRC Snippet:  IP / Nick tracker
Posted on Feb 16, 2008 10:51 am
I think this is a fabulous script! I like that it writes to a .txt file instead of an .ini. Last script of this kind I had did write to .ini and it would max out ever other day. Does the text file max out at some point?

Something that would be useful, if you're ever updating, would be a line to count the nicks the person has, ie, "Number of ids: 4"

Thanks for writing a great script.
Cheiron
Comments: 328
 
mIRC Snippet:  IP / Nick tracker
Posted on Feb 18, 2008 8:02 pm
many thanks penelope for the comments there. glad you enjoyed the snippet.. i have a good few more also you like like to check out :)
KellyAnn
Comments: 1
 
mIRC Snippet:  IP / Nick tracker
Posted on Aug 1, 2008 5:57 pm
I downloaded this .. Its the only one so far i tried that worked .. One problem .. It shows everyone as last seen on 1/8/2008 .. Its not that inportant cause it does what i want .. Just thought i would let ya know :o)
Cheiron
Comments: 328
 
mIRC Snippet:  IP / Nick tracker
Posted on Sep 12, 2008 7:03 am
going back to the alias bit.. you have the option to manually check what the user has been seen as.. the command is /ntrack <nick>
Cheiron
Comments: 328
 
mIRC Snippet:  IP / Nick tracker
Posted on Sep 12, 2008 7:03 am
as for the date issue KellyAnn i am not too sure how to rectify that bit yet heh
DiGiTaL
Comments: 26
 
mIRC Snippet:  IP / Nick tracker
Posted on Sep 13, 2008 2:13 pm
Using a .txt file for an .ini configuration system, very smart.
Cheiron
Comments: 328
 
mIRC Snippet:  IP / Nick tracker
Posted on Sep 13, 2008 5:48 pm
makes it easier. my tracker log is currently over 2meg in size. ergo the .txt file being used :)

Please Register or Login to start posting comments.
Bottom