step

From Bohemia Interactive Community
Revision as of 16:50, 5 July 2006 by Planck (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


for /.../ step step


Operand types:

for /.../: For Type

step: Number

Type of returned value:

For Type

Description:

Optionally can set step.

If you want to count down, step must be specified, and set negative.

Default value is 1.


Example:

for "_x" from 20 to 10 step -2 do {..code..}