I found very easy and cheap solution for Mass Fabricator using ComputerCraft turtle:
1. Place basic turtle right
below Mass Fabricator and copy this to turtle's
startup program:
http://pastebin.com/KecjL3zH
2. Feed your scraps from Recycler directly to the turtle - BuildCraft pipes will do the job nicely
How does this work:
Turtle cycle through all of 16 slots of inventory and try to dropUp() scraps to Mass Fabricator.
As it runs out of scraps it will turn Mass Fabricator off by redstone signal. Then wait 5 minutes to start again.
All in infinite loop.
Note:
- you need to run this as turtle's startup program (simply name the file "startup") otherwise when you load your world, fabricator will starts running without scraps.
- turtle cant check inventory of fabricator so when it shut down, there is usually remaining stack of scraps in fabricator. This is only downside of this solution, but if you have quarry and steady supply of scraps then its not problem at all.
- I use Filter (from RedPower2) to pull UU-matter from fabricator ... guest what? if you have Filter on side of Fabricator, it is affected by turtle's redstone signal ... so i added 3 lines (9-11 in code) and now turtle act also as redstone timer for Filter. works perfectly.