Try this
Code:
alias checknick {
  ; here u set your friends' name separated by space.
  var %x George Mike Peter
  var %z = 1
  while ($nick($1,%z)) {
    var %c $ifmatch
    if ($istok(%x,%c,32)) {
      var %friends = $addtok(%friends,%c,32)
    }
    inc %z
  }
  if (%friends) {
    msg # Aha I see you, $replace(%friends,$chr(44),$chr(44) $+ $chr(32)) $+ !!!
  }
  else {
    msg # Uh, I cant see you. Where are u gone?
  }
}


usage: /checknick #channel

EDIT: sry Zyzzyx26, i saw your post too late :tongue:

Last edited by kocam; 12/06/04 02:41 PM.