Difference between revisions of "Turtle.digUp"
From ComputerCraft Wiki
(Added second return value) |
(Add toolSide argument) |
||
(One intermediate revision by one other user not shown) | |||
Line 3: | Line 3: | ||
|name=turtle.digUp | |name=turtle.digUp | ||
|api=turtle | |api=turtle | ||
+ | |args=[<nowiki/>{{type|string}} toolSide] | ||
|returns={{Type|boolean}} whether the turtle succeeded in digging, {{type|string}} error message | |returns={{Type|boolean}} whether the turtle succeeded in digging, {{type|string}} error message | ||
|addon=ComputerCraft | |addon=ComputerCraft | ||
− | |desc=Attempts to dig the block above of the turtle. | + | |desc=Attempts to dig the block above of the turtle. If successful, [[Turtle.suck|suck()]] is automatically called, placing the item in turtle inventory in the selected slot if possible (block type matches and the slot is not a full stack yet), or in the next available slot. |
|examples= | |examples= | ||
{{Example | {{Example | ||
Line 13: | Line 14: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | ==See also== | ||
+ | *[[turtle.dig]] | ||
+ | *[[turtle.digDown]] | ||
[[Category:Lua_Core_Functions]] | [[Category:Lua_Core_Functions]] |
Latest revision as of 10:35, 24 October 2018
Function turtle.digUp | |
Attempts to dig the block above of the turtle. If successful, suck() is automatically called, placing the item in turtle inventory in the selected slot if possible (block type matches and the slot is not a full stack yet), or in the next available slot. | |
Syntax | turtle.digUp([string toolSide]) |
Returns | boolean whether the turtle succeeded in digging, string error message |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Digs the block above the turtle. | |
Code |
print(turtle.digUp()) |
Output | true if the turtle could dig the block, false if it could not or no block present. |