Advertisement
GamingwithAtos

Untitled

Dec 13th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local turtles = 20
  2. local fpt = 5
  3.  
  4. function Position()
  5. turtle.dig()
  6. turtle.digUp()
  7. turtle.forward()
  8. turtle.dig()
  9. turtle.digUp()
  10. turtle.forward()
  11. turtle.turnRight()
  12. turtle.dig()
  13. PlaceTurtle()
  14. end
  15.  
  16. function PlaceTurtle()
  17. turtle.select(1)
  18. turtle.place()
  19. turtle.select(2)
  20. turtle.drop(ftp)
  21. turtle.turnLeft()
  22. end
  23.  
  24. while true do
  25. if turtle == 0 then
  26. exit()
  27. end
  28. Position()
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement