jamesscape2

Untitled

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