Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ Wheat Farming Program: [Mining Turtle] ]]
- while true do
- turtle.select(1)
- turtle.place()
- turtle.select(2)
- turtle.place()
- turtle.place()
- turtle.place()
- if turtle.getItemCount(2) == 0 then
- if turtle.suckUp() == false then
- print("Please refill the bonemeal container!")
- return
- end
- end
- turtle.select(1)
- turtle.dig()
- turtle.select(3)
- turtle.dropDown()
- turtle.select(4)
- turtle.dropDown()
- end
- --[[ *This requires a turtle with a piece of tilled dirt in front of it, a chest with bonemeal on top, and an
- empty chest underneath it. Place seeds in the turtles first slot, and make sure there's water next to
- the tilled dirt ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement