9 lines
160 B
Lua
9 lines
160 B
Lua
while true do
|
|
shell.execute("mine")
|
|
if turtle.getFuelLevel() > 100 then
|
|
shell.execute("clear")
|
|
else
|
|
return
|
|
end
|
|
sleep(1)
|
|
end
|