Project

General

Profile

Set » History » Version 11

Per Amundsen, 09/29/2017 09:36 PM

1 1 Per Amundsen
_Added in 1.8.8_
2
3 5 Per Amundsen
*/set [-eklnsuNz] <%var> [value]*
4 1 Per Amundsen
5
Sets the value of %var to the specified value.
6
7
*Switches*
8
9 8 Mr. BS
-e - Unset the variable when AdiIRC exits.
10 1 Per Amundsen
-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 9 Per Amundsen
-uN - Unsets the variable after N amount of seconds, if N = 0 unset the variable after the script is finished.
15 10 Per Amundsen
-z - Decreases the value of the variable by 1/ever second until zero is reached. At zero the variable will be unset.
16 11 Per Amundsen
-i - TODO
17 1 Per Amundsen
18
*Parameters*
19
20
<%var> - The variable to set.
21 7 Per Amundsen
[value] - Value to set the variable to. (can be a single [[Arithmetic Operators|arithmetic expression]])
22 1 Per Amundsen
23
*Example*
24
25 6 Per Amundsen
<pre>
26 1 Per Amundsen
alias example {
27
  ;Create a variable and set a value.
28
  /set %var Countdown:
29
30
  ;Print the value
31
  /echo -a %var
32
33
  ;Set the value to 3, decrease once per second
34
  /set -zs %var 3
35
}
36 6 Per Amundsen
</pre>