turtle.suck
From ComputerCraft Wiki
Moves one or more items from either the ground in front of the turtle, or, from an inventory-enabled block (such as a chest) in front of 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
| Picks up some items from in front of the turtle. | |
| Code |
turtle.suck() |
| Picks up some items from above the turtle. | |
| Code |
turtle.suckUp() |
| Picks up some items from below the turtle. | |
| Code |
turtle.suckDown() |