Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function harvest()
- turtle.dig()
- end
- local function plant()
- turtle.select(1)
- turtle.place()
- end
- while true do
- local success, data = turtle.inspect()
- if success then
- if data.state.age == 7 then
- harvest()
- plant()
- turtle.turnRight()
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment