Difference between revisions of "Turtle.dig"

From ComputerCraft Wiki
Jump to: navigation, search
(Added second return value)
(Adding "see also".)
Line 21: Line 21:
 
}}
 
}}
 
}}
 
}}
 +
 +
==See also==
 +
*[[turtle.digUp]]
 +
*[[turtle.digDown]]
  
 
[[Category:Lua_Core_Functions]]
 
[[Category:Lua_Core_Functions]]

Revision as of 21:17, 22 April 2015


Grid Redstone.png  Function turtle.dig
Attempts to dig the block in front 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.dig()
Returns boolean whether the turtle succeeded in digging, string error message
Part of ComputerCraft
API turtle

Examples

Grid paper.png  Example
Digs the block in front of the turtle.
Code
print(turtle.dig())
Output true if the turtle could dig the block, false if it could not or no block present.



Grid paper.png  Example
Digs the block in front of the turtle, but only if there is a block to dig (saves time).
Code
if turtle.detect() then
 turtle.dig()
end
Output the turtle digs if there is a block in front.


See also