Ov0sh

lava

Aug 24th, 2024
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. _t=peripheral.wrap("top")
  2.  
  3. _b=peripheral.wrap("bottom")
  4.  
  5. while true do
  6.  
  7. a,b = turtle.inspect()
  8.  
  9.  
  10.  
  11. if b.name=="minecraft:lava_cauldron" then
  12.  
  13. list = _b.list()
  14.  
  15. for i in pairs(list) do
  16.  
  17. if list[i].name=="minecraft:bucket" then
  18.  
  19. _t.pullItems("bottom",i,1)
  20.  
  21. break
  22.  
  23. end
  24.  
  25. end
  26.  
  27. turtle.suckUp()
  28.  
  29. turtle.place()
  30.  
  31. turtle.dropDown()
  32.  
  33. end
  34.  
  35. sleep(10)
  36.  
  37. end
Advertisement
Add Comment
Please, Sign In to add comment