for forspec

From Bohemia Interactive Community
Revision as of 06:58, 15 April 2014 by Ffur2007slx2 5 (talk | contribs) (for forspec support boolean control & see also)
Jump to navigation Jump to search
-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Creates cycle, using C like style. See example.
Groups:
Uncategorised

Syntax

Syntax:
for forspec
Parameters:
forspec: Array
Return Value:
For Type

Examples

Example 1:
for [{_x=1},{_x<=10},{_x=_x+1}] do {debugLog _x;}

Additional Information

See also:
Control Structuresfor do

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 Apr 15, 2014 - 12:54
ffur2007slx2_5
In ArmA3 ver 1.16 Please note the difference between for forspec and for do, for forspec detects Boolean in each scope while for do doesn’t. e.g.
command Structure Summary
for forspec
 a= 0; b = true;
 for [{_i = 0},{_i < 10 && b},{_i = _i + 1}] do {
   a = a + 1; 
   if (a >= 7) then {b = false}
 }
loop can be exited via Boolean control, possible workaround can be like BIS_fnc_areEqual
for do
 a= 0;
 for "_i" from 0 to 10 do {
   a = a + 1;
   if (a >= 7) exitwith {}
 };
have to be exited via exitWith

Bottom Section