Advertisement
sasaa86

computercraft timer

Aug 26th, 2017
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. -- thinkers construct smeltery timer
  2.  
  3. local side = "bottom"
  4. while true do
  5.     rs.setOutput(side, true)
  6.     sleep(0.2)
  7.     rs.setOutput(side, false)
  8.     sleep(1.8)
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement