Dustpuppy 16 Posted August 9, 2016 Share Posted August 9, 2016 Hi again, here a short code that explains, how to craft an item from an ae2 system. Simply connect an adapter to the me-controller and have the pattern in the system setup. local component = require("component") local me_controller = component.me_controller local amount = 1 local selection = "minecraft:stick" local craftables = me_controller.getCraftables({name = selection}) if craftables.n >= 1 then -- at least one entry found craftables = craftables[1] -- set craftables to first entry in list local retVal = craftables.request(amount) -- request to craft item(s) end Quote Link to post Share on other sites