Difference between revisions of "Turtle.inspectUp"

From ComputerCraft Wiki
Jump to: navigation, search
(Created page with "{{lowercase}} {{Function |name=turtle.inspectUp |args=[<nowiki/>{{type|number}} slotNum] |api=turtle |returns={{type|boolean}} success, {{type|table}} data/{{type|string}} err...")
 
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
{{Function
 
{{Function
 
|name=turtle.inspectUp
 
|name=turtle.inspectUp
|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
Line 19: Line 19:
 
* Returns false when there is nothing (air) above the Turtle.
 
* Returns false when there is nothing (air) above the Turtle.
 
}}
 
}}
 +
 +
==See also==
 +
*[[turtle.inspect]]
 +
*[[turtle.inspectDown]]
 +
[[Category:API Functions]]

Latest revision as of 07:59, 4 August 2020


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

Examples

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

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

Additional Notes

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


See also