Guest User

farm.lua

a guest
Feb 13th, 2021
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. local function harvest()
  2.     turtle.dig()
  3. end
  4.  
  5. local function plant()
  6.     turtle.select(1)
  7.     turtle.place()
  8. end
  9.  
  10. while true do
  11.     local success, data = turtle.inspect()
  12.         if success then
  13.             if data.state.age == 7 then
  14.                 harvest()
  15.                 plant()
  16.     turtle.turnRight()
  17.             end
  18.         end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment