mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Feb 2007
Posts: 1
L
LonnieB Offline OP
Mostly harmless
OP Offline
Mostly harmless
L
Joined: Feb 2007
Posts: 1
is their a script that can run a clone scan on multiple channels...such as the bot/script user being in 2 channels and scanning both channels at the same time to check if the individual has a different name in 2 channels...that is the same host/ip

and i dont mean the exact same name in the 2 chans...2 different names..2 different mirc clients..same person

Joined: Mar 2007
Posts: 1
X
Mostly harmless
Offline
Mostly harmless
X
Joined: Mar 2007
Posts: 1
Something like this?

Code:
on *:JOIN:#: {
  if ($nick != $me) {
    var %user.1 = $address($nick,2)
    var %m = $nick(#,0)
    var %i = 1
    while (%i <= %m) {
      if (%user.1 == $address($nick(#,%i) ,2)) {
        if ($nick != $nick(#, %i)) {
          echo 4 $chan $nick $+($chr(40),%user.1,$chr(41)) is a clone of $nick(#,%i)
        }
      }
      inc %i
    }
  }
}



Link Copied to Clipboard