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

[SOLVED] Turtle Right Click

Started by Son_Of_Diablo, 04 August 2014 - 03:05 PM
Son_Of_Diablo #1
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
Lyqyd #2
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.
Son_Of_Diablo #3
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..?
Lyqyd #4
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.
Son_Of_Diablo #5
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 Autonomous Activator, nothing else seemed to work :/

Many thanks for the quick responses! :)/>