Advertisement
Guest User

startup

a guest
Sep 25th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. local output = "right"
  2.  
  3.  
  4. rs.setOutput(output, false)
  5.  
  6. repeat
  7.   rs.setOutput(output, true)
  8.   sleep(1)
  9.   rs.setOutput(output, false)
  10.  
  11.   turtle.select(1)
  12.   turtle.place(1)
  13.  
  14.   sleep(60*15)
  15. until false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement