waitUntil: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
[[Category:Scripting Commands|WAITUNTIL]] | [[Category:Scripting Commands|WAITUNTIL]] | ||
[[Category:Scripting Commands ArmA|WAITUNTIL]] | [[Category:Scripting Commands ArmA|WAITUNTIL]] | ||
Revision as of 13:23, 29 June 2006
waitUntil condition
Operand types:
condition: Code
Type of returned value:
Nothing
Compatibility:
Version 2.60 required.
Description:
Suspend execution of script until condition is satisfied.
Example:
_i = 0; waitUntil {_i = _i + 1; _i >= 100}