Advertisement
Ubidibity

reclaim

Sep 4th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. -- place against starting quarry block, it will dig out marker, then block beneath it
  2. -- it's not the fastest (because it digs regardless of block presence) but it works
  3.  
  4. width=31
  5. turtle.up()
  6. turtle.dig()
  7. turtle.forward()
  8. turtle.turnLeft()
  9. for y=1,4 do
  10.   for x=1,width do
  11.     if turtle.inspect() then
  12.       turtle.dig()
  13.     end
  14.     turtle.forward()
  15.     if turtle.inspectDown() then
  16.       turtle.digDown()
  17.     end
  18.   end
  19.   turtle.turnRight()
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement