Advertisement
fauxiss

Untitled

Jan 5th, 2013
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. length = 30
  2. x = 0
  3.  
  4. function checkfuel()
  5. if turtle.getfuellevel() < 10 then
  6. turtle.select(16)
  7. turtle.refuel(1)
  8. turtle.select(1)
  9. end
  10. end
  11.  
  12. function strip()
  13. checkfuel()
  14. turtle.dig()
  15. turtle.forward()
  16. turtle.digup()
  17. end
  18.  
  19. function turnaround()
  20. turtle.turnleft()
  21. strip()
  22. strip()
  23. strip()
  24. turtle.turnleft()
  25. end
  26.  
  27. checkfuel()
  28. for x = 1, length do
  29. strip()
  30. end
  31.  
  32. turnaround()
  33. x = 0
  34.  
  35. for x = 1, length do
  36. strip()
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement