Advertisement
Guest User

Oreberry farm

a guest
Aug 28th, 2013
2,656
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. -- Note: As you may have noticed, my lua skills are not as good as they could be.
  2.  
  3. -- Enter the height of your farm
  4. farmHeight = 6
  5.  
  6.  
  7. function minemoveplace()
  8. turtle.digDown()
  9. turtle.up()
  10. turtle.placeDown()
  11. end
  12.  
  13. function mmpHeight()
  14. for i = 1,height do
  15. minemoveplace()
  16. sleep(5)
  17. end
  18. end
  19.  
  20. height = farmHeight - 1
  21. haveFuel = true
  22. while haveFuel do
  23. currSlot = 1
  24. if turtle.getFuelLevel() < height*4+1 then
  25. turtle.turnLeft()
  26. turtle.suck()
  27. turtle.turnRight()
  28. shell.run("refuel", "all")
  29. end
  30. turtle.select(currSlot)
  31. mmpHeight()
  32. turtle.digDown()
  33. for i = 1,height do
  34. turtle.down()
  35. end
  36. turtle.placeDown()
  37. if turtle.getFuelLevel() < height*2 then
  38. haveFuel = false
  39. end
  40. turtle.turnRight()
  41. for i=2,16 do
  42. turtle.select(i)
  43. turtle.drop()
  44. end
  45. turtle.turnLeft()
  46. sleep(30)
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement