Guest User

endoflame

a guest
Feb 20th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. local function drop()
  2. turtle.drop(1)
  3. turtle.turnLeft()
  4. end
  5. local function pick()
  6. turtle.suck()
  7. turtle.turnLeft()
  8. end
  9. while true do
  10. if turtle.suckDown(4) then
  11. drop()
  12. drop()
  13. drop()
  14. drop()
  15. sleep(3)
  16. pick()
  17. pick()
  18. pick()
  19. pick()
  20. turtle.dropDown(4)
  21. else
  22. sleep(30)
  23. end
  24. end
Advertisement
Add Comment
Please, Sign In to add comment