Advertisement
Incomprehensible

turtle test

Apr 2nd, 2025 (edited)
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.43 KB | None | 0 0
  1. local width = 3
  2. local length = 3
  3. local depth = 4
  4.  
  5. --- MOVEMENT / DIG FUNCS
  6. function tryMove()
  7.     --try move
  8.     local couldMove, moveReason = turtle.forward()
  9.     if(couldMove == false) then
  10.         print(moveReason)
  11.         return false
  12.     end
  13.     return true
  14. end
  15.  
  16. function tryDig()
  17.     --detect if solid block
  18.     if(turtle.detect()) then
  19.         --try dig
  20.         local couldDig, digReason = turtle.dig()
  21.         if(couldDig == false) then
  22.             --print(digReason)
  23.             return false
  24.         end
  25.         return true
  26.     end
  27.     return true
  28. end
  29.  
  30. function tryDigAndMoveDown()
  31.     if(turtle.detectDown()) then
  32.         local couldDig, digReason = turtle.digDown()
  33.         if(couldDig == false) then
  34.             print(digReason)
  35.         end
  36.     end
  37.     turtle.down()
  38. end
  39.  
  40. function tryDigAndMoveUp()
  41.     if(turtle.detectUp()) then
  42.         local couldDig, digReason = turtle.digUp()
  43.         if(couldDig == false) then
  44.             print(digReason)
  45.         end
  46.     end
  47.     turtle.up()
  48. end
  49.  
  50. function tryDigAndMove()
  51.     tryDig()
  52.     tryMove()
  53. end
  54. --- MAIN USER INPUT
  55.  
  56. write("The miner will make a cube shaped quarry of depth (Y): ")
  57. depth = read()
  58.  
  59. write("Starting from right of this block, the width of the quarry (X): ")
  60. width = read()
  61.  
  62. write("Looking directly forwards, the length of the quarry will be (Z): ")
  63. length = read()
  64. print("(Width: ".. width .. ", Depth: " .. depth .. ", Length: " .. length .. ")")
  65.  
  66. --- MAIN PREMINING CHECKS
  67. local fuelLevel = turtle.getFuelLevel()
  68. print("Fuel level: ".. fuelLevel)
  69.  
  70. if(fuelLevel <= 1000) then
  71.     --select slot 16, used for fuel
  72.     turtle.select(16)
  73.    
  74.     print(textutils.serialise(turtle.getItemDetail()))
  75.    
  76.     local ok, err = turtle.refuel()
  77.     if ok then
  78.         local newFuellevel = turtle.getFuelLevel()
  79.         print(("Refuelled %d, current level is %d"):format(newFuellevel - fuelLevel, newFuellevel))
  80.     else
  81.         printError(err)
  82.     end
  83. end
  84. turtle.select(1)
  85.  
  86. -- MAIN MOVEMENT
  87.  
  88. local sleepTime = 0.3
  89. local invertTurn = -1
  90. for z = 0,depth-1,1 do
  91.     tryDigAndMoveDown()
  92.     --sleep(sleepTime)
  93.     for x = 0, width-1, 1 do
  94.         --sleep(sleepTime)
  95.         for y = 0, length-1, 1 do
  96.             tryDigAndMove()
  97.             --sleep(sleepTime)
  98.         end
  99.        
  100.         if(x ~= width-1) then
  101.             if(invertTurn == -1) then
  102.                 turtle.turnRight()
  103.                 tryDigAndMove()
  104.                 turtle.turnRight()
  105.             end
  106.             if(invertTurn == 1) then
  107.                 turtle.turnLeft()
  108.                 tryDigAndMove()
  109.                 turtle.turnLeft()
  110.             end
  111.             invertTurn = invertTurn*-1
  112.            
  113.         end
  114.        
  115.     end
  116.     turtle.turnRight()
  117.     turtle.turnRight()
  118. end
  119.  
  120.  
  121. -- try to go back up
  122. for rise = 1, depth,1 do
  123.     tryDigAndMoveUp()
  124. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement