Advertisement
rungholt

microwheat

Feb 15th, 2021 (edited)
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. local function InOutChest()
  2.     turtle.select(1)
  3.     turtle.dropUp()
  4.     turtle.select(2)
  5.     turtle.dropUp()
  6.     turtle.select(1)
  7.     turtle.suckUp(4)
  8. end
  9.  
  10. while true do
  11.     local isBlock, data = turtle.inspect()
  12.     if isBlock then
  13.         if data.state and data.state.age == 7 then
  14.             InOutChest()
  15.             turtle.dig()
  16.         end
  17.     else
  18.         turtle.select(1)
  19.         turtle.place()
  20.     end
  21.     turtle.turnRight()
  22.     sleep(60)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement