Advertisement
VaMinion

gravel filler

Dec 11th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. turtleCursor = 1
  2.  
  3. turtle.forward()
  4.  
  5. while not turtle.detectDown() do
  6.  turtle.select(turtleCursor)
  7.  while turtle.placeDown() do
  8.   if turtle.getItemCount(turtleCursor) < 1 and turtleCursor < 16 then
  9.    turtleCursor = turtleCursor + 1
  10.    turtle.select(turtleCursor)
  11.   elseif turtleCursor > 16 then
  12.    return
  13.   end
  14.  end
  15.  turtle.forward()
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement