|
|
(3 intermediate revisions by 2 users not shown) |
Line 1: |
Line 1: |
| {{Command|= Comments
| | #REDIRECT [[for]] |
| ____________________________________________________________________________________________
| |
| | |
| | arma |= Game name
| |
| | |
| |1.00|= Game version
| |
| ____________________________________________________________________________________________
| |
| | |
| |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.
| |
| {{warning | Broken}} |= Description
| |
| ____________________________________________________________________________________________
| |
| | |
| | '''for''' variable |= Syntax
| |
| | |
| |p1= variable: [[String]]|= Parameter 1
| |
| | |
| | [[For Type]] |= Return value
| |
| ____________________________________________________________________________________________
| |
| | |
| |x1= <code>[[for]] "_i" [[from]] 1 [[to]] 10 [[do]] {[[debugLog]] _i;};</code> |= Example 1
| |
| |x2= <code>[[for]] "_i" [[from]] 9 [[to]] 1 [[step]] -2 [[do]] {[[debugLog]] _i;};</code> |= Example 2
| |
| ____________________________________________________________________________________________
| |
| | |
| | [[for forspec|for [ ]]], [[for_do|for do]], [[Control Structures]] |= See also
| |
| | |
| }}
| |
| | |
| <h3 style="display:none">Notes</h3>
| |
| <dl class="command_description">
| |
| <!-- Note Section BEGIN -->
| |
| | |
| <dd class="notedate">Posted on 29 April 2010 (CEST)
| |
| <dt class="note">'''[[User:Alef|alef]]'''<dd class="note"><code>[[for]] "_i" [[from]] 0 [[to]] 0 [[do]] {}; //will do once, with _i = 0
| |
| [[for]] "_i" [[from]] 0 [[to]] -1 [[do]] {}; //will not do
| |
| </code>
| |
| <!-- Note Section END -->
| |
| </dl>
| |
| | |
| <h3 style="display:none">Bottom Section</h3>
| |
| [[Category:Scripting Commands|FORB]]
| |
| [[Category:Scripting Commands ArmA|FORB]]
| |
| [[Category:Command Group: Program Flow|FORB]]
| |
| [[Category:Broken Scripting Commands|{{uc:{{PAGENAME}}}}]]
| |
| | |
| <!-- CONTINUE Notes -->
| |
| <dl class="command_description">
| |
| <dd class="notedate">Posted on June 4, 2015 - 19:27 (UTC)</dd>
| |
| <dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
| |
| <dd class="note">
| |
| Variable name doesn't have to start with _. could be:<code>[[for]] "LAlala" [[from]] 0 [[to]] 0 [[do]] {[[hint]] [[str]] LAlala}; //0</code>
| |
| The variable ''LAlala'' will exist only inside [[do]] {} scope and will not overwrite any variable of the same name that existed before.
| |
| </dd>
| |
| </dl>
| |
| <!-- DISCONTINUE Notes -->
| |
| | |
| <!-- CONTINUE Notes -->
| |
| <dl class="command_description">
| |
| <dd class="notedate">Posted on June 10, 2015 - 14:46 (UTC)</dd>
| |
| <dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
| |
| <dd class="note">
| |
| This command is broken [http://feedback.arma3.com/view.php?id=24396 Feedback]
| |
| </dd>
| |
| </dl>
| |
| <!-- DISCONTINUE Notes -->
| |