Advertisement
MigasRocha

Drop Areia

Jan 15th, 2021
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.72 KB | None | 0 0
  1. function andar()
  2.  
  3.  
  4. if turtle.getItemCount(1) == 0 then
  5.    refill()
  6.   end
  7.  
  8. if turtle.getFuelLevel() < 10 then
  9.    refuel()
  10.   end
  11.  
  12. if turtle.detectDown() == false then
  13.    turtle.placeDown()
  14.    end
  15.    
  16. if turtle.detectDown() == true then
  17.    turtle.forward()
  18.    end
  19. end
  20.  
  21. function refill()
  22.  
  23. turtle.select(2)
  24. turtle.turnLeft()
  25. turtle.place()
  26. turtle.select(1)
  27. turtle.suck()
  28. turtle.select(2)
  29. turtle.dig()
  30. turtle.turnRight()
  31. turtle.select(1)
  32. andar()
  33. end
  34.  
  35. function refuel()
  36.  
  37. turtle.select(3)
  38. turtle.turnLeft()
  39. turtle.place()
  40. turtle.select(4)
  41. turtle.suck()
  42. turtle.refuel()
  43. turtle.drop()
  44. turtle.select(3)
  45. turtle.dig()
  46. turtle.select(1)
  47. turtle.turnRight()
  48. andar()
  49. end
  50.  
  51. while true do
  52. andar()
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement