Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function depositWheat()
- turtle.select(4)
- turtle.drop()
- turtle.turnLeft()
- end
- function Bonemeal()
- turtle.select(2)
- turtle.suck()
- turtle.turnLeft()
- end
- function Seeds()
- turtle.select(1)
- turtle.suck()
- turtle.turnLeft()
- end
- function check_Bonemeal()
- turtle.select(2)
- if turtle.getItemCount(2) == 1 then
- turtle.suck()
- turtle.drop(turtle.getItemCount(2)-1)
- turtle.turnLeft()
- else
- turtle.turnLeft()
- end
- end
- function check_Seeds()
- turtle.select(1)
- if turtle.getItemCount(1) == 1 then
- turtle.suck()
- turtle.drop(turtle.getItemCount(1)-1)
- turtle.turnLeft()
- else
- turtle.turnLeft()
- end
- end
- function Harvest()
- turtle.dig()
- turtle.select(1)
- turtle.place()
- turtle.select(2)
- turtle.place()
- turtle.dig()
- turtle.turnLeft()
- end
- Harvest()
- turtle.turnLeft()
- Bonemeal()
- Seeds()
- while true do
- Harvest()
- depositWheat()
- check_Bonemeal()
- check_Seeds()
- end
Advertisement
Add Comment
Please, Sign In to add comment