turtle.drop
From ComputerCraft Wiki
Function turtle.drop | |
Drops all items off the selected slot, or, if count is specified, drops that many items. The items are dropped on the ground 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. | |
Syntax | turtle.drop([number count]) |
Returns | boolean true if an item was dropped; false otherwise. |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Drops all items in the first available slot. | |
Code |
turtle.drop() |