What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Default Item rules.....quick assistance.

Keptoknight

New Member
Joined
Jan 15, 2010
Messages
219
Reaction score
1
I want it to loot Blues, Yellow rares and legendary THEN sell ALL of it without stashing. Someone post it in the "guide section" like this but its not working for some reason.


<?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>

<!-- Gold -->
<ItemRule itemName="Gold" stack="100" />

<!-- 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" />

<!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
<ItemRule itemName="Page of*" stack="1" />
<ItemRule itemName="Tome of*" stack="1" />

<!-- Health potions -->
<ItemRule itemName="*Mythic Health Potion*" stack="1" />

</Category>

<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="Sell everything left over">
<StatRules>
<Rule quality="Magic1" />
</StatRules>
</ItemRule>

</Category>

</Categories>
 
Back
Top