Difference between revisions of "Wait"

From MiniScript Wiki
Jump to navigation Jump to search
(Created page with "<c>wait</c> pauses execution of this script for some amount of time. See also: time, yield === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Me...")
 
Line 9: Line 9:
 
! Parameter Name !! Default Value !! Meaning
 
! Parameter Name !! Default Value !! Meaning
 
|-
 
|-
| ''seconds'' || default 1.0 || how many seconds to wait
+
| ''seconds'' || 1.0 || how many seconds to wait
 
|}
 
|}
  

Revision as of 03:05, 19 March 2020

wait pauses execution of this script for some amount of time.

See also: time, yield

Arguments

Parameter Name Default Value Meaning
seconds 1.0 how many seconds to wait

Example

wait 2.5		// pauses the script for 2.5 seconds