Lua:sleep

From Cheat Engine
Revision as of 21:52, 13 April 2012 by Freiza (talk | contribs) (Function Parameters)
Jump to navigation Jump to search

function sleep(Delay)

Pauses the thread this lua script executes in for the given amount of milliseconds. (1000 milliseconds=1 second)

Note: Executing this from the main thread(gui) will make the gui stop responding for the given time (Buttons can not be clicked)


Function Parameters

Parameter Type Description
Delay Integer The time to wait in milliseconds (1000=1 second)

Example: Sleep(1000) -- This will pause the execution of current thread for 1 second. --Freiza 21:52, 13 April 2012 (UTC)

See also