Difference between revisions of "Turtle.dig"

From ComputerCraft Wiki
Jump to: navigation, search
(Created page with "{{lowercase}} {{Function |name=turtle.dig |args= |api=turtle |returns=boolean whether the turtle succeeded in digging. |addon=ComputerCraft |desc=Attempts to dig the block...")
 
Line 10: Line 10:
 
{{Example
 
{{Example
 
|desc=Digs the block in front of the turtle.
 
|desc=Digs the block in front of the turtle.
|code=print(turtle.down())
+
|code=print(turtle.dig())
 
|output=true if the turtle could dig the block, false if it could not or no block present.
 
|output=true if the turtle could dig the block, false if it could not or no block present.
 
}}
 
}}
 
}}
 
}}

Revision as of 05:27, 13 March 2012


Grid Redstone.png  Function turtle.dig
Attempts to dig the block in front of the turtle.
Syntax turtle.dig()
Returns boolean whether the turtle succeeded in digging.
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.