Advertisement
Guest User

fillMax

a guest
Jun 29th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. function fyll()
  2.   turtle.select(16)
  3.   turtle.placeUp()
  4.   turtle.select(1)
  5.   turtle.suckUp()
  6.   turtle.select(16)
  7.   turtle.digUp()
  8.   turtle.select(1)
  9. end
  10. turtle.select(1)
  11. turtle.forward()
  12. while turtle.detectDown() == false do
  13.   while turtle.detectDown() == false do
  14.     if turtle.placeDown() == false then
  15.       fyll()
  16.     end
  17.   end
  18.   turtle.forward()
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement