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

Turtle help

Started by SPC2000, 22 January 2013 - 03:23 AM
SPC2000 #1
Posted 22 January 2013 - 04:23 AM
Hi.

I need some help with the turtles.

I can't figure out how to deploy an item.

I am using the Tekkit Lite modpack, so i wanted when i send a signal it will put a book into a book receptacle from Mystcraft.

Any help would be apreciated.

Sorry if my english is a bit bad.
remiX #2
Posted 22 January 2013 - 04:30 AM
Deploy? Drop? Place blocks?


turtle.drop() -- drops an item into a block infront, like dropping a music disk into a disk drive.

turtle.place() -- places a block which is in the selected inventory

--There's also,
turtle.dropUp() / turtle.dropDown()

turtle.placeUp() / turtle.placeDown()
SPC2000 #3
Posted 23 January 2013 - 06:33 AM
Thank you so much.

I found out to use

turtle.suck()
To suck it out again.