Trying to figure out item rules
im using this, might help you...
<Category ruleType="Salvage">
<!-- Salvage items ilvl 61 & 62 -->
<ItemRule>
<StatRules>
<Rule stat="Quality" value="Magic1" /> -------> This would Salvage all Magic and Rare ilvl 61 and 62
<Rule stat="Level" minValue="61"/>
</StatRules>
</ItemRule>
<ItemRule>
<StatRules>
<Rule stat="Quality" value="Rare4" />
<Rule stat="Level" minValue="61" logic="Or" />
<Rule stat="Level" minValue="62" logic="Or" />
</StatRules>
</ItemRule>
</Category>
<Category ruleType="Sell">
<!-- Sell all magic+ items -->
<ItemRule>
<StatRules>
<Rule stat="quality" value="Magic1" /> -------> This would sell all Magic and Rare left after the salvage
</StatRules>
</ItemRule>
<ItemRule>
<StatRules>
<Rule stat="quality" value="Rare4" />
</StatRules>
</ItemRule>
</Category>
So this is all that is in your item rules... or did you paste this on somewhere in the Default Item Rules
Still trying to get this figured out. Ive read a lot on this but I need to see a full example of what they changed on their item rules if anyone doesnt mind posting theirs.
Just not sure what I can change, delete, add, etc to the item rules or how to make it how Id like.
Thanks.