while: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (added see also, revert)
Line 1: Line 1:
#REDIRECT [[Control Structures#while-Loop]]
{{Command|= Comments
____________________________________________________________________________________________
 
| ofpr |= Game name
 
|1.85|= Game version
____________________________________________________________________________________________
 
| First part of while construct. |= Description
____________________________________________________________________________________________
 
| '''while ''condition''''' |= Syntax
 
|p1= condition: [[Code]] |= Parameter 1
 
| [[While Type]] |= Return value
____________________________________________________________________________________________
 
||x1= <code>while {x<10} [[do]] {x<nowiki>=</nowiki>x+1} </code>|= Example 1
 
||x2=A more practical example: To repair all the members of a group to such a level that they are all able to stand up: <code><nowiki>{</nowiki>while <nowiki>{</nowiki>([[not]] [[canStand]] _x) [[and]] [[alive]] _x)<nowiki>}</nowiki> [[do]] <nowiki>{</nowiki>_x [[setDammage]] ([[getDammage]] _x) - 0.01<nowiki>}}</nowiki>[[forEach]] units
[[group]] unitname </code> |= Example 2
____________________________________________________________________________________________
| [[Control Structures]] |= See also
 
}}
 
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
 
<!-- Note Section END -->
</dl>
 
<h3 style="display:none">Bottom Section</h3>
 


[[Category:Scripting Commands|WHILE]]
[[Category:Scripting Commands|WHILE]]
[[Category:Scripting Commands OFP 1.96|WHILE]]
[[Category:Scripting Commands OFP 1.96|WHILE]]
[[Category:Scripting Commands ArmA|WHILE]]
[[Category:Scripting Commands ArmA|WHILE]]
[[Category:ArmA: Control Structures|WHILE]]
[[Category:Command Group: Program Flow|WHILE]]

Revision as of 16:30, 15 January 2007

Hover & click on the images for description

Description

Description:
First part of while construct.
Groups:
Uncategorised

Syntax

Syntax:
while condition
Parameters:
condition: Code
Return Value:
While Type

Examples

Example 1:
while {x<10} do {x=x+1}
Example 2:
A more practical example: To repair all the members of a group to such a level that they are all able to stand up: {while {(not canStand _x) and alive _x)} do {_x setDammage (getDammage _x) - 0.01}}forEach units group unitname

Additional Information

See also:
See also needed

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

Bottom Section