For the people who don't take the time to learn their bots:
This above edit to the DefaultLootRules.xml will set this to pick up inferno grade items, if you are in inferno. This will salvage the junk and stash the good blues, or rares that you have previously defined.
If you need it to only pick up legendaries:
*May not work properly, but this is how the bot decides on whether or not he picks them up. So far, it's worked to stop picking up blues in NM a3.*
You're welcome.
Code:
<ItemRule>
<StatRules>
<Rule quality="Magic1" />
</StatRules>
</ItemRule>
<!-- Pick up gold, at least in stacks of 100 -->
<ItemRule itemName="Gold" stack="100" />
<!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
<ItemRule itemName="Tome of*" stack="1" />
<!-- Gems -->
<ItemRule itemName="*Flawless Square Ruby*" stack="1" />
<ItemRule itemName="*Flawless Square Emerald*" stack="1" />
<ItemRule itemName="*Flawless Square Topaz*" stack="1" />
<ItemRule itemName="*Flawless Square Amethyst*" stack="1" />
<!-- Health potions -->
<ItemRule itemName="*Mythic Health Potion*" stack="1" />
</Category>
<Category ruleType="Salvage">
<ItemRule description="Salvage Everything">
<StatRules>
<Rule quality="Magic1" />
</StatRules>
</ItemRule>
</Category>
</Categories>
This above edit to the DefaultLootRules.xml will set this to pick up inferno grade items, if you are in inferno. This will salvage the junk and stash the good blues, or rares that you have previously defined.
If you need it to only pick up legendaries:
Code:
<ItemRule>
<StatRules>
<Rule quality="Legendary" />
</StatRules>
</ItemRule>
You're welcome.






