Guest User

Turtle Flax Farm

a guest
Dec 28th, 2012
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. --[[
  2. 1-4 - flax seeds
  3. 5-11 - string
  4. 12 - cobble
  5. 13 - planks
  6. 14 - other planks
  7. 15 - chest
  8. 16 - charcoal
  9. ]]--
  10. seedSlot = 1
  11. coalSlot = 13
  12. while true do
  13. outOfSeeds = 0
  14. refuel = 1
  15. while turtle.getFuelLevel() <= 500 do
  16. turtle.select(16)
  17. drop = turtle.getItemCount(16)
  18. drop = drop - 1
  19. turtle.refuel(drop)
  20. refuel = refuel + 1
  21. if refuel >= 5 then
  22. print("I am out of fuel")
  23. error()
  24. end
  25. end
  26. if turtle.detectDown()then
  27. turtle.select(seedSlot)
  28. while turtle.getItemCount(seedSlot) <= 1 do
  29. seedSlot = seedSlot + 1
  30. if seedSlot > 4 then
  31. seedSlot = 1
  32. end
  33. turtle.select(seedSlot)
  34. outOfSeeds = outOfSeeds + 1
  35. if outOfSeeds >= 6 then
  36. print("I am out of seeds")
  37. error()
  38. end
  39. end
  40. turtle.digDown()
  41. turtle.down()
  42. turtle.digDown()
  43. turtle.suckDown()
  44. turtle.placeDown()
  45. turtle.up()
  46. turtle.forward()
  47. end
  48. turtle.select(14)
  49. if turtle.compare() then
  50. turtle.turnLeft()
  51. if not turtle.detect() then
  52. turtle.forward()
  53. end
  54. turtle.turnLeft()
  55. end
  56. turtle.select(13)
  57. if turtle.compare() then
  58. turtle.turnRight()
  59. if turtle.detect() then
  60. turtle.turnLeft()
  61. turtle.turnLeft()
  62. while not turtle.detect() do
  63. turtle.forward()
  64. end
  65. turtle.turnLeft()
  66. else
  67. turtle.forward()
  68. turtle.turnRight()
  69. end
  70. end
  71. turtle.select(15)
  72. if turtle.compare() then
  73. for slot = 5, 12 do
  74. turtle.select(slot)
  75. drop = turtle.getItemCount(slot)
  76. drop = drop - 1
  77. turtle.drop(drop)
  78. end
  79. for slot = 3, 4 do
  80. turtle.select(slot)
  81. drop = turtle.getItemCount(slot)
  82. drop = drop - 1
  83. turtle.drop(drop)
  84. end
  85. turtle.select(16)
  86. if turtle.getItemCount(16) <= 1 then
  87. turtle.suckUp()
  88. end
  89. turtle.turnRight()
  90. turtle.forward()
  91. turtle.turnRight()
  92. end
  93. turtle.select(12)
  94. if turtle.compare() then
  95. turtle.turnLeft()
  96. end
  97. if not turtle.detectDown() then
  98. turtle.forward()
  99. end
  100.  
  101. end
Add Comment
Please, Sign In to add comment