From Bohemia Interactive Community
|
|
Line 20: |
Line 20: |
| '''Description:''' | | '''Description:''' |
|
| |
|
| Suspend execution of [[Functions - SQF|function]] based script until condition is satisfied. | | Suspend execution of [[Function|function]] based script until condition is satisfied. |
|
| |
|
|
| |
|
Revision as of 15:35, 25 July 2006
waitUntil condition
Operand types:
condition: Code
Type of returned value:
Nothing
Compatibility:
Version 2.60 required.
Description:
Suspend execution of function based script until condition is satisfied.
Example:
_i = 0; waitUntil {_i = _i + 1; _i >= 100}