Advertisement
XxZajoZzO

ComputerCraft program for controlling mining system

Jun 18th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. print("Enabling redstone and moving!")
  2. redstone.setBundledOutput("top", colors.white)
  3. sleep(2)
  4. print("Disabling redstone!")
  5. redstone.setBundledOutput("top", 0)
  6. sleep(3)
  7. print("Removing cable!")
  8. turtle.digUp()
  9. print("Moving forward")
  10. turtle.forward()
  11. print("Placing cable")
  12. turtle.placeUp()
  13. print("Waiting for mining wells to finish")
  14. sleep(5)
  15. print("Done")
  16. sleep(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement