Guest User

quarry

a guest
Dec 22nd, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. f = 64   -- starting floor
  2. b = 5    -- bedrock
  3.  
  4.  while f > 5 do
  5.     while turtle.getItemCount (2) < 20 do
  6.      turtle.digDown()
  7.      turtle.down()
  8.      f = f - 1
  9.     end
  10.  
  11.  end
  12.  
  13. while b < 64 do
  14.     turtle.up()
  15.     b = b + 1
  16.    
  17. end
Advertisement
Add Comment
Please, Sign In to add comment