The WaitUntilTime
function waits (blocks) until the given time is reached. The function returns false
if no arguments are passed. The format of the time string is 'hh:mm:ss' where 'hh' are the hours, 'mm' the minutes, and 'ss' the seconds (all in two digits format, e.g. 08:01:01).
bool: WaitUntilTime(string timeString='hh:mm:ss')
var result = WaitUntilWeekday(); // result: false var result = WaitUntilTime('10:11:12'); // waits until 10:11:12 am var result = WaitUntilTime('13:11:12'); // waits until 01:11:12 pm