3 posts
Posted 04 March 2014 - 07:07 PM
Hey guys,
Is there a way to get the lava from an ender tank into a bucket in the turtle's inventory?? I'm using FTB with the Monster pack, that has OpenPeripheralCore and OpenPeripheralAddons or something. Any ideas?
- Extremelyd1
1281 posts
Posted 04 March 2014 - 08:55 PM
Give the turtle a bucket, have him select it and using turtle.place() should probably work.
Edited on 04 March 2014 - 07:55 PM
7083 posts
Location
Tasmania (AU)
Posted 05 March 2014 - 12:00 AM
Take a look at
this if not.
3 posts
Posted 05 March 2014 - 07:33 AM
Give the turtle a bucket, have him select it and using turtle.place() should probably work.
Doesn't work, atm I have a farming turtle and I want to refuel it with my ender tank, from enderStorage. When I put a bucket in his inventory en select it, and then do turtle.place() it says: "false Cannot place item here". Then I tried to make a bucket turtle, I never knew there was one, but I made one so yea. Still same problem, I have no clue if there is a method to get it from the endertank or not, but turtle.suck() and turtle.place() don't work. Also tried to wrap it with: m = peripheral.wrap("front") and then with openPeripherals you can do: m.listMethods() and then you get: getAdvancedMethodsData(), getColorNames(), getColors(), getColours(), getFrequency(), getTankInfo(direction), listMethods(), setColorNames(color_left,color_middle,color_right), setColours(color_left,color_middle,color_right), setFrequency(frequency) Any more suggestions??
7508 posts
Location
Australia
Posted 05 March 2014 - 07:49 AM
Then I tried to make a bucket turtle, I never knew there was one, but I made one so yea.
Added by another mod, possibly MiscPeripherals if you have that installed.
Also tried to wrap it with […] OpenPeripherals
Yeah I wanted to add direct refuelling from an EnderTank but Mikee said no and that it was too overpowered.
Any more suggestions??
If the in-built Turtle functions don't work then unfortunately there is no other solution. You could have some kind of system that automatically makes the lava buckets for you and the Turtle just grabs them and places the empty buckets back into the system, but other than that there's no way that uses just the Turtle.
1281 posts
Posted 05 March 2014 - 08:36 AM
The simplest solution would probably be to pump the lava from the tank and just dump it into the world, then have the turtle scoop that up with a bucket. If you want an ender something that the turtle can carry around with it, enderchests with coal/charcoal is probably your best bet.
3 posts
Posted 05 March 2014 - 09:08 AM
I am probably going to do an enderchest, with auto-blaze rods then. Seems the best solution to me. Blaze spawner that gets me blaze rods and then transport them to an enderchest. Thanks anyways!