AdditionalPylons

compost.lua

Jun 5th, 2026 (edited)
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. for i=1,16 do
  2.     turtle.select(i)
  3.     turtle.suckUp()
  4.     if turtle.getItemCount()>0 and turtle.placeUp() then
  5.         while turtle.getItemCount()>0 do
  6.             if not turtle.placeUp() then
  7.                 turtle.suckUp()
  8.             end
  9.         end
  10.     end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment