Advertisement
mastahslayah

MineForwards

Jan 12th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. local length = 20
  2.  
  3. function MineUp()
  4. turtle.dig()
  5. turtle.up()
  6. turtle.forward()
  7. end
  8.  
  9. function MineDown()
  10. turtle.dig()
  11. turtle.down()
  12. turtle.forward()
  13. end
  14.  
  15. for i=1,length do
  16. MineUp()
  17. MineDown()
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement