The DefaultItemRules have not been changed to reflect the new way to represent Quality.
You need to change the code to the following form:
stat="Quality" value="Rare4"
Thanks for that line, chucky egg.
I read that allready, but don?t know exactly what to change now.
I changed it like you can see above, and here now my original that worked perfect !
Please help !
Original :
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="Default Item Rules" useRoundedValues="true">
<!-- The order in which item rules are evaluated. Typically, this is fine for almost all rule sets.
However, you may want to switch things around sometimes if you want to force-sell things that may match keep rules. -->
<Priority priority1="Keep" priority2="Salvage" priority3="Sell" />
<Categories>
<Category ruleType="PickUp">
<!-- Pick up all magic+ items -->
<ItemRule>
<StatRules>
<Rule quality="Magic1" />
</StatRules>
</ItemRule>
<!-- Pick up gold, at least in stacks of 10 -->
<ItemRule itemName="Gold">
<StatRules>
<Rule stacks="10" />
</StatRules>
</ItemRule>
</Category>
<Category ruleType="Keep">
<!-- Keep rares and legendaries, regardless of stats. -->
<ItemRule ruleType="Keep" description="Rare and better items!">
<StatRules>
<Rule quality="Rare6" />
</StatRules>
</ItemRule>
</Category>
<Category ruleType="Sell">
<ItemRule description="Sell Everything">
<StatRules>
<Rule quality="Magic1" />
</StatRules>
</ItemRule>
</Category>
</Categories>
</ItemRules>