Difference between revisions of "Turtle.place"
From ComputerCraft Wiki
m |
|||
| Line 4: | Line 4: | ||
|args= | |args= | ||
|api=turtle | |api=turtle | ||
| − | |||
|addon=ComputerCraft | |addon=ComputerCraft | ||
|desc=Place the selected block infront of the Turtle. | |desc=Place the selected block infront of the Turtle. | ||
| Line 11: | Line 10: | ||
|desc=Places the selected block infront of the Turtle. | |desc=Places the selected block infront of the Turtle. | ||
|code=print(turtle.place()) | |code=print(turtle.place()) | ||
| − | |||
}} | }} | ||
}} | }} | ||
Revision as of 21:04, 15 March 2012
| Place the selected block infront of the Turtle. | |
| Syntax | turtle.place() |
| Returns | nil |
| Part of | ComputerCraft |
| API | turtle |
Examples
| Places the selected block infront of the Turtle. | |
| Code |
print(turtle.place()) |