Posted 19 April 2015 - 04:50 PM
I have a function and it doesn't seem to be working.
I get Expected Number on turtle.select()
function getSlot()
for i = 1, 16 do
cnt = turtle.getItemCount(i)
if cnt > 3 then
slot = i
break
end
end
turtle.select(slot)
end
I get Expected Number on turtle.select()