for var: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (for forspec)
mNo edit summary
Line 10: Line 10:
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''for var''' |= Syntax
| '''for''' variable |= Syntax


|p1= var: [[String]] (must be all '''lowercase''') |= Parameter 1
|p1= variable: [[String]] (must be all '''lowercase''') |= Parameter 1


| [[For Type]] |= Return value
| [[For Type]] |= Return value

Revision as of 00:16, 23 January 2009

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Starts for sequence, use in complete form (see example).
Groups:
Uncategorised

Syntax

Syntax:
for variable
Parameters:
variable: String (must be all lowercase)
Return Value:
For Type

Examples

Example 1:
for "_i" from 1 to 10 do {debugLog _i;}

Additional Information

See also:
for [ ]Control 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

Chosen variable may not contain capital letters. for "_I" from 0 to 4 do{}; //will not work --T_D 23:46, 26 January 2007 (CET)

Bottom Section