Advertisement
Guest User

open.lua

a guest
Mar 20th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.18 KB | None | 0 0
  1. while true do
  2.  term.clear()
  3.  print(os.time())
  4.  if os.time() > 8 and os.time() < 19 then
  5.   rs.setOutput("left", true)
  6.  else
  7.   rs.setOutput("left", false)
  8.  end
  9.  sleep(5)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement