Advertisement
Guest User

test

a guest
Aug 3rd, 2015
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. function dropAllLeft()
  2.   turtle.turnLeft()
  3.   for i=1,16 do
  4.     turtle.select(i)
  5.     turtle.drop()
  6.   end
  7.   turtle.turnRight()
  8. end
  9.  
  10. function dropAllDown()
  11.   for i=1,16 do
  12.     turtle.select(i)
  13.     turtle.dropDown()
  14.   end
  15. end
  16.  
  17. while turtle.detect() do
  18.   turtle.dig()
  19. end
  20. dropAllDown()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement