Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while true do
- turtle.select(1)
- local detail = {}
- detail = turtle.getItemDetail(1)
- if detail==nil then
- turtle.suckUp(1)
- end
- if detail~=nil then
- if detail["name"]=="minecraft:bucket" then
- while detail["name"]~="minecraft:milk_bucket" do
- turtle.place()
- detail=turtle.getItemDetail()
- sleep(2)
- end
- end
- if detail["name"]=="minecraft:milk_bucket" then
- turtle.dropDown()
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment