Project

General

Profile

$vnick » History » Revision 4

Revision 3 (Per Amundsen, 11/21/2015 09:43 PM) → Revision 4/8 (Per Amundsen, 11/21/2015 11:53 PM)

_Added in 1.9.0_ 

 *$vnick* 

 Returns the nick that was (de)opped during a [[on VOICE]], on [[on DEVOICE]] [[Scripting_Events|event]]. 

 *Example* 

 <pre> 
 on *:VOICE:*:echo -ag The nick opped is $vnick 

 on *:DEVOICE:*:echo -ag The nick deopped is $vnick 
 </pre> 

 ----------------------------------------------------------------------------- 


 _Added in 2.0_ 

 *$vnick(#,N)* 

 Returns the Nth voice nick 

 *Parameters* 

 <notextile># - The channel.</notextile> 
 N - If N = 0, number of nicks, otherwise the Nth nick. 

 *Example* 

 <pre> 
 echo -ag There is $vnick(#,0) voice users 

 echo -ag First voice nick is $vnick(#,1) 
 </pre> TODO