Difference between revisions of "Turtle.inspectDown"

From ComputerCraft Wiki
Jump to: navigation, search
(Created page with "{{lowercase}} {{Function |name=turtle.inspectDown |args=[<nowiki/>{{type|number}} slotNum] |api=turtle |returns={{type|boolean}} success, {{type|table}} data/{{type|string}} e...")
 
(And another one... [face-cow])
Line 2: Line 2:
 
{{Function
 
{{Function
 
|name=turtle.inspectDown
 
|name=turtle.inspectDown
|args=[<nowiki/>{{type|number}} slotNum]
+
|args=
 
|api=turtle
 
|api=turtle
 
|returns={{type|boolean}} success, {{type|table}} data/{{type|string}} error message
 
|returns={{type|boolean}} success, {{type|table}} data/{{type|string}} error message

Revision as of 23:19, 27 September 2014


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.