Advertisement
CorazonTV

PAUT

Jul 16th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. function energie()
  2. if turtle.getFuelLevel() == 0 then
  3. print("Rechargement")
  4. turtle.select(1)
  5. turtle.refuel(1)
  6. end
  7. end
  8.  
  9. function miner()
  10. local nomBloc
  11.  
  12. nomBloc = turtle.inspect()
  13. print(nomBloc.name)
  14. turtle.dig()
  15.  
  16. turtle.forward()
  17.  
  18. nomBloc = turtle.inspectUp()
  19. print(nomBloc.name)
  20. turtle.digUp()
  21.  
  22. nomBloc = turtle.inspectDown()
  23. print(nomBloc.name)
  24. turtle.digDown()
  25. end
  26.  
  27. miner()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement