This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
ShadowZenoX's profile picture

Turtle drop off point?

Started by ShadowZenoX, 05 January 2013 - 04:39 PM
ShadowZenoX #1
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?
dissy #2
Posted 05 January 2013 - 05:49 PM
If 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)
ShadowZenoX #3
Posted 05 January 2013 - 05:59 PM
If 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)
Ok thanks =3

I wanna make a turtle army