tomtrein

Untitled

Aug 1st, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local tArgs = {}
  2. tArgs[1] = os.getComputerLabel()
  3. ponies = true
  4.  
  5. for i=3, 16 do
  6. for p=1, 64 do
  7. turtle.select(1)
  8. if not turtle.compare() then
  9. turtle.digDown()
  10. turtle.down()
  11. if not turtle.detect() then
  12. turtle.select(2)
  13. turtle.placeDown()
  14. end
  15. turtle.up()
  16. turtle.select(i)
  17. turtle.placeDown()
  18. turtle.forward()
  19. else
  20. ponies = false
  21. break
  22. end
  23. end
  24. if ponies == false then
  25. break
  26. end
  27. end
Advertisement
Add Comment
Please, Sign In to add comment