Difference between revisions of "Turtle.inspectDown"

From ComputerCraft Wiki
Jump to: navigation, search
(And another one... [face-cow])
m
 
(One intermediate revision by one other user not shown)
Line 19: Line 19:
 
* Returns false when there is nothing (air) below the Turtle.
 
* Returns false when there is nothing (air) below the Turtle.
 
}}
 
}}
 +
 +
==See also==
 +
*[[turtle.inspect]]
 +
*[[turtle.inspectUp]]
 +
[[Category:API Functions]]

Latest revision as of 07:59, 4 August 2020


Grid Redstone.png  Function turtle.inspectDown
Returns the ID string and metadata of the block below the Turtle in a table format: { name = "modname:blockname", metadata = 0 }.
Syntax turtle.inspectDown()
Returns boolean success, table data/string error message
Part of ComputerCraft
API turtle

Examples

Grid paper.png  Example
If there is a block below the turtle, prints it's name and metadata.
Code
local success, data = turtle.inspectDown()

if success then
  print("Block name: ", data.name)
  print("Block metadata: ", data.metadata)
end

Additional Notes

  • Returns false when there is nothing (air) below the Turtle.


See also