Difference between revisions of "Wait"

From Kolmafia
Jump to navigation Jump to search
imported>StDoodle
imported>Bale
(Minimum wait is 1 second)
Line 16: Line 16:
 
}}|
 
}}|
  
function_description=This function will initiate a countdown from {{pspan|secs}} seconds to 0, during which time nothing else will be acted on. It essentially pauses a script. In addition, a countdown prints to the CLI at varying intervals (every 15 secs for large numbers, 5 seconds for smaller numbers and every second from 5 seconds down).|
+
function_description=This function will initiate a countdown from {{pspan|secs}} seconds to 0, during which time nothing else will be acted on. It essentially pauses a script. In addition, a countdown prints to the CLI at varying intervals (every 15 secs for large numbers, 5 seconds for smaller numbers and every second from 5 seconds down).</p><p>Minimum wait is 1 second, even if {{pspan|secs}} is 0.|
  
 
needscode=yes|
 
needscode=yes|

Revision as of 00:06, 11 January 2015

needs(code_samples);

Function Syntax

void wait(int secs )

  • secs is the number of seconds you want to delay further action.

This function will initiate a countdown from secs seconds to 0, during which time nothing else will be acted on. It essentially pauses a script. In addition, a countdown prints to the CLI at varying intervals (every 15 secs for large numbers, 5 seconds for smaller numbers and every second from 5 seconds down).

Minimum wait is 1 second, even if secs is 0.

CLI Equivalent

The CLI command "wait" functions the same and can be used to pause basic .txt scripts.

See Also

waitq()