Are you also tired of having to baby-sit your ExtraBees setup to inoculate all those cool traits on your bees?
Well, no more. With just 2 Gate Reader Turtles and a bit of LUA you can get a 99% automatic way of doing this!
Let me show you how it's done.
Here is the setup:
(the Extra Bees machines are, left to right: Inoculator, Purifier, Synthesizer)
And here is the code for the "bee" turtle (the one next to the inoculator): http://pastebin.com/gVb7tjWa
and for the "serum" turtle (the other one): http://pastebin.com/6UCZS5Hb
Operating instructions:
How this works:
Notes:
Well, no more. With just 2 Gate Reader Turtles and a bit of LUA you can get a 99% automatic way of doing this!
Let me show you how it's done.
Here is the setup:
(the Extra Bees machines are, left to right: Inoculator, Purifier, Synthesizer)
And here is the code for the "bee" turtle (the one next to the inoculator): http://pastebin.com/gVb7tjWa
and for the "serum" turtle (the other one): http://pastebin.com/6UCZS5Hb
Operating instructions:
- Give "serum" turtle a bit of fuel - just enough to get to the charging station
- Start the "serum" turtle's program.
- Load the "bee" turtle with <= 15 bees
- Load Serums (fully charged, perfect quality, <= 16 items) into the chest above the "bee" turtle
- Run the program on the Inoculator turtle.
- ...
- PROFIT!
How this works:
- The "bee" turtle will pull serums from the top chest and apply them to the bee. It will loop through all the serums before getting to the next bee
- Used serums will go into the middle chest
- Once all the serums have been used, it will signal (via MFR rednet cable running below the turtles) the "serum"
turtle to start refilling the vials. - The "serum" turtle will process all the serums it got from the middle chest. It will first top all the serums off, and then purify them.
- Once all the serums are done, the "serum" turtle will put the vials into the top chest, return to it's starting point and signal the "bee" turtle that it can process the next bee.
- Once all the bees are done the "bee" turtle's program will stop.
Notes:
- Please keep the 3 block behind Synthesized and Innoculator and 3 blocks above them clear at all times!
- Since the Gate Reader peripheral tries to read from every single block around the turtle, I had to use the Charging Station to keep the "serum" turtle running. The alternative is to make the "serum" turtle to only operate the Purifier and add a third turtle to run Synthesizer.
- The Redstone Energy cells below the machines are optional. These are supposed to help keep the power flowing to the ever-power-hungry machines.
- You can save a bit of turtle's power by adding a chest above the "serum" turtle's starting location and auto-pumping the items from it to the chest above the "bee" turtle. This will require changing the "serum" code: replace the line 86 with "turtle.dropUp()" and remove lines 81-83 and 88-90.