Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function EatFuel()
- local item;
- for n=1,16 do
- turtle.select(n);
- item = turtle.getItemDetail();
- if item and turtle.refuel(item.count) then
- print("ate "..tostring(item.count).." "..tostring(item.name));
- end
- end
- turtle.select(1);
- end
- EatFuel();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement