This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
EmTeaKay's profile picture

[Programming][Turtle] How to place blocks?

Started by EmTeaKay, 10 April 2012 - 07:24 PM
EmTeaKay #1
Posted 10 April 2012 - 09:24 PM
How do I place blocks for a turtle? I know, this is stupid that I don't know this. But I won't get better at programming if I don't ask questions.
Luanub #2
Posted 10 April 2012 - 09:45 PM
do turtle.place() to place infront of the turtle. You can also do turtle.placeDown() to place under the turtle which is what I prefer. There is also turtle.placeUp().
EmTeaKay #3
Posted 10 April 2012 - 09:53 PM
Thanks.