Project

General

Profile

Set » History » Revision 9

Revision 8 (Mr. BS, 12/13/2015 08:43 AM) → Revision 9/23 (Per Amundsen, 06/14/2016 06:13 AM)

_Added in 1.8.8_ 

 */set [-eklnsuNz] <%var> [value]* 

 Sets the value of %var to the specified value. 

 *Switches* 

 -e - Unset the variable when AdiIRC exits. 
 -k - Keeps the unset time (-u) from a previous command. 
 -l - Creates a local variable instead of global. 
 -n - Treat the value as plain text, even if arithmetic operators are used. 
 -s - Display variable assignment value. 
 -uN - Unsets the variable after N amount of seconds, if N = 0 unset the variable after the script is finished. seconds. 
 -z - Decreases the value of the variable by 1/second until zero is reached. At zero the variable will be unset. 

 *Parameters* 

 <%var> - The variable to set. 
 [value] - Value to set the variable to. (can be a single [[Arithmetic Operators|arithmetic expression]]) 

 *Example* 

 <pre> 
 alias example { 
   ;Create a variable and set a value. 
   /set %var Countdown: 

   ;Print the value 
   /echo -a %var 

   ;Set the value to 3, decrease once per second 
   /set -zs %var 3 
 } 
 </pre>