Advertisement
Guest User

Untitled

a guest
Mar 18th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.96 KB | None | 0 0
  1. init = false
  2. finished = false
  3.  
  4. function flip()
  5.     turtle.turnLeft()
  6.     turtle.turnLeft()
  7. end
  8.  
  9. while true do
  10.     if(turtle.getFuelLevel() < 1000) then
  11.         turtle.refuel()
  12.     end
  13.  
  14.     while not init do
  15.         if(rs.getInput("top")) then
  16.             switch = true
  17.             init = true
  18.         end
  19.     end
  20.  
  21.     startingPosition = false
  22.     while switch do
  23.         --set turtle to correct position
  24.         turtle.forward()
  25.         turtle.turnLeft()
  26.         while not startingPosition do
  27.             local succes, data = turtle.inspect()
  28.             if succes then
  29.                 if not data.name == "minecraft:piston" then
  30.                     turtle.forward()
  31.                 else
  32.                     turtle.turnRight()
  33.                     turtle.turnRight()
  34.                     startingPosition = true
  35.                 end
  36.             end
  37.         end
  38.  
  39.         --place ender pearl on empty spot (best on endstone)
  40.         while startingPosition do
  41.             local succes, data = turtle.inspect()
  42.  
  43.             if not succes then -- if "air" then
  44.             turtle.forward()
  45.             else if succes and data.name == "ExtraUtilities:etherealglass" then
  46.                 turtle.turnLeft()
  47.                 if not turtle.detect() then
  48.                     turtle.forward()
  49.                     turtle.turnLeft()
  50.                 else
  51.                     switch = false
  52.                     finished = true
  53.                     startingPosition = true
  54.                 end
  55.             else if succes and data.name == "minecraft:piston" then
  56.                 turtle.turnRight()
  57.                 if not turtle.detect() then
  58.                     turtle.forward()
  59.                     turtle.turnRight()
  60.                 else
  61.                     switch = false
  62.                     finished = true
  63.                     startingPosition = false
  64.                 end
  65.             end
  66.         end
  67.  
  68.         --go back to docking station
  69.         while finished do
  70.             flip()
  71.             local movingBackToStartLocation = true
  72.             while movingBackToStartLocation do
  73.                 turtle.forward()
  74.                 succes, data = turtle.inspectDown()
  75.                 if succes then
  76.                     if data.name == "minecraft:chest" then
  77.                         movingBackToStartLocation = false;
  78.                     else if not data.name == "minecraft:chest" then
  79.                         turtle.turnLeft()
  80.                         if turtle.detect() then
  81.                             flip()
  82.                             while not data.name == "minecraft:chest" do
  83.                                 turtle.forward()
  84.                             end
  85.                         end
  86.                     end
  87.                 end
  88.             end
  89.         end
  90.     end
  91. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement