turtle.transferTo
From ComputerCraft Wiki
Function turtle.transferTo | |
Transfers items from the selected slot to the specified slot in the quantity given. | |
Syntax | turtle.transferTo(slot, quantity) |
Returns | bool "success" |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Transfers 32 items from the selected slot to slot 6. | |
Code |
turtle.transferTo(6, 32) |
This function came available in version 1.45