Use the following Plugin Command structure:
Code:
Plugin Command: Wait 2m 30s
You can combine any number of units in any order you want. So while impractical, you can do this:
Code:
Plugin Command: Wait 15s 1m 2m 10f
The default time unit is frames, so if you simply want to wait for a variable's value number of frames, you can simply write:
Variables
You can use variables as values. For example:
Code:
Plugin Command: Wait v1m v2s 30f
This would wait variable 1's value in minutes, variable 2's value in seconds, and 30 frames.
Verbosity
If you feel like the units are a little hard to read, you can use more verbose aliases. For example:
Code:
Plugin Command: Wait 3minutes 15seconds 20frames
All available units of time
Code:
------------------------------------------------------------------------------
Unit | Valid keys | Example usage
- - - - - - -|- - - - - - - - - | - - - - - - - - - - - - - - - - - - - - - -
Frames | f, frames, blank | 5f, 5frames, 5
Minutes | m, min, minutes | 2m, 2min, 2minutes
Seconds | s, sec, seconds | 8s, 8sec, 8seconds
Milliseconds | ms, milliseconds | 300ms, 300milliseconds
Note: Keep in mind that ~16 milliseconds will pass for each internal "tick" in MV's engine, so wait times that aren't multiples of 16 when using milliseconds will not be entirely precise.