Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while true do
- for slot = 1, 16 do
- local itemDetail = turtle.getItemDetail(slot)
- if itemDetail and string.find(itemDetail.name, "concrete_powder") then
- turtle.select(slot)
- turtle.place()
- turtle.dig()
- break
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement