local args = { ... }
if #args >= 1 then
local slot = tonumber(args[1])
if slot and slot >= 1 and slot <= 16 then
turtle.select(slot)
end
end
while true do
if not turtle.place() then
turtle.suckUp()
break
end
if not turtle.dig() then
break
end
end
Edited by awesomness1290, 01 February 2015 - 10:06 PM.











