Advertisement
LeviathanV

Lava Bucket - Stoneblock3

Nov 27th, 2022 (edited)
1,048
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | Gaming | 0 0
  1. while true do
  2.  
  3. local function fill()
  4.     if turtle.getItemCount(1) == 1 then
  5.     turtle.select(1)
  6.     turtle.craft()
  7.     turtle.drop()
  8.     else
  9.      sleep (0.5)
  10.     end
  11. end
  12.  
  13. local function check()
  14.     if turtle.getItemCount(2) >= 1 then
  15.     fill()
  16.     else
  17.         turtle.select(2)
  18.         turtle.suckUp()
  19.     end
  20. end
  21.  
  22. check()
  23.  
  24. end
  25.  
  26.  
Advertisement
Comments
  • # text 0.02 KB | 0 0
    1. what das thes do
    • LeviathanV
      1 year
      # text 0.24 KB | 0 0
      1. Minecraft - Computercraft Turtle - LUA - Stoneblock3 or any modpack that has CC and Chickens
      2.  
      3. I use this for pulling Lava Eggs and crafting them with a bucket, then it gets run thru a Create drain and piped into an endertank for infinite lava
      4.  
Add Comment
Please, Sign In to add comment
Advertisement