Advertisement
PaymentOption

cobblegen

Apr 21st, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. while true do
  2.     if turtle.detect() then turtle.dig()
  3.     else
  4.         for i=1, 9 do
  5.             turtle.select(i)
  6.             if getItemCount(i) == 64 then
  7.                 turtle.turnRight()
  8.                 turtle.turnRight()
  9.                 turtle.drop()
  10.                 turtle.turnRight()
  11.                 turtle.turnRight()
  12.             end
  13.         end
  14.     end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement