Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Simple refuel script that goes through all parts of inventory that
- can be refueled and takes care of them at once.
- ]]
- for i=1,16 do
- if turtle.getItemCount(i) > 0 then
- turtle.select(i)
- turtle.refuel(turtle.getItemCount(i))
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment