mIRC Home    About    Download    Register    News    Help

Print Thread
#83220 16/05/04 04:06 PM
Joined: Mar 2004
Posts: 45
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Mar 2004
Posts: 45
Code:
  on *:JOIN:#: { 
  var %n = $clones($wildsite,$chan) 
  if ($gettok(%n,2-,32)) { 
    echo -tc info2 $chan * $gettok(%n,1,32) clones from $wildsite $+ : $gettok(%n,2-,32) 
  } 
} 
alias clones { 
  var %x = $ialchan($1,$2,0) 
  if (%x = 1) { return 1 } 
  if (%x > 20) { return %x Too many to list } 
  var %r 
  while (%x) { 
    %r = %r $ialchan($1,$2,%x).nick 
    dec %x 
  } 
  return $ialchan($1,$2,0) %r 
}


How can I covert this so I can scan whenever I want, no just on join?

#83221 16/05/04 04:10 PM
Joined: Sep 2003
Posts: 98
N
Babel fish
Offline
Babel fish
N
Joined: Sep 2003
Posts: 98
/cscan
Code:
alias cscan {
  var %n = $clones($wildsite,$chan) 
  if ($gettok(%n,2-,32)) { 
    echo -ta info2 $chan * $gettok(%n,1,32) clones from $wildsite $+ : $gettok(%n,2-,32) 
  } 
} 
  


www.stwar.us.to
IRCnet - #stwar

Link Copied to Clipboard