Advertisement
Guest User

chop

a guest
Nov 27th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. z = 0
  2.  
  3. turtle.select(16)
  4. turtle.refuel()
  5. turtle.select(1)
  6.  
  7. while true do
  8.   turtle.select(14)
  9.   if turtle.compare() then
  10.     while turtle.compare() do
  11.       turtle.dig()
  12.       turtle.digUp()
  13.       turtle.up()
  14.       z = z + 1
  15.     end
  16.   end
  17.   turtle.select(1)
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement