turtle.suckDown
From ComputerCraft Wiki
Revision as of 14:41, 21 April 2015 by MisterSanderson (Talk | contribs) (Creating the article about this command. The source of the text is turtle.suck.)
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 in front of the turtle. | |
Code |
turtle.suck() |
Example | |
Picks up some items from above the turtle. | |
Code |
turtle.suckUp() |
Example | |
Picks up some items from below the turtle. | |
Code |
turtle.suckDown() |