Advertisement
Guest User

Quarry32

a guest
Mar 29th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.91 KB | None | 0 0
  1. x = 0
  2. y = 0
  3. z = 0
  4. d = 0
  5.  
  6. print("Initiating preparation for a 32 by 32 Quarry")
  7.  
  8. function UpDig()
  9.   for b = 1,4 do
  10.     while turtle.detect() == true do
  11.       turtle.dig()
  12.     end
  13.     if turtle.detect() == false then
  14.       turtle.up()
  15.       y = y + 1
  16.     end
  17.   end
  18. end
  19.  
  20. function AdvanceAway()
  21.   while turtle.detect() == true do
  22.     turtle.dig()
  23.   end
  24.   if turtle.detect() == false then
  25.     turtle.forward()
  26.     x = x + 1
  27.   end
  28. end
  29.  
  30. function DownDig()
  31.   for c = 1,4 do
  32.     while turtle.detect() == true do
  33.       turtle.dig()
  34.     end
  35.     if turtle.detect() == false then
  36.       if turtle.detectDown() == true then
  37.         turtle.digDown()
  38.         turtle.down()
  39.         y = y - 1
  40.       else
  41.         turtle.down()
  42.         y = y - 1
  43.       end
  44.     end
  45.   end
  46. end
  47.  
  48. function GoLeft()
  49.   turtle.turnLeft()
  50.   d = 3
  51.   for e = 1,4 do
  52.     while turtle.detect() == true do
  53.       turtle.dig()
  54.     end
  55.     if turtle.detect() == false then
  56.       turtle.up()
  57.       y = y + 1
  58.     end
  59.   end
  60.   while turtle.detect() == true do
  61.     turtle.dig()
  62.   end
  63.   if turtle.detect() == false then
  64.     turtle.forward()
  65.     z = z + 1
  66.   end
  67.   for f = 1,4 do
  68.     if turtle.detectDown() == true then
  69.       turtle.digDown()
  70.       turtle.down()
  71.       y = y - 1
  72.     else
  73.       turtle.down()
  74.       y = y - 1
  75.     end
  76.   end
  77.   turtle.turnLeft()
  78.   d = 2
  79. end
  80.  
  81. function AdvanceTowards()
  82.   while turtle.detect() == true do
  83.     turtle.dig()
  84.   end
  85.   if turtle.detect() == false then
  86.     turtle.forward()
  87.     x = x - 1
  88.   end
  89. end
  90.  
  91. function GoRight()
  92.   turtle.turnRight()
  93.   d = 3
  94.   for h = 1,4 do
  95.     while turtle.detect() == true do
  96.       turtle.dig()
  97.     end
  98.     if turtle.detect() == false then
  99.       turtle.up()
  100.       y = y + 1
  101.     end
  102.   end
  103.   while turtle.detect() == true do
  104.     turtle.dig()
  105.   end
  106.   if turtle.detect() == false then
  107.     turtle.forward()
  108.     z = z + 1
  109.   end
  110.   for i = 1,4 do
  111.     if turtle.detectDown() == true then
  112.       turtle.digDown()
  113.       turtle.down()
  114.       y = y - 1
  115.     else
  116.       turtle.down()
  117.       y = y - 1
  118.     end
  119.   end
  120.   turtle.turnRight()
  121.   d = 0
  122. end
  123.  
  124. function InventoryCheck()
  125.   if turtle.getItemCount(16) > 0 then
  126.     print("High inventory variance. Unloading...")
  127.     if d = 0 then
  128.       turtle.turnRight()
  129.       turtle.turnRight()
  130.       if x > 0 then
  131.         for j = 1,x do
  132.           turtle.forward()
  133.         end
  134.       end
  135.       turtle.turnLeft()
  136.       if z > 0 then
  137.         for k = 1,z do
  138.           turtle.forward()
  139.         end
  140.       end
  141.       turtle.turnRight()
  142.     end
  143.     if d = 2 then
  144.       turtle.turnLeft()
  145.       if z > 0 then
  146.         for l = 1,z do
  147.           turtle.forward()
  148.         end
  149.       end
  150.       turtle.turnRight()
  151.       if x > 0 then
  152.         for m = 1,x do
  153.           turtle.forward()
  154.         end
  155.       end
  156.     end
  157.     for n = 1,16 do
  158.       turtle.select(n)
  159.       turtle.drop()
  160.     end
  161.     turtle.select(1)
  162.     if d = 0 then
  163.       turtle.turnRight()
  164.       if z > 0 then
  165.         for o = 1,z do
  166.           turtle.forward()
  167.         end
  168.       end
  169.       turtle.turnRight()
  170.       if x > 0 then
  171.         for p = 1,x do
  172.           turtle.forward()
  173.         end
  174.       end
  175.     end
  176.     if d = 2 then
  177.       turtle.turnRight()
  178.       turtle.turnRight()
  179.       if x > 0 then
  180.         for q = 1,x do
  181.           turtle.forward()
  182.         end
  183.       end
  184.       turtle.turnLeft()
  185.       if z > 0 then
  186.         for r = 1,z do
  187.           turtle.forward()
  188.         end
  189.       end
  190.       turtle.turnLeft()
  191.     end
  192.     print("Inventory emptied, returning to work...")
  193.   end
  194. end    
  195.  
  196. function DiggingCycle()
  197.   for a = 1,16 do
  198.     UpDig()
  199.     AdvanceAway()
  200.     DownDig()
  201.     InventoryCheck()
  202.     AdvanceAway()
  203.   end
  204.   GoLeft()
  205.   for g = 1,16 do
  206.     UpDig()
  207.     AdvanceTowards()
  208.     DownDig()
  209.     InventoryCheck()
  210.     AdvanceTowards()
  211.   end
  212.   GoRight()
  213. end
  214.  
  215. for s = 1,16 do
  216.   DiggingCycle()
  217. end
  218. print("Quarry preparation complete.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement