Advertisement
Inksaver

lavaRefuel.lua (refuel or drain lava) 2025/02/02

Apr 28th, 2020 (edited)
2,469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.86 KB | None | 0 0
  1. version = 20250202.1430
  2. --[[
  3.     pastebin get kFZsXu99 lavaRefuel.lua
  4.     Last edited: see version YYYYMMDD.HHMM
  5.     Will auto-download clsTurtle.lua
  6.     Used to refuel a turtle on a lava lake or drain lava
  7.     Use: 'lavaRefuel' in turtle terminal
  8. ]]
  9. local Turtle = require("lib.clsTurtle")
  10. -- Turtle class (T), menu class (menu) and other libraries made Global
  11.  
  12. function clear()
  13.     term.clear()
  14.     term.setCursorPos(1, 1)
  15. end
  16.  
  17. function checkLibs(libDir, filename)
  18.     local fileExists = false
  19.     if fs.exists(libDir) then
  20.         if not fs.isDir(libDir) then
  21.             fs.move(libDir, libDir.."Renamed")
  22.             fs.makeDir(libDir)
  23.         end
  24.     else
  25.         fs.makeDir(libDir)
  26.     end
  27.     if fs.exists(fs.combine(libDir, filename)) or fs.exists(fs.combine(libDir, filename..".lua")) then
  28.         fileExists = true
  29.     end
  30.     return fileExists
  31. end
  32.  
  33. function getLavaStrip(y)
  34.     local block = T:isWaterOrLava("down") -- will automatically fill bucket with lava and refuel
  35.     local length = 0
  36.     local lavaPresent = false
  37.     local full = false
  38.     -- while lava below, just started or moved forward < 3
  39.     while (block == "minecraft:lava" or block == "minecraft:flowing_lava" or length < 3) and not full do --will automatically fill bucket with lava
  40.         if T:forward(1) then
  41.             length = length + 1
  42.             y = y + 1
  43.         end
  44.         block = T:isWaterOrLava("down")
  45.        
  46.         print("Block below: "..tostring(block))
  47.         if block == "minecraft:lava" or block == "minecraft:flowing_lava" then
  48.             lavaPresent = true
  49.         end
  50.         if turtle.getFuelLevel() >= turtle.getFuelLimit() then
  51.             full = true
  52.             lavaPresent = false
  53.         end
  54.     end
  55.     T:go("L2F"..length + 1)
  56.     y = y - length - 1
  57.     block = T:isWaterOrLava("down")
  58.     while block == "minecraft:lava" or block == "minecraft:flowing_lava" do
  59.         T:forward(1)
  60.         y = y - 1
  61.         block = T:isWaterOrLava("down")
  62.     end
  63.     turtle.back()
  64.     y = y + 1
  65.     T:go("L2")
  66.     return lavaPresent, y
  67. end
  68.    
  69. function goHome(x, y)
  70.     if y > 0 then
  71.         utils.goBack(y)
  72.     elseif y < 0 then
  73.         T:forward(math.abs(y))
  74.     end
  75.     if x > 0 then
  76.         T:go("L1F"..x.."R1")
  77.     elseif x < 0 then
  78.         T:go("R1F"..math.abs(x).."L1")
  79.     end
  80. end
  81.  
  82. function main()
  83.     local side = ''
  84.     while side == '' do
  85.         clear()
  86.         print("Place me in front of lava")
  87.         print("Which side has more lava? (L C R)")
  88.         print("Choose C for a single strip")
  89.         side = read()
  90.         if side == 'l' or side =='L' then
  91.             side = 'L'
  92.         elseif side == 'r' or side =='R' then
  93.             side = 'R'
  94.         else
  95.             side = 'C'
  96.         end
  97.     end
  98.     local doContinue = true
  99.     if not checkLibs("lib", "clsTurtle") then
  100.         -- use pastebin get to download clsTurtle to libs folder
  101.         print("Missing clsTurtle.lua in libs directory")
  102.         print("Attempting to obtain from Pastebin...")
  103.         if shell.run("pastebin","get","tvfj90gK","lib/clsTurtle.lua") then
  104.             print("clsTurtle.lua installed from Pastebin")
  105.         else
  106.             print("failed to install clsTurtle.lua from Pastebin")
  107.             doContinue = false
  108.         end
  109.     end
  110.     if doContinue then
  111.         T = Turtle(false)
  112.         clear()
  113.         print("Current fuel: "..turtle.getFuelLevel().." / "..turtle.getFuelLimit())
  114.        
  115.         local lavaSlot = T:getItemSlot("minecraft:lava_bucket")
  116.         if lavaSlot > 0 then
  117.             turtle.select(lavaSlot)
  118.             T:refuel(0) -- 0=force refuel
  119.         end
  120.         T:checkInventoryForItem({"minecraft:bucket", "minecraft:lava_bucket"}, {1,1}, true)
  121.         T:refuel(0) -- 0=force refuel
  122.         local x, y, width = 0, 0, 0
  123.         local lavaPresent, y = getLavaStrip(y)
  124.         if side ~= 'C' then -- not a single strip
  125.             while lavaPresent do
  126.                 width = width + 1
  127.                 if side == 'R' then -- do strip on the right
  128.                     T:go("R1F1L1")
  129.                     x = x + 1
  130.                 else
  131.                     T:go("L1F1R1")
  132.                     x = x - 1
  133.                 end
  134.                 lavaPresent, y  = getLavaStrip(y)
  135.                 if turtle.getFuelLevel() >= turtle.getFuelLimit() then
  136.                     lavaPresent = false
  137.                     print("Max fuel "..turtle.getFuelLimit() .. " achieved")
  138.                 end
  139.             end
  140.             if width <= 0 then
  141.                 width = 1
  142.             end
  143.             goHome(x, y)
  144.         end
  145.     else
  146.         print("Add missing files and restart")
  147.     end
  148. end
  149.  
  150. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement