Advertisement
Guest User

bush

a guest
Jun 28th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. turtle.select(1)
  2.  
  3. x = 32
  4. z = 32
  5.  
  6. while x>0 do
  7.  turtle.place()
  8.  turtle.up()
  9.  x=x-1
  10. end
  11.  
  12. turtle.select(2)
  13.  
  14. while z>0 do
  15.  turtle.place()
  16.  turtle.down()
  17.  turtle.dig()
  18.  z = z-1
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement