for: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) m (category) |
m (added control structure category) |
||
Line 33: | Line 33: | ||
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | ||
[[Category:ArmA: Control Structures|{{uc:{{PAGENAME}}}}]] | |||
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]] |
Revision as of 12:36, 28 March 2017
Description
- Description:
- This operator creates a For Type which is used in the for-constructs (There is the for forspec and the for var syntax available for this construct)
- Groups:
- Uncategorised
Syntax
- Syntax:
- for arg
- Parameters:
- arg: String or Array - When using String it declares the index variable name like "_myVar" and when using Array it must be a 3-dimensional Array of Code
- Return Value:
- For Type
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;};
- Example 3:
for [{_i=0}, {_i < 10}, {_i = _i + 1}] do {hint str _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