Hello,

/show is not a command in mIRC, so i would asume its a custom alias in your script.

what i would recomend you do is edit this alias so that you can /who sends [nick]
that when you specify a 'nick' it will send the details to 'nick' rather than echo them to the active window.

it may look like this, although i have no idea how your current alias is set up.
Code:

show {
  if ($1 == sends) {
    if ($2) { var %cmd = msg $2 }
    else { var %cmd = echo -a }
    %cmd detail line 1
    %cmd detail line 2..
    %cmd detail line x
  }
}



notice we are seting the varable %cmd to the command u wish to use on the details, so that if you specify $2 it will asume $2 is a nickname u wish the details to be directed to

also note that you may wish to use .msg rather than msg, this will hide the details so that you dont have to look at yourself sending them.

this is just one of many different ways you could acomplish this.

hope this was helpful

Cobra^