waitUntil: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 3: Line 3:




<h2 style="color:#000066">''''' waitUntil''''' ''condition''</h2>
<h2 style="color:#000066">'''waitUntil ''condition'''''</h2>





Revision as of 14:47, 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}