Advertisement
Guest User

cobble12

a guest
Sep 18th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.92 KB | None | 0 0
  1. local start = os.clock();
  2.  
  3. function step1()
  4.   for i = 1, 6 do
  5.     turtle.suck();
  6.   end
  7. end
  8. function step2()
  9.   turtle.refuel(1);
  10.   turtle.turnLeft();
  11.   turtle.digDown();
  12.   turtle.down();
  13.   turtle.dig();
  14.   turtle.forward();
  15.   turtle.turnLeft();
  16.   turtle.digDown();
  17.   turtle.dig();
  18.   turtle.forward();
  19.   turtle.digDown();
  20. end
  21. function step3()
  22.   turtle.up();
  23.   turtle.up();
  24.   turtle.turnRight();
  25.   turtle.forward();
  26.   turtle.turnLeft();
  27. --  turtle.forward();
  28. end
  29. function step4()
  30. --  turtle.select(2);
  31. --  turtle.placeUp();
  32. --  turtle.back();
  33.   turtle.select(3);
  34.   turtle.placeUp();
  35. --  turtle.select(2);
  36.   turtle.back();
  37. --  turtle.place();
  38. --  turtle.select(4);
  39. --  turtle.placeUp();
  40.   turtle.select(2);
  41.   turtle.back();
  42. --  turtle.place();
  43.   turtle.placeUp();
  44. end
  45. function step5()
  46.   turtle.back();
  47.   turtle.turnLeft();
  48.   turtle.forward();
  49.   turtle.forward();
  50.   turtle.forward();
  51.   turtle.turnRight();
  52.   turtle.forward();
  53.   turtle.forward();
  54.   turtle.down();
  55. end
  56.  
  57. function step6()
  58.   turtle.digDown();
  59.   turtle.select(4);
  60.   turtle.placeDown();
  61. end
  62.  
  63. function step7()
  64.   turtle.select(2);
  65.   turtle.forward();
  66.   turtle.place();
  67.   turtle.turnLeft();
  68. --  turtle.place();
  69.   turtle.turnLeft();
  70.   turtle.place();
  71.   turtle.select(5);
  72.   turtle.up();
  73.   turtle.placeDown();
  74. end
  75.  
  76. function step8()
  77.   turtle.forward();
  78.   turtle.select(2);
  79.   turtle.place();
  80.   turtle.turnRight();
  81.   turtle.place();
  82.   turtle.turnRight();
  83.   turtle.place();
  84.   turtle.select(6);
  85.   turtle.turnLeft();
  86.   turtle.back();
  87.   turtle.place();
  88. end
  89. function step9()
  90.   turtle.dropDown();
  91.   for i = 1, 8 do
  92.     if turtle.getItemCount(i) > 0 then
  93.       turtle.select(i);
  94.       turtle.drop();
  95.     end
  96.   end
  97. end
  98.  
  99. function step10()
  100.   turtle.down();
  101.   turtle.turnRight();
  102. end
  103.  
  104. function build()
  105.   local bS = os.clock();
  106.   step1();
  107.   step2();
  108.   step3();
  109.   step4();
  110.   step5();
  111.   step6();
  112.   step7();
  113.   step8();
  114.   step9();
  115.   step10();
  116.   local bE = os.clock();
  117.   print("Build Time: " .. (bE - bS));
  118. end
  119.  
  120. function dropOff(reset)
  121.   turtle.turnLeft();
  122.   turtle.turnLeft();
  123.   for i = 1, 16 do
  124.     if turtle.getItemCount(i) > 0 then
  125.       turtle.select(i);
  126.       turtle.drop();
  127.     end
  128.   end
  129.   if reset then
  130.     turtle.turnLeft();
  131.     turtle.turnLeft();
  132.   end
  133. end
  134.  
  135. function collect(amt)
  136.   local cS = os.clock();
  137.   local targ = amt or (12 * 64);
  138.   local total = 0;
  139.   local c = {
  140.     "Up",
  141.     "",
  142.     "Down"
  143.   };
  144.   while total < targ do
  145.     for i = 1, #c do
  146.       if turtle["dig" .. c[i]]() then
  147.         total = total + 1;
  148.         if total >= targ then
  149.           break;
  150.         end
  151.         if total == 14 * 64 then
  152.           dropOff(true);
  153.         end
  154.        
  155.       end
  156.     end
  157.   end
  158.   dropOff();
  159.   local cE = os.clock();
  160.   print("Collection Time: " .. (cE - cS));
  161. end
  162.  
  163. function run(amount)
  164.   build();
  165.   collect(amount);
  166. end
  167.  
  168. run(12 * 64);
  169.  
  170. print("Total Time: " .. (os.clock() - start));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement