Posted 19 January 2013 - 07:56 AM
I know i could do turtle.drop(63) but the thing is its a random amount of items each time and i need him to drop all except for 1, is this possible?
ya i know but like i said its a random amount of items so i cant do turtle.drop(63) because that would drop all the items because its between 20 and 30 itemsAccording to the Turtle API, turtle.drop(63) should drop 63 items within the selected slot…
Thank you, this has been very helpful!turtle.drop(turtle.getItemCount(i) - 1), assuming you know what slot the itemstack is in.