Advertisement
SparkVGX

Bridge v2.0

Jan 4th, 2013
1,321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. -- 3 wide bridge v2.0 by SparkVGX
  2.  
  3. --Variables
  4. distance = 0
  5. blocksPlaced = 0
  6. fuel = 1
  7. torches = 2
  8. spaceCounter = 7
  9.  
  10. -- Clears screen for instructions or not
  11. function clear(test) -- function to reset screen
  12. term.clear()
  13. term.setCursorPos(1,1)
  14. if test == nil then -- easy way to decide whether to display text or not
  15. print("Place me on the ground just in front of where you want the bridge.")
  16. print()
  17. print("Fuel goes in slot 1, Torches in two, and blocks everywhere else.")
  18. print()
  19. print("Press any key to start..")
  20. end
  21. end
  22.  
  23. function anyKey()
  24. while not bEnd do
  25. local event, key = os.pullEvent("key")
  26. if (key ~= 1) and (key ~= 42) then
  27. bEnd = true
  28. end
  29. end
  30. end
  31.  
  32. -- If I need fuel, I will try use refuel
  33. function checkFuel()
  34. if turtle.getFuelLevel() <= 5 then
  35. turtle.select(1) --fuel goes in this slot
  36. turtle.refuel(1)
  37. end
  38. end
  39.  
  40. -- Place torch
  41. function pTorch()
  42. turtle.select(2)
  43. turtle.up()
  44. turtle.place()
  45. turtle.down()
  46. end
  47.  
  48. -- Select blocks to place
  49. -- only slots 3-16 should have blocks
  50. function selectBlock()
  51. for slot=3,16 do
  52. if turtle.getItemCount(slot)~=0 then
  53. turtle.select(slot)
  54. break
  55. end
  56. end
  57. end
  58.  
  59. -- Select blocks and place them if possible, otherwise if out of blocks, wait.
  60. function placeB()
  61. selectBlock()
  62. if turtle.detect() == false then
  63. if turtle.place() == false then
  64. print("Need blocks")
  65. sleep(5)
  66. placeB()
  67. end
  68. blocksPlaced = blocksPlaced + 1
  69.  
  70. end
  71. end
  72.  
  73. -- pretty simple.. you turn around
  74. function turnAround()
  75. turtle.turnLeft()
  76. turtle.turnLeft()
  77. end
  78.  
  79. --initial start to get turtle in position
  80. function runOnce()
  81. checkFuel()
  82. while turtle.detectDown() == true do
  83. turtle.forward()
  84. distance = distance + 1
  85. end
  86. turtle.down()
  87. turtle.turnLeft()
  88. placeB()
  89. turnAround()
  90. placeB()
  91. turtle.turnRight()
  92. end
  93. -- takes the turtle back where it started
  94. function goHome()
  95. turtle.up()
  96. selectBlock()
  97. turtle.placeDown()
  98. blocksPlaced = blocksPlaced + 1
  99. turtle.up()
  100.  
  101. for i=1,distance do
  102. turtle.forward()
  103. end
  104. turnAround()
  105. turtle.down()
  106. print("All done!")
  107. print("I went " .. distance .. " meters and placed " .. blocksPlaced .. " blocks.")
  108. end
  109.  
  110. --The main code to run
  111. function start()
  112. runOnce()
  113. --checks fuel, places blocks behind and on the sides.
  114. while turtle.back() do
  115. checkFuel()
  116. placeB()
  117. turtle.turnLeft()
  118. placeB()
  119. turnAround()
  120. placeB()
  121. turtle.turnLeft()
  122. spaceCounter = spaceCounter + 1
  123. distance = distance + 1
  124. -- every so often, places a torch and
  125. -- resets the counter
  126. if spaceCounter == 8 then
  127. pTorch()
  128. spaceCounter = 0
  129. end
  130. end
  131. -- all done? return to start
  132. goHome()
  133. end
  134.  
  135. clear()
  136. anyKey()
  137. start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement