Posted 05 January 2013 - 05:39 PM
Can someone give me a example on how to make turtles dump items in a chest or something?
Ok thanks =3If the chest is in front of the turtle, use: turtle.drop()
Alternately if the turtle is on top of the chest, there is: turtle.dropDown()
It will try to place the whole stack of whatever is in the currently selected turtle slot, into the chest.
You can pass the command a number if you don't want to put the whole stack in the chest, such as: turtle.drop(1)