Set » History » Version 4
Per Amundsen, 02/28/2014 12:53 PM
| 1 | 1 | Per Amundsen | _Added in 1.8.8_ |
|---|---|---|---|
| 2 | |||
| 3 | /set [-eklnsuNz] <%var> [value]* |
||
| 4 | |||
| 5 | Sets the value of %var to the specified value. |
||
| 6 | |||
| 7 | *Switches* |
||
| 8 | |||
| 9 | -e - Unset the variable when AdiIRC exists. |
||
| 10 | -k - Keeps the unset time (-u) from a previous command. |
||
| 11 | -l - Creates a local variable instead of global. |
||
| 12 | -n - Treat the value as plain text, even if arithmetic operators are used. |
||
| 13 | -s - Display variable assignment value. |
||
| 14 | -uN - Unsets the variable after N amount of seconds. |
||
| 15 | -z - Decreases the value of the variable by 1/second until zero is reached. At zero the variable will be unset. |
||
| 16 | |||
| 17 | *Parameters* |
||
| 18 | |||
| 19 | <%var> - The variable to set. |
||
| 20 | 4 | Per Amundsen | [value] - Value to set the variable to. (can be a single arithmetic expression, see [[Arithmetic Operators]]) |
| 21 | 1 | Per Amundsen | |
| 22 | *Example* |
||
| 23 | |||
| 24 | alias example { |
||
| 25 | ;Create a variable and set a value. |
||
| 26 | /set %var Countdown: |
||
| 27 | |||
| 28 | ;Print the value |
||
| 29 | /echo -a %var |
||
| 30 | |||
| 31 | ;Set the value to 3, decrease once per second |
||
| 32 | /set -zs %var 3 |
||
| 33 | } |