No attributes :-(
Simple script making your refiners to automatically cycle through t1 recipes when they are out of resources. Helps if you're just starting and have only one refiner or if you want to make your refiner more efficient.
Just copy this into your onStatusChanged(3) filter on your refiner (assuming you named that slot "refiner")
```
--- status 3 -> jammed, no materials
-- 198782496, -- hematite -> iron
-- 2240749601, -- bauxite -> aluminum
-- 159858782, -- coal -> carbon
-- 2589986891, -- qurtz -> silicon
local currentItem = refiner.getOutputs()
-- linked list to cycle possible recipes
local refinedOres = {}
refinedOres[198782496] = 2240749601;
refinedOres[2240749601] = 159858782;
refinedOres[159858782] = 2589986891;
refinedOres[2589986891] = 198782496;
refiner.stop(true)
refiner.setOutput(refinedOres[currentItem[1].id])
refiner.startRun()
```