11 posts
Posted 04 August 2014 - 05:05 PM
Hello
I'm trying to make a turtle that will set up a build craft quarry (because lazy)
But I can't get it to activate the land markers, I have tried:
- turtle.use()
- turtle.place()
- turtle.attack()
- redstone.setOutput()
but none of them are working..
So my question here is: "Is it possible to make a turtle right click like a player?"
Many thanks for reading! :)/>
Edited on 04 August 2014 - 03:45 PM
8543 posts
Posted 04 August 2014 - 05:07 PM
Not really. If turtle.place() with an empty slot doesn't work (and try from a block away as well), you might have to use an autonomous activator or something that simulates right-clicks.
11 posts
Posted 04 August 2014 - 05:09 PM
Not really. If turtle.place() with an empty slot doesn't work (and try from a block away as well), you might have to use an autonomous activator or something that simulates right-clicks.
Turtle.place()
just gives the error message:
False
No item to place
so I can't use it with an empty slot… or..?
8543 posts
Posted 04 August 2014 - 05:39 PM
Just because it gives the message doesn't mean it can't work. You could try it with a non-empty slot, but I doubt that would work. People have had some success using it on other things in the past. If it won't activate the torch when you try it, you'd have to use another tool.
11 posts
Posted 04 August 2014 - 05:44 PM
Just because it gives the message doesn't mean it can't work. You could try it with a non-empty slot, but I doubt that would work. People have had some success using it on other things in the past. If it won't activate the torch when you try it, you'd have to use another tool.
I got it to work with the A
utonomous Activator, nothing else seemed to work :/Many thanks for the quick responses! :)/>