Hi y'all!
I'm trying to make an efficient method for automating metallurgic infusers with ae2 auto crafting. So far, I've gotten that I have to set up multiple infusers, one for each type. My issue is that I'm not at a point where I have unlimited resources, so I want to find a method that is more resource efficient than dumping items through an enriching factory.
My general idea is to try to find someway to tell when the chemical capacity of the infusers is backed up, then stop producing the enriched materials via level emitter. However, I haven't found a way of doing that yet.
If anyone has suggestions for something that backs up as few resources as humanly possible while automatically keeping the infusers stocked, please let me know!
Does anyone have any good videos of mekanism beining automated with AE2 on atm 10. ive looked everywhere and theres no good videos to watchso i can do it as i watch?
Videos
Hey folks, I'm trying to use SFM to program the inputs/outputs of my Mekanism ore processing system so that I can Soul Surge 5/6 sides of each block and really ramp up the production speed.
Each machine in the process has all sides turned off except for an Input/Output on the bottom where the Fancy Inventory Cables will go.
All the Inventory cables are piping into an AE MEGA Interface.
I did all of the coding for the SFM myself, so I'm a bit worried I may have gotten some stuff mixed up. Namely, I'm not sure if I need a separate label for inputting and outputting stuff for the MEGA Interface. I've seen some code from Bucketst's Modular Bees setup that has a Power, Storage, and Resupply tag on each of the ME/MEGA interfaces, and I'm not sure if I need to do something similar, or if I can get away with just a Power and Storage label.
Code: (Apologies ahead of time for terrible formatting)
----------------------------------------------------------
NAME "Mekanism Ore Processing: Copper"
EVERY TICK DO
INPUT fe:: FROM Power
OUTPUT fe:: TO Dissolver
END
EVERY TICK DO
INPUT fe:: FROM Power
OUTPUT fe:: TO Washer
END
EVERY TICK DO
INPUT fe:: FROM Power
OUTPUT fe:: TO Crystalizer
END
EVERY TICK DO
INPUT fe:: FROM Power
OUTPUT fe:: TO Injector
END
EVERY TICK DO
INPUT fe:: FROM Power
OUTPUT fe:: TO Purifier
END
EVERY TICK DO
INPUT fe:: FROM Power
OUTPUT fe:: TO Crusher
END
EVERY TICK DO
INPUT fe:: FROM Power
OUTPUT fe:: TO Enricher
END
EVERY TICK DO
INPUT fe:: FROM Power
OUTPUT fe:: TO Smelter
END
EVERY 20 TICKs DO
INPUT "c:raw_materials/copper" FROM Storage
OUTPUT "c:raw_materials/copper" TO Dissolver
INPUT "mekanism:sulfuric_acid" FROM Storage
OUTPUT "mekanism:sulfuric_acid" TO Dissolver
INPUT "alltheores:dirty_copper" FROM Dissolver
OUTPUT "alltheores:dirty_copper" TO Washer
INPUT "minecraft:water" FROM Storage
OUTPUT "minecraft:water" TO Washer
INPUT "alltheores:clean_copper" FROM Washer
OUTPUT "alltheores:clean_copper" TO Crystalizer
INPUT "c:crystals/copper" FROM Crystalizer
OUTPUT "c:crystals/copper" TO Injector
INPUT "mekanism:hydrogen_chloride" FROM Storage
OUTPUT "mekanism:hydrogen_chloride" TO Injector
INPUT "c:shards/copper" FROM Injector
OUTPUT "c:shards/copper" TO Purifier
INPUT "mekanism:oxygen" FROM Storage
OUTPUT "mekanism:oxygen" TO Purifier
INPUT "c:clumps/copper" FROM Purifier
OUTPUT "c:clumps/copper" TO Crusher
INPUT "c:dirty_dusts/copper" FROM Crusher
OUTPUT "c:dirty_dusts/copper" TO Enricher
INPUT "c:dusts/copper" FROM Enricher
OUTPUT "c:dusts/copper" TO Smelter
INPUT "c:ingots/copper" FROM Smelter
OUTPUT "c:ingots/copper" TO Storage
END
I have uploaded a video for automating mekanism! i have other processes being done for mekanism so if you want to see those let me know i have one for the HDPE Sheets
Currently in early stages of the Mekanism quest line about ore automation and most of the crafts require alloys. whats the easiest way to automate creation of these?
I'm current half way through ars nouveau, but I haven't touched any automation from it. I got that iron golem farm from easy villagers, that one is pretty good. I also have three wind turbines I got from rewards, everything else is very early game stuff, just sophisticated chests for storage. I'm starting on refined storage now actually.
Full disclosure, I've never gotten past early game in mod packs like these so automation where you have like ten different expensive machines along with their generators and power lines working to make even more resources is just intimidating to me. Not that I don't want to get into them, just don't know where to start. I want to enter the water slowly, so to speak, not just dive right in.
So where would be an easy place to start for automation, or one that's not too complicated?
As for my current direction I'm looking to get more iron, gold, and set up XP and drop farms for the enderman, zombie piglin, and wither skeleton spawners I have, apotheosis spawners. Hoping to do the same with blazes and slimes soon too, but I don't know how I'd get a slime spawner. I'm also setting up refined storage and did set up a smelter for silent gear. Any advice involving any of that would also be appreciated.
Hey guys I’m kinda new to tech mods like this, and I need a little help like understand what each machine does and how to set up “production” or whatever properly. I made everything up to the crusher I think?? But I’m not sure how it all really works together and how I connect them. Any advice or help would be awesome (and merry Christmas btw).