Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function isWood()
  2. while true do
  3. u = 0
  4. local success, data = turtle.inspect()
  5. if success then
  6. print("block:", data.name)
  7. block = data.name
  8. end
  9. if block == "IC2:rubberWood" then
  10. turtle.dig()
  11. turtle.digUp()
  12. turtle.up()
  13. u = u +1
  14. print("Bloco removido:", block)
  15. end
  16.  
  17. while u > 0 do
  18. turtle.down()
  19. end
  20. end
  21.  
  22. end
  23.  
  24. iswood()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement