jamesscape2

Untitled

Jan 3rd, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1.  
  2.  
  3. function RowF()
  4. turtle.digDown()
  5. turtle.placeDown()
  6. turtle.forward()
  7. turtle.digDown()
  8. turtle.placeDown()
  9. turtle.forward()
  10. turtle.digDown()
  11. turtle.placeDown()
  12. turtle.forward()
  13. turtle.digDown()
  14. turtle.placeDown()
  15. turtle.forward()
  16. turtle.digDown()
  17. turtle.placeDown()
  18. turtle.forward()
  19. turtle.digDown()
  20. turtle.placeDown()
  21. turtle.forward()
  22. turtle.digDown()
  23. turtle.placeDown()
  24. turtle.forward()
  25. turtle.digDown()
  26. turtle.placeDown()
  27. turtle.forward()
  28. turtle.digDown()
  29. turtle.placeDown()
  30. turtle.turnLeft()
  31. turtle.forward()
  32. turtle.turnLeft()
  33. end
  34.  
  35. function RowR()
  36. turtle.digDown()
  37. turtle.placeDown()
  38. turtle.forward()
  39. turtle.digDown()
  40. turtle.placeDown()
  41. turtle.forward()
  42. turtle.digDown()
  43. turtle.placeDown()
  44. turtle.forward()
  45. turtle.digDown()
  46. turtle.placeDown()
  47. turtle.forward()
  48. turtle.digDown()
  49. turtle.placeDown()
  50. turtle.forward()
  51. turtle.digDown()
  52. turtle.placeDown()
  53. turtle.forward()
  54. turtle.digDown()
  55. turtle.placeDown()
  56. turtle.forward()
  57. turtle.digDown()
  58. turtle.placeDown()
  59. turtle.forward()
  60. turtle.digDown()
  61. turtle.placeDown()
  62. turtle.turnRight()
  63. turtle.forward()
  64. turtle.turnRight()
  65. end
  66.  
  67. function DropOff()
  68. turtle.turnLeft()
  69. for i=1, 5 do
  70. turtle.forward()
  71. end
  72. turtle.turnRight()
  73. for i=1, 4 do
  74. turtle.forward()
  75. end
  76.  
  77. for i=2, 16 do
  78. turtle.select(i)
  79. turtle.dropDown()
  80. end
  81. end
  82.  
  83. function Reset()
  84. for i=1, 4 do
  85. turtle.forward()
  86. end
  87. turtle.turnLeft()
  88. for i=1, 4 do
  89. turtle.forward()
  90. end
  91. turtle.turnLeft()
  92. sleep(2700)
  93. shell.run("startup")
  94. end
  95.  
  96.  
  97. -- Program Starts here --
  98. term.clear()
  99. term.setCursorPos(1,1)
  100.  
  101. print("Seeds Only in Slot 1")
  102.  
  103. RowF()
  104. RowR()
  105. RowF()
  106. RowR()
  107. RowF()
  108. RowR()
  109. RowF()
  110. RowR()
  111. RowF()
  112. DropOff()
  113. Reset()
Advertisement
Add Comment
Please, Sign In to add comment