@DaSoul
Ahh ok mate looks good, is that a direct copy/paste of your changes? if so theres a small mistake with your sell catagory under item quality - you have it as Rare but it should be Rare4. If you have just one spelling mistake in the wrong place or a space missing under any of your rules it will stop the whole thing working. I've pasted a couple lines from mine that you should be able to add. Let me know if it helps.
Though if you set it to Rare4 it will keep all the blue crap, really you want it set to Magic1 so that it basically sells any magic and rare items left over.
Code:
<Category ruleType="Keep">
<!-- Keep Legendaries regardless of stats -->
<ItemRule ruleType="Keep" description="Gold Stuff">
<StatRules>
<Rule quality="Legendary" />
</StatRules>
</ItemRule>
</Category>
<Category ruleType="Sell">
<ItemRule description="Crap I don't want">
<StatRules>
<Rule quality="Magic1" />
</StatRules>
</ItemRule>
</Category>
</Categories>
Or you can just grab what you need from my rule file:
View attachment 43546