Project

General

Profile

Set » History » Version 13

Per Amundsen, 12/01/2018 12:36 AM

1 1 Per Amundsen
_Added in 1.8.8_
2
3 13 Per Amundsen
*/set [-eklnsuNzg] <%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 1 Per Amundsen
-i - Initializes a variable only if it does not already exist as a local or global variable.
17 13 Per Amundsen
-g - Sets a global variable even if a local variable exists.
18 1 Per Amundsen
19
*Parameters*
20
21
<%var> - The variable to set.
22 7 Per Amundsen
[value] - Value to set the variable to. (can be a single [[Arithmetic Operators|arithmetic expression]])
23 1 Per Amundsen
24
*Example*
25
26 6 Per Amundsen
<pre>
27 1 Per Amundsen
alias example {
28
  ;Create a variable and set a value.
29
  /set %var Countdown:
30
31
  ;Print the value
32
  /echo -a %var
33
34
  ;Set the value to 3, decrease once per second
35
  /set -zs %var 3
36
}
37 6 Per Amundsen
</pre>