Difference between revisions of "Turtle.compareDown"

From ComputerCraft Wiki
Jump to: navigation, search
m (Reverted edits by 199.19.105.156 (talk) to last revision by AfterLifeLochie)
m (Fixed)
Line 2: Line 2:
 
{{Function
 
{{Function
 
|name=turtle.compareDown
 
|name=turtle.compareDown
|args=
 
 
|api=turtle
 
|api=turtle
|returns=[[boolean_(type)|boolean]] true if the block below the turtle is the same as the one in the selected Slot.
+
|returns={{type|boolean}} is the block below the turtle same as the one in the selected slot?
 
|addon=ComputerCraft
 
|addon=ComputerCraft
 
|desc=Detects if the block in below is the same as the one in the selected Slot.
 
|desc=Detects if the block in below is the same as the one in the selected Slot.
 
|examples=
 
|examples=
{{Example
 
|desc=Detects if the block below is the same as the one in the selected Slot.
 
|code=turtle.compareDown()
 
}}
 
 
{{Example
 
{{Example
 
|desc=Digs down until the selected block is seen.
 
|desc=Digs down until the selected block is seen.
|code=while not turtle.compareDown() do
+
|code=while not '''turtle.compareDown()''' do
   turtle.digDown()
+
   [[turtle.digDown]]()
   turtle.down()
+
   [[turtle.down]]()
 
  end}}
 
  end}}
 
}}
 
}}
  
 
[[Category:Lua_Core_Functions]]
 
[[Category:Lua_Core_Functions]]

Revision as of 17:53, 10 April 2014


Grid Redstone.png  Function turtle.compareDown
Detects if the block in below is the same as the one in the selected Slot.
Syntax turtle.compareDown()
Returns boolean is the block below the turtle same as the one in the selected slot?
Part of ComputerCraft
API turtle

Examples

Grid paper.png  Example
Digs down until the selected block is seen.
Code
while not turtle.compareDown() do
  turtle.digDown()
  turtle.down()
end