Difference between revisions of "Command:Wait"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 15: Line 15:
 
*[[LavishScript:Commands|Commands]]
 
*[[LavishScript:Commands|Commands]]
 
{{Command-Stub}}
 
{{Command-Stub}}
 +
[[Category:LavishScript]]
 +
[[Category:LavishScript Commands]]

Revision as of 22:32, 25 May 2005

Syntax

Command Difficulty Rating
Wait
Usage Intermediate
Level of Understanding Intermediate
Computer Savvy Beginner
Logic Intermediate

Wait <tenths of seconds> [early continue condition]

Description

Pauses execution of this script for a specified amount of time, given in tenths of seconds (deciseconds). A condition may be supplied in order to continue execution early. The condition and end time will be checked once per frame.

Examples

  • Wait 10
Waits 1 second
  • Wait 10 ${StopWaiting}
Waits 1 second or until ${StopWaiting} is non-zero

See Also