mIRC Home    About    Download    Register    News    Help

Print Thread
B
Bilge
Bilge
B
In the following code example:
Code:
menu nicklist {
$iif($somefunction($1-),True,False):somecommand $1-
} 

When multiple nicks are selected from the nick list, $somefunction receives only the first nick selected, while /somecommand receives all the nicks selected. $somefunction must receive all the nicks, but does not.

T
theRat
theRat
T
This has been reported before
use $replace($snicks,$chr(44),$chr(32)) instead

R
r0ck0
r0ck0
R
heh .. I never realized that but I just tried this:
Code:
alias popup.test {
  echo -a $1- <-- alias
  return $1-
}
menu nicklist {
  $iif($popup.test($1-),True,False) :echo -a $1- <-- popup
}


Nick1 <-- alias
Nick1 Nick2 Nick3 <-- popup


Link Copied to Clipboard