Advertisement
colhaydutu

steampunk concrete turtle

Apr 13th, 2024 (edited)
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. while true do
  2. for slot = 1, 16 do
  3. local itemDetail = turtle.getItemDetail(slot)
  4. if itemDetail and string.find(itemDetail.name, "concrete_powder") then
  5. turtle.select(slot)
  6. turtle.place()
  7. turtle.dig()
  8. break
  9. end
  10. end
  11. end
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement