turtle.equipLeft
From ComputerCraft
Jump to navigation
Jump to search
turtle.equipLeft Function | |
---|---|
Syntax turtle.equipLeft() | |
Returns | boolean success |
API | turtle |
Source | CC:Tweaked (source) |
When called, will equip the item currently selected onto the left side of the turtle. If no item is selected, it will dequip the item on the left side.
|
|||
Equips a diamond pickaxe on the turtle, turning it into a mining turtle. This presumes that the pickaxe is in slot 1 of the turtle. | |||
Code | turtle.equipLeft();
|