waitUntil: Difference between revisions
mNo edit summary |
mNo edit summary |
||
| Line 8: | Line 8: | ||
'''Operand types:''' | '''Operand types:''' | ||
condition: [[Code]] | '''condition:''' [[Code]] | ||
'''Type of returned value:''' | '''Type of returned value:''' | ||
mNo edit summary |
mNo edit summary |
||
| Line 8: | Line 8: | ||
'''Operand types:''' | '''Operand types:''' | ||
condition: [[Code]] | '''condition:''' [[Code]] | ||
'''Type of returned value:''' | '''Type of returned value:''' | ||
Operand types:
condition: Code
Type of returned value:
Compatibility:
Version 2.60 required.
Description:
Suspend execution of script until condition is satisfied.
Example:
_i = 0; waitUntil {_i = _i + 1; _i >= 100}