Difference between revisions of "Turtle.place"
From ComputerCraft Wiki
(Corrected mapping from "Boolean" to "Boolean (type)") |
(Im gonna pop some tags only got $20 in my pocket. i-i-im hunting for a come-up. this is FUCKing awesome.) |
||
Line 1: | Line 1: | ||
{{lowercase}} | {{lowercase}} | ||
{{Function | {{Function | ||
− | |name=turtle | + | |name=turtle%2Eplace |
|args= | |args= | ||
|api=turtle | |api=turtle | ||
|addon=ComputerCraft | |addon=ComputerCraft | ||
− | |returns=[[boolean_(type)|boolean]] whether the turtle succeeded in placing the block. False if selected slot is empty, or if there is already a block in front. | + | |returns=[[boolean_(type)|boolean]] whether the turtle succeeded in placing the block. False if selected slot is empty, the space is protected, or if there is already a block in front. |
|desc=Places the selected block in front of the Turtle. Add [signText] to sign if given. | |desc=Places the selected block in front of the Turtle. Add [signText] to sign if given. | ||
|examples= | |examples= |
Revision as of 17:16, 4 December 2012
Function turtle%2Eplace | |
Places the selected block in front of the Turtle. Add [signText] to sign if given. | |
Syntax | turtle%2Eplace() |
Returns | boolean whether the turtle succeeded in placing the block. False if selected slot is empty, the space is protected, or if there is already a block in front. |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Places the selected block in front of the Turtle. | |
Code |
turtle.place() |