Difference between revisions of "Turtle.dropDown"

From ComputerCraft Wiki
Jump to: navigation, search
(Adding "see also" for the oldly created articles and making the description clearer.)
(Taking back useful information.)
 
Line 7: Line 7:
 
|addon=ComputerCraft
 
|addon=ComputerCraft
 
|desc=Drops all items off the selected slot, or, if ''count'' is specified, drops that many items. The items are dropped on the ground below the turtle by default, but if there is an inventory in that block, the items go to that inventory instead. Then the items will be placed in the first available slot of the inventory, starting at the top left, moving right and then down.
 
|desc=Drops all items off the selected slot, or, if ''count'' is specified, drops that many items. The items are dropped on the ground below the turtle by default, but if there is an inventory in that block, the items go to that inventory instead. Then the items will be placed in the first available slot of the inventory, starting at the top left, moving right and then down.
 +
 +
This command, when the turtle is above the furnace, will load the top slot for smelting.
 
|examples=
 
|examples=
 
{{Example
 
{{Example

Latest revision as of 21:02, 21 April 2015


Grid Redstone.png  Function turtle.dropDown
Drops all items off the selected slot, or, if count is specified, drops that many items. The items are dropped on the ground below the turtle by default, but if there is an inventory in that block, the items go to that inventory instead. Then the items will be placed in the first available slot of the inventory, starting at the top left, moving right and then down. This command, when the turtle is above the furnace, will load the top slot for smelting.
Syntax turtle.dropDown([number count])
Returns boolean true if an item was dropped; false otherwise.
Part of ComputerCraft
API turtle

Examples

Grid paper.png  Example
Drops all items in the first available slot.
Code
turtle.dropDown()


See also