Advertisement
mlnecrafter

MC_TurtleChopTrees_Zone_X*Z_V01

Mar 15th, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.42 KB | None | 0 0
  1. Sizelength=2
  2. sizeFront=2
  3. function verwood()
  4.     height=0
  5.     function detectx()
  6.         return turtle.detect()
  7.     end
  8.     function chop4left()
  9.             while detectx()==true do
  10.                 turtle.digUp()
  11.                 turtle.dig()
  12.                 turtle.up()
  13.                 detectx()
  14.                 height=height+1
  15.             end
  16.             turtle.turnRight()
  17.             turtle.forward()
  18.             turtle.turnLeft()
  19.             turtle.digDown()
  20.             turtle.down()
  21.             height=height-1    
  22.             while height>0 do
  23.                 turtle.digDown()
  24.                 turtle.dig()
  25.                 turtle.down()
  26.                 turtle.dig()
  27.                 detectx()
  28.                 height=height-1
  29.             end
  30.                 turtle.turnRight()
  31.                 turtle.back()
  32.                 turtle.back()      
  33.     end    
  34.     local detect = turtle.detect()
  35.     if detect==true then
  36.     turtle.dig()
  37.     turtle.forward()
  38.     end
  39.     local detect2 = turtle.detect()
  40.     if detect2==false then
  41.         turtle.back()
  42.         turtle.up()
  43.         height=height+1
  44.         while detectx()==true do
  45.             turtle.digUp()
  46.             turtle.dig()
  47.             turtle.up()
  48.             detectx()
  49.             height=height+1    
  50.         end
  51.         for rangeDown=0,height-1 do
  52.             height=height-1
  53.             turtle.down()          
  54.         end
  55.     elseif detect2==true then
  56.         turtle.forward()
  57.         turtle.turnLeft()
  58.         if detectx()==true then
  59.             chop4left()
  60.         else
  61.             turtle.turnRight()
  62.             turtle.turnRight()
  63.                 while detectx()==true do
  64.                     turtle.digUp()
  65.                     turtle.dig()
  66.                     turtle.up()
  67.                     detectx()
  68.                     height=height+1
  69.                 end
  70.                 turtle.turnLeft()
  71.                 turtle.forward()
  72.                 turtle.turnRight()
  73.                 turtle.digDown()
  74.                 turtle.down()
  75.                 height=height-1    
  76.                 while height>0 do
  77.                     turtle.digDown()
  78.                     turtle.dig()
  79.                     turtle.down()
  80.                     turtle.dig()
  81.                     detectx()
  82.                     height=height-1
  83.                 end
  84.                 turtle.turnLeft()
  85.                 turtle.back()
  86.                 turtle.back()          
  87.         end
  88.     end
  89. end
  90. function walkver()
  91.     local ver = turtle.detect()
  92.     if ver==true then
  93.         verwood()
  94.     end
  95. end
  96. stepsback=Sizelength*2+1
  97. function minefront()
  98.         for i = 0,sizeFront do
  99.                 turtle.forward()
  100.                 walkver()
  101.         end
  102. end
  103. for countSizelength=0,Sizelength do
  104.                 minefront()
  105.                                 turtle.turnLeft()
  106.                                 walkver()
  107.                                 turtle.forward()
  108.                                 turtle.turnLeft()
  109.                 minefront()
  110.                                 turtle.turnRight()
  111.                                 walkver()
  112.                                 turtle.forward()
  113.                                 turtle.turnRight()
  114.                                 walkver()
  115. end
  116. turtle.turnRight()
  117. for f=0,stepsback do
  118.         turtle.forward()
  119. end
  120. turtle.turnLeft()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement