Top

Find/store nick address


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Jul 19, 2007
Last Updated  Jul 19, 2007
Tags  addip  delip  findip  getip  getnick  getnickip  ip  nick 
  Bookmark and Share

Introduction

This script is similar to Lindrian's snippet for /findip, but I completely rewrote it my own way and with different features.

What it does: You can add/delete a nick and their IP in an ini file, then type !getip to search the ini. (This is for when a person is offline) Or, you can type !findip to search anyone on IRC at the time.

Also, you can type !getnick to find a nick used for an IP.

To find the nick a saved user's IP is using, type !getnickip.

Examples:

!addip/!delip sharpknife - Adds/deletes sharp|knife from ips.ini

!getip sharpknife - Searches ips.ini for sharpknife's IP

!findip sharpknife - Searches your IRC server for sharpknife's IP

!getnick Swift-65B870F1.sip.rdu.bellsouth.net - Searches your IRC server for a user with that address

!getnickip sharpknife - Searches ips.ini for sharpknife's IP, then uses that to find the nick sharpknife is on.

Grab the Code

Comments

  (5)  RSS
sharpknife
Comments: 13
 
mIRC Snippet:  Find/store nick address
Posted on Jul 19, 2007 12:21 am
My best one yet =) feel free to criticize heh.
cantseeme
Comments: 48
 
mIRC Snippet:  Find/store nick address
Posted on Jul 19, 2007 2:01 am
make one variable and you only have to declare your ip once.

but tbh I dont see how this is helpful when on *most* networks your host is 1) cloaked and 2) your cloak changes... and 3) you have vhosts on off... w/e dont bash me just a suggestion. I made one just to log joins/parts/quits/connects/nickchanges/bans/kicks/serverbannes/kills... etc...
Lindrian
Comments: 755
 
mIRC Snippet:  Find/store nick address
Posted on Jul 19, 2007 8:50 am
A suggestion would be to use a regex text event:
Code:

on $*:text:/^[!@]*/Si:#:{

and then put it all in 1 text event,
$2 == findip
etc etc.
sharpknife
Comments: 13
 
mIRC Snippet:  Find/store nick address
Posted on Jul 19, 2007 4:53 pm
not that advanced :/
sharpknife
Comments: 13
 
mIRC Snippet:  Find/store nick address
Posted on Jul 19, 2007 4:54 pm
the point of this is for banning people quickly and finding a person you can't find.. and whatever else you want

Please Register or Login to start posting comments.
Bottom