<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="Ghostie Nogems Ruleset" 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>
<!-- The PickUp Rules -->
<Category ruleType="PickUp">
<!-- Pick up all magic+ items with at least ilvl 61-->
<ItemRule description="Magic Item with ilvl 61 or higher">
<StatRules>
<Rule stat="Quality" minValue="Magic1" />
<!-- Change minValue to change lowest ilvl picked -->
<Rule stat="Level" minValue="61" />
</StatRules>
</ItemRule>
<!-- Pick up all magic+ Jewelry with at least ilvl 59-->
<ItemRule itemBaseType="Jewelry" description="Magic Jewelry with ilvl 59 or higher">
<StatRules>
<Rule stat="Quality" minValue="Magic1"/>
<!-- Change minValue to change lowest ilvl picked -->
<Rule stat="Level" minValue="59"/>
</StatRules>
</ItemRule>
<!-- Pick up all rare items -->
<ItemRule description="Rare Item">
<StatRules>
<Rule stat="Quality" minValue="Rare4" />
</StatRules>
</ItemRule>
<!-- Pick up all gold-->
<ItemRule description="Gold" itemName="Gold">
<StatRules>
<Rule stacks="100" />
</StatRules>
</ItemRule>
<!-- Pick up all pages,tomes and plans, blacksmithing/jewelcrafting -->
<ItemRule itemName="Tome of*" />
<ItemRule itemName="*Plan:*" />
<ItemRule itemName="*Design:*" />
<!-- Gems -->
<ItemRule description="Gems" itemName="Flawless*" />
</Category>
<Category ruleType="Keep">
<ItemRule description="Legendary Item">
<StatRules>
<Rule quality="Legendary" />
</StatRules>
</ItemRule>
<!-- Pick up all pages,tomes and plans, blacksmithing/jewelcrafting -->
<ItemRule itemName="Tome of*" />
<ItemRule itemName="*Plan:*" />
<ItemRule itemName="*Design:*" />
<ItemRule itemName="Flawless Square*" />
</Category>
<Category ruleType="Salvage">
<!-- Pick up all magic+ items with at least ilvl 61-->
<ItemRule description="Magic Item with ilvl 61 or higher">
<StatRules>
<Rule stat="Quality" minValue="Magic1" />
<!-- Change minValue to change lowest ilvl picked -->
<Rule stat="Level" minValue="61" />
</StatRules>
</ItemRule>
<!-- Pick up all magic+ Jewelry with at least ilvl 59-->
<ItemRule itemBaseType="Jewelry" description="Magic Jewelry with ilvl 59 or higher">
<StatRules>
<Rule stat="Quality" minValue="Magic1"/>
<!-- Change minValue to change lowest ilvl picked -->
<Rule stat="Level" minValue="59"/>
</StatRules>
</ItemRule>
</Category>
</Categories>
</ItemRules>