Advertisement
lemarwin

bottle filler mc

Jul 12th, 2023
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | Gaming | 0 0
  1. local m = peripheral.wrap("right")
  2. m.link(5)
  3. local b = true
  4. turtle.select(2)
  5. while b do
  6.     if turtle.getFuelLevel() < 50 then
  7.         turtle.select(1)
  8.         turtle.refuel(5)
  9.         m.resupply(1)
  10.         turtle.select(2)
  11.     end
  12. turtle.place()
  13. turtle.select(3)
  14. turtle.dropUp()
  15. turtle.select(2)
  16. b = m.resupply(2)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement