Skip to content
MSN

Clones

A TG007 community discussion started by XþloziOn.

Discussion 8 posts
Page 1 of 1
Open
Topic #4479 · 8 published posts · 900 views

As i can see you can join 2 exact nicknames in the same room. why doesnt an MSN chatroom pick up a cloned nickname. Shouldnt it say name is in use ?

 

 

xplozion, the nicknames are not the exact same. mIRC shows the true identify of the person, and if you really looked at the nicks that look the same, you would see that there is some variable between them through mIRC. They are never the exact same, if they were, the server would deny access for the second nickname.

Well if you can link me to a room that you are in and you have a nickname as The_GateKeeper i will also join as The_GateKeeper, down to the exact same letters.

i'm in Techgear (%#G_Techgear007NET), you can try it, but i assure you, the characters are not exactly the same.

Edited Aug 10, 2005 6:30 AM by The Gate Keeper

I haven't ever joined a Group chatroom (lol) Prolly take forever to learn how to. I looked at the code the guy had and it has a blank letter in front of the cloned nic therefore it makes it looks identically to the cloned one. It is a little offset with the cloned nic because of the invisible letter. Here is the code below that he had. I thought it sounded kinda odd myself untill i looked at the code he had.

********************************************************************

 

EDITED BY THE GATE KEEPER: mimic code removed because mistreatment to the code could occur.

Edited Aug 10, 2005 7:22 AM by The Gate Keeper
;eXonyte's Nickname Tracker-modified by TheGateKeeper. 
#history on
alias -l hfont { return S Tahoma;0 } 
alias -l h2font { return S eTahoma;0 } 

;--- eXonyte's Nickname Tracker 
;--- Shows the last few nicknames someone used 
;--- Look below to change the number it stores 

on *:JOIN:#: exoclonecheck $nick $address $chan 
raw knock:*: exoclonecheck $nick $address $1 
alias exoclonecheck { 
 if ($1 != $me) { 
  ;If you want it to store more or less nicknames, 
  ;change this number below to the number you want to store. 
   var %n 4 
   var %x $read($scriptdir $+ users.txt,sn,$2) 
   if (!%x) write $+(",$scriptdir,users.txt") $2 $1 
   else { 
     %x = $addtok(%x,$1,32) 
     if ($numtok(%x,32) > %n) %x = $deltok(%x,1,32) 
     write -l $+ $readn $+(",$scriptdir,users.txt") $2 %x 
   } 
   if ($numtok(%x,32) > 1) msg $chan $1 :: Last $numtok(%x,32) Nicks used = $replace(%x,$chr(32),$chr(44) $+ $chr(32)) 
   elseif ((%x != $1) && (%x)) msg $chan $1 :: Last $numtok(%x,32) Nick used = %x 
 } 
} 
#history end

CRAP like an idiot I did not backup the fix to this fix that TheGateKeeper fixed. Did ya understand that? Well anyhow, TGK you fixed this once and I was wondering if you could fix it again. This one seems to be giving me squares in the nics. And you fixed it before. Do ya think you could tweak it again? I cant find the fix anywhere. And I promise if ya do fix this again I will not lose it....i'll make a backup of the backup, lol.

the one above shouldn't be giving the squares from what i can see.

Ok I wasnt sure if that was the final fix from you...there are 2 ppl with some funky ascii that the nics pop up squares....So far after I applied this new fix the one nic has not come back yet. But the other still squares for a few characters. Hell thankx for looking at it though. Alot less nics are being busted with less squares then the previous one I used, then I realized:CRAP, that isnt TGK's fixed one...lol. Thnx again boss.