for var: Difference between revisions
Jump to navigation
Jump to search
m (formate) |
mNo edit summary |
||
Line 37: | Line 37: | ||
<dd class="notedate">Posted on 4 October 2011 (CET) | <dd class="notedate">Posted on 4 October 2011 (CET) | ||
<dt class="note">'''[[User:Kju|kju]]''' | <dt class="note">'''[[User:Kju|kju]]''' | ||
<dd class="note">Chosen variable may contain capital letters since OA 1.60. ([http://dev-heaven.net/issues/8354 Ref]) | <dd class="note">Chosen variable may contain capital letters since OA 1.60. ([http://dev-heaven.net/issues/8354 Ref]){{GVI|arma 2 oa|1.60}} | ||
<dd class="notedate">Posted on 29 April 2010 (CEST) | <dd class="notedate">Posted on 29 April 2010 (CEST) |
Revision as of 18:22, 30 September 2014
Description
- Description:
- Starts for sequence, use in complete form (see example). The default step increment is 1. An optional step increment can be specified using the extended syntax.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
for "_i" from 1 to 10 do {debugLog _i;};
- Example 2:
for "_i" from 9 to 1 step -2 do {debugLog _i;};
Additional Information
- See also:
- for [ ]for doControl Structures
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Notes
- Posted on 26 January 2007 (CET)
- T_D
- Chosen variable may not contain capital letters.
for "_I" from 0 to 4 do {}; //will not work
- Posted on 4 October 2011 (CET)
- kju
- Chosen variable may contain capital letters since OA 1.60. (Ref)1.60
- Posted on 29 April 2010 (CEST)
- alef
for "_i" from 0 to 0 do {}; //will do once, with _i = 0 for "_i" from 0 to -1 do {}; //will not do