Difference between revisions of "Turtle.place"
From ComputerCraft Wiki
MKlegoman357 (Talk | contribs) m (Expanded) |
(Adding "see also".) |
||
Line 18: | Line 18: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | ==See also== | ||
+ | *[[turtle.placeUp]] | ||
+ | *[[turtle.placeDown]] | ||
[[Category:Lua_Core_Functions]] | [[Category:Lua_Core_Functions]] |
Latest revision as of 18:02, 22 April 2015
Function turtle.place | |
Places the selected block in front of the Turtle. If you're placing a sign and signText is given, then the turtle places the sign putting the text of signText into it. Each line of the sign can be separated using newline ("\n") character. | |
Syntax | turtle.place([string signText]) |
Returns | boolean was the block placed? |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Places the selected block in front of the Turtle. | |
Code |
turtle.place() |