Guest User

Untitled

a guest
May 16th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. i = 1
  2.  
  3. --REFUEL--Slot 2 Is For Wood/Fuel
  4. function refuel()
  5. while turtle.getFuelLevel() == 0 do
  6. turtle.selectSlot(2)
  7. turtle.refuel(1)
  8. end
  9. end
  10.  
  11. --CHOP--Slot 2 Is Wood/Fuel
  12. function chop()
  13. turtle.selectSlot(2)
  14. while turtle.comapare() == true do
  15. turtle.dig()
  16. turtle.digUp()
  17. turtle.up()
  18. else turtle.detectDown() == true
  19. print("Can't Move Down)
  20. else turtle.down()
  21. end
  22. end
  23. end
  24. end
  25.  
  26. --PLANT--Slot 1 Is For Saplings
  27. function plant()
  28. turtle.selectSlot(1)
  29. turtle.place()
  30. turtle.up()
  31. end
  32.  
  33. --EMPTY
  34. function empty()
  35. turtle.select(3)
  36. turtle.turnLeft()
  37. turtle.turnLeft()
  38. turtle.drop()
  39. turtle.turnLeft()
  40. turtle.turnLeft()
  41. end
  42.  
  43. refuel()
  44. plant()
  45. chop()
  46. sleep(2)
  47. empty()
Advertisement
Add Comment
Please, Sign In to add comment