funciton placeMiner() turtle.select(1) turtle.place() end function emptyInv() for i = 1,16 turtle.dropUp(i) end end function getMiner() turtle.dig() end placeMiner() sleep(7) emptyInv() getMiner()