Jump to content
You currently have javascript disabled. Several functions may not work. Please re-enable javascript to access full functionality.
There have been 3 items by masterdisasterHD (Search limited from 25-March 22)
Posted by masterdisasterHD on 21 September 2016 - 07:45 AM in Programs
Posted by masterdisasterHD on 29 April 2016 - 02:10 PM in Peripherals and Turtle Upgrades
Posted by masterdisasterHD on 25 April 2016 - 07:37 PM in Ask a Pro
local timeout = 3 function ontimer() sleep(timeout) end function onkey() os.pullEvent('key') end parallel.waitForAny(ontimer, onkey) --This waits for either of the 2 functions to finish before continuing --Further processing below this line