Difference between revisions of "Dec"

From Scriptwiki
Jump to: navigation, search
 
m
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
This decreases the value of %var by value.
 
This decreases the value of %var by value.
  
  /inc [-cszuN] <%var> [value]
+
  /dec [-cszuN] <%var> [value]
  
 
Options explained:
 
Options explained:
Line 21: Line 21:
  
 
== See Also ==
 
== See Also ==
*To increase a variable, you can use [[inc]].
+
* [[inc|/inc]] to increase a variable.
*Read [[While_loops|While loops]] to learn more about them.
+
* [[While_loops|While loops]] to learn more about them.
 +
 
 +
[[Category:Variables]]
 +
[[Category:Commands]]

Latest revision as of 08:51, 2 July 2007

This decreases the value of %var by value.

/dec [-cszuN] <%var> [value]

Options explained:

uN - decreases %var once and unsets it N seconds later.
z  - decreases %var until it reaches zero and then unsets it.
s  - displays action in status window
c  - decreases %var once per second.

If no value is given, default value is 1.

Example

This example shows how to use dec basically in a while-loop:

var %i = 10
while (%i) {
  echo -ag $chr(37) $+ i = %i
  dec %i
}

See Also