Advertisement
Guest User

NickTracer v1.1 by Mechonit (irc.icq.com) part 2

a guest
May 29th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.82 KB | None | 0 0
  1. ;NICK TRACER v1.1 coded by Mechonit from IrCQnet (irc.icq.com)
  2. ;Please do NOT edit this script.
  3. ;Copyright 2015 Mechonit www.gwura.com
  4.  
  5.  
  6. ON *:JOIN:*: {
  7.   if (!$hget(NickBase,$nick)) && ($wildtok($hget(NickBase,$nick),$address($nick,5),0,32) != 1) { hadd NickBase $nick $address($nick,5) | halt }
  8.   elseif ($hget(NickBase,$nick)) && ($wildtok($hget(NickBase,$nick),$address($nick,5),0,32) != 1) { hadd NickBase $nick $address($nick,5) $hget(NickBase,$nick) | halt }
  9. }
  10.  
  11. ON *:NICK: {
  12.   if (!$hget(NickBase,$newnick)) && ($wildtok($hget(NickBase,$newnick),$address($newnick,5),0,32) != 1) { hadd NickBase $newnick $address($newnick,5) | halt }
  13.   elseif ($hget(NickBase,$newnick)) && ($wildtok($hget(NickBase,$newnick),$address($newnick,5),0,32) != 1) { hadd NickBase $newnick $address($newnick,5) $hget(NickBase,$newnick) | halt }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement