Advertisement
Guest User

fill

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