It works!

brewstands

 

After many long days I have finally finished the automatic potion brewing machine!  Well technically I only got it wired and working but I’ll work on the building for it later.  This machine should handle any potion type and will continue brewing until you turn it off or run out of ingredients.

Ingredients are selected here:

brewselectors

 

I was unable to put any logic in it to prevent you from brewing with incorrect combinations as that would take a massive amount of space and wouldn’t be worth it.  For easier brewing of common potions I added a way to customize 3 presets found here:

brewpresets

 

Now for a bunch of pictures of all the crazy wiring involved in this:

brewclock brewreceivers brewswitches brewprewires

Auto potion machine

I’ve been designing a fully automatic potion brewing machine.  I plan to have it able to load any ingredient and continuously brew until turned off.  I also want it to have easily set presets for the most common potions.  So far I got the timing down and a failsafe in case you accidentally turn off the system too early.

circuitbrew

 

Now I need to figure out ingredient droppers and a system to detect when you run out of ingredients.

Auto food machine

With the updates to bonemeal and the addition of hoppers I decided to upgrade my automatic wheat, cocoa, potato and carrot farm.  It’s the ethos design and is much better than the old version.

Newfarm

 

And here’s a random shot of Jordan’s new house since we have been lacking pictures of late.

jordbase

 

Server tweaks

Looks like the new Bukkit and Dynmap have been out for a bit now. We are working on getting them back up and running as well as tweaking some server settings. Once it is back check things like circuits, spawners, etc… and make sure there aren’t bugs.

Gold farm sorter

So in testing the gold farm more it looks like unloaded chunks have some weird behaviors.  No matter how long I waited I would always get the same amount of gold and rotten flesh.  What was different however was how many magma slimes I would have caught in the system.  Another thing I noticed was the iron golems would also spawn in the unloaded chunk.  It looks like when you push a mob through a portal it loads the chunk on the other end for a short time.  This causes items to disappear while I am afking in the nether but doesn’t count the chunk as fully loaded to force mobs to disappear.

 

To combat this I switched from the water channels to hoppers and chests which store the items instead of letting them just sit.  I was going to eventually do this anyway so it just forced me to do it earlier.  The next problem I encountered was that once I unloaded one chest of items I’d have to sit and let it wait while the other items loaded into it.   I also had to dump all the useless rotten flesh.  This took forever and wasn’t worth the hassle.

 

The solution for this is a sorter that only sends the gold through.  Basically a sorter is a hopper that is turned off under a hopper hooked to a comparator.  The comparator outputs a signal proportional to the % full it is.  When full enough it outputs a signal long enough to turn the hopper on long enough to suck through one gold which leaves the hopper partially full when it turns off again.  Since the hopper is “full” the rotten flesh won’t get sucked through.  This caused another problem.  The rotten flesh would gather on top and block the gold from getting in.  It also sucked in too slow causing the gold to stack.  A stack of gold getting sucked in broke the system as it could cause the comparator to output too much signal.

 

The last fix is to create a ring of hoppers that act as a flowing current of any items that hit the system.  Water couldn’t be used because it would keep the pigmen from dying.  This current loops until the gold is pulled out.  I also added a system for pulling out the rotten flesh as well or the system would get clogged.  These additional hoppers would then load a dispenser that spits the rotten flesh into lava pools to prevent lag.  Theoretically this could still clog up but I added extra hoppers to it and I don’t think the pigmen spawn fast enough to jam it up.

 

Here is my test design:

 

sortdesign

 

 

And here is the finished product:

 

golddrop

 

 

I still need to finish decorating the area but it should work.  I estimate/guess this will get you ~30 stacks of nuggets (1920) which makes ~200 gold pieces and ~23 gold blocks an hour.  I wouldn’t recommend doing more than an hour or so at a time in case the server crashes.  The best part is you get a few stacks of iron at the same time 😀