Advertisement
Guest User

Helstedxd's hole

a guest
Jan 15th, 2013
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.48 KB | None | 0 0
  1. size = 7 -- The size of the room, must be an odd number
  2. height = 5 -- The height of the room
  3. slotforfuel = 1 -- Just some itemslots
  4. wall = {2,3,4,5} -- Just some itemslots
  5. slotfloor = 6 -- Just some itemslots
  6. slotroof = 7 -- Just some itemslots
  7. slotlamp = 8 -- Just some itemslots
  8.  
  9. -- DO NOT EDIT BELOW THIS, for your own sake
  10.  
  11. print("Helstedxd hole digger.")
  12. print("Slot 1 is for coal")
  13. print("Slots 2-5 is for the walls, each of the stacks is a wall")
  14. print("Slot 6 is for the blocks for the floor")
  15. print("Slot 7 is for the blocks for the roof")
  16. print("Slot 8 is for the the lamp")
  17. print("Press Enter to begin")
  18.  
  19. io.read()
  20.  
  21. turtle.select(slotforfuel)
  22. turtle.refuel()
  23.  
  24. size = size-1
  25.  
  26. placeforlamp = (size/2)
  27.  
  28. function lamp( move, movetop, itemslot )
  29.   print ( itemslot )
  30.   for i=1,move,1 do
  31.     while not turtle.forward() do end
  32.   end
  33.  
  34.   turtle.turnLeft()
  35.  
  36.   for i=1,move,1 do
  37.     while not turtle.forward() do end
  38.   end
  39.  
  40.   for i=1,movetop,1 do
  41.     while not turtle.up() do end
  42.   end
  43.  
  44.   turtle.select( itemslot )
  45.   turtle.placeUp()
  46.  
  47.   for i=1,movetop,1 do
  48.     while not turtle.down() do end
  49.   end
  50.  
  51.   turtle.turnLeft()
  52.   turtle.turnLeft()
  53.  
  54.   for i=1,move,1 do
  55.     while not turtle.forward() do end
  56.   end
  57.  
  58.   turtle.turnRight()
  59.  
  60.   for i=1,move,1 do
  61.     while not turtle.forward() do end
  62.   end
  63.  
  64.   turtle.turnRight()
  65.   turtle.turnRight()
  66. end
  67.  
  68. function wallstrip ( walllength, slot )
  69.   for i=1,walllength,1 do
  70.     turtle.dig()
  71.     while not turtle.forward() do
  72.       turtle.dig()
  73.     end
  74.   end
  75.  
  76.   for i=1,walllength,1 do
  77.   while not turtle.back() do end
  78.     turtle.place()
  79.   end
  80.  
  81. end
  82.  
  83. function wallup ( walllength, slot )
  84.   turtle.digUp()
  85.   while not turtle.up() do
  86.     turtle.digUp()
  87.   end
  88.   turtle.placeDown()
  89.   wallstrip( walllength, slot )
  90. end
  91.  
  92. function intowall ( walllength, slot, wallheight )
  93.   turtle.select( slot )
  94.  
  95.   turtle.turnRight()
  96.   turtle.dig()
  97.   while not turtle.forward() do
  98.     turtle.dig()
  99.   end
  100.   turtle.turnLeft()
  101.   wallstrip( walllength, slot )
  102.   for i=1,wallheight,1 do
  103.     wallup ( walllength, slot )
  104.   end
  105.  
  106.   turtle.turnLeft()
  107.   while not turtle.forward() do end
  108.   turtle.turnLeft()
  109.   turtle.turnLeft()
  110.   turtle.place()
  111.   for i=1,wallheight,1 do
  112.     while not turtle.down() do end
  113.   end
  114.   turtle.turnLeft()
  115. end
  116.  
  117. function dig( move )
  118.   for i=1,move,1 do
  119.     turtle.dig()
  120.     print("Dig!")
  121.     while not turtle.forward() do
  122.       turtle.dig()
  123.     end
  124.   end
  125. end
  126.  
  127. function back( move )
  128.   for i=1,move,1 do
  129.     while not turtle.back() do end
  130.   end
  131. end
  132.  
  133. function placefloor ( move )
  134.   for i=1,move,1 do
  135.     while not turtle.back() do end
  136.     turtle.place()
  137.   end
  138. end
  139.  
  140. function makefloor ( width, slotforblock )
  141.   turtle.select( slotforblock )
  142.   turtle.digDown()
  143.   while not turtle.down() do end
  144.   for i=1,(size+1),1 do
  145.     dig( width )
  146.     placefloor( width )
  147.     turtle.turnLeft()
  148.     turtle.dig()
  149.     while not turtle.forward() do
  150.       turtle.dig()
  151.     end
  152.     turtle.turnRight()
  153.   end
  154.  
  155.   turtle.turnLeft()
  156.   for i=1,size+1,1 do
  157.     while not turtle.back() do end
  158.     turtle.place()
  159.   end
  160.   while not turtle.up() do end
  161.   turtle.placeDown()
  162.   turtle.turnRight()
  163. end
  164.  
  165. function makeroof ( width, slotforblock )
  166.   turtle.select( slotforblock )
  167.   for i=1,(size+1),1 do
  168.     dig( width )
  169.     placefloor( width )
  170.     turtle.turnLeft()
  171.     turtle.dig()
  172.     while not turtle.forward() do
  173.       turtle.dig()
  174.     end
  175.     turtle.turnRight()
  176.   end
  177.  
  178.   turtle.turnLeft()
  179.   for i=1,size+1,1 do
  180.     while not turtle.back() do end
  181.     turtle.place()
  182.   end
  183.   while not turtle.down() do end
  184.   turtle.placeUp()
  185.   turtle.turnRight()
  186.   for i=1,(height-1),1 do
  187.     while not turtle.down() do end
  188.   end
  189. end
  190.  
  191. function turn()
  192.   turtle.turnLeft()
  193.   turtle.dig()
  194.   while not turtle.forward() do
  195.     turtle.dig()
  196.   end
  197.   turtle.turnRight()
  198. end
  199.  
  200. function digfunc( move )
  201.   for i=1,move,1 do
  202.     dig( move )
  203.     back( move )
  204.     turn()
  205.   end
  206.   dig( move )
  207.   back( move )
  208.   turtle.turnRight()
  209.   for i=1,move,1 do
  210.     while not turtle.forward() do end
  211.   end
  212.   turtle.turnLeft()
  213. end
  214.  
  215. for i=1,height,1 do
  216.   turtle.digDown()
  217.   turtle.down()
  218.   digfunc( size )
  219. end
  220.  
  221. lamp( placeforlamp, (height-2), slotlamp )
  222.  
  223. for i=1,4,1 do
  224.   intowall( size, wall[i], (height-1) )
  225.   for i=1,size,1 do
  226.     while not turtle.forward() do end
  227.   end
  228.   turtle.turnLeft()
  229. end
  230.  
  231. makefloor ( size, slotfloor )
  232.  
  233. for i=1,height,1 do
  234.   while not turtle.up() do end
  235. end
  236.  
  237. makeroof ( size, slotroof )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement