Advertisement
StuBob

Untitled

Feb 21st, 2016
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. local arg = {...}
  2.  
  3. function step()
  4. turtle.digUp()
  5. turtle.up()
  6. turtle.digUp()
  7. turtle.dig()
  8. turtle.forward()
  9. checkAndPlace()
  10. turtle.digUp()
  11. turtle.up()
  12. turtle.digUp()
  13. turtle.dig()
  14. turtle.forward()
  15. checkAndPlace()
  16. turtle.digUp()
  17. turtle.turnLeft()
  18. end
  19.  
  20. function checkAndPlace()
  21. if(not turtle.detectDown()) then
  22. turtle.placeDown()
  23. end
  24. end
  25.  
  26.  
  27. for i = 1, tonumber(arg[1]) do
  28. step()
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement