Project

General

Profile

Inc » History » Version 8

Per Amundsen, 11/03/2020 06:18 AM

1 1 Per Amundsen
_Added in 1.9.0_
2
3 4 Per Amundsen
*/inc [-cesuNzB] <%var> [value]*
4 1 Per Amundsen
5
Increase the value of %var by value.
6
7 8 Per Amundsen
_See also [[/var]], [[/set]], [[/unset]], [[/dec]], [[$var]]._
8 5 Per Amundsen
9 1 Per Amundsen
*Switches*
10
11
-c = increase %var by value every second.
12
-e = Unset the variable when AdiIRC exits.
13
-s = Prints out the value of the variable.
14
-uN = Increase %var by value then unset the variable after N seconds.
15
-z = Decrease %var by value every second until zero and then unset the variable.
16 7 Per Amundsen
-k = *TODO*
17 1 Per Amundsen
18
*Parameters*
19
20
<%var> - The variable to increase.
21
[value] - The value to increase by, default is 1.
22
23
*Example*
24
25
<pre>
26
alias example {
27
  ;Create a local variable and set it to 5.
28
  /var %x 5
29
30
  ;Increase %x by 5.
31
  /inc %x 5
32
33
  ;Print out %x's content.
34
  /echo -a %x
35
}
36
</pre>