View difference between Paste ID: WKeJdcyL and LyaeUbz5
SHOW: | | - or go back to the newest paste.
1
os.clear()
2
while turtle.getFuelLevel()~=turtle.getFuelLimit() do
3
    if turtle.suck() then
4
        turtle.refuel()
5
    else
6
        os.sleep(30)
7
    end
8
end
9
10
print("fully refueled")