rungholt

microcarrot

Aug 3rd, 2023 (edited)
861
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 1 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(1)
  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(30)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment