turtle.suckDown
From ComputerCraft Wiki
Revision as of 20:50, 21 April 2015 by MisterSanderson (Talk | contribs) (Removing examples of other commands, keeping just the examples related to this command.)
Function turtle.suck | |
Moves one or more items from either the ground below the turtle, or, from an inventory-enabled block (such as a chest) below the turtle.
| |
Syntax | turtle.suck([number amount]) |
Returns | boolean true if at least one item was moved into the turtle's inventory; false otherwise. |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Picks up some items from below the turtle. | |
Code |
turtle.suckDown() |