Deployers not working correctly.

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
Status
Not open for further replies.

Rapidfire52

New Member
Jul 29, 2019
2
0
0
I'm trying to make an automatic coffee machine, I have everything done including coding on a computer. But the last part is farming the cocoa beans. I got everything set up but the deployers will not plant the cocoa beans on the jungle wood. I can do it myself, and I know the deployer is getting redstone because it can put other blocks on the wood. If I spawn in the actually cocoa bean plant (once planted) and put it in the deployer it works, but you cannot get that ID legit, and it will not work with the normal cocoa beans.

Please help! :c
I'm pretty sure this is a bug but I might be doing something wrong.
 

Creaper

New Member
Jul 29, 2019
6
0
0
can you tell me how you did that? i am trying to figure the turtle thingy out myself but it fails horribly
 

001100110

New Member
Jul 29, 2019
340
0
0
Use this code with a turtle:
Code:
while true do
turtle.placeUp()
sleep(300)
turtle.digUp()
end
this is for having a turtle under the spot you want the bean planeted, this can also be used with a row of turtles and coco beans above them.
 

Creaper

New Member
Jul 29, 2019
6
0
0
Unfortunately, this doesn't work. The turtle just doesn't do anything at all. I tried every turtle and all these setups: ([l] is log and [t] is turtle, - is air)
[l]
[t]
and
-[l]
[t]
Please help me, I have a little cocoa problem in my factory...
 

001100110

New Member
Jul 29, 2019
340
0
0
-[l]
[t]

That should be the correct placement also is the turtle facing the log? And are you on a server with grief prevention plugins or something like that?
 

Creaper

New Member
Jul 29, 2019
6
0
0
I Am playing single player zo that souldn't he a problem. Which turtle should I use? and of you mean the side with the black line as front, IT is correctly placed.
 

001100110

New Member
Jul 29, 2019
340
0
0
What turtle are you using? It should be the lumber turtle (put a plane turtle with a diamond axe in the crafting table.).
 

Creaper

New Member
Jul 29, 2019
6
0
0
I have a lumber (aka felling) turtle.
I am using this code to run this:
Code:
if turtle.placeUp() then
print("placed")
sleep(300)
turtle.digUp()
else then
print("error, can't place beans!")
end

and this returns the "error, can't place beans!" message all the time... Please help!
BTW, thanks already for trying to fix my problem.
 

001100110

New Member
Jul 29, 2019
340
0
0
Try to have the turtle setup like this
[turtle] [air] [jungle log]
and use this code to test:
Code:
if turtle.place() == true then
sleep(300)
turtle.dig()
else then
print("error placing the coco beans!")
end
Remember put the coco beans in the first slot of the turtle.
 
  • Like
Reactions: Creaper
Status
Not open for further replies.