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

Simple Request....

Fordem

New Member
Joined
Jun 15, 2012
Messages
59
Reaction score
0
Guys i?ve been trying to ***** this loot management from DB but realy, can?t rly do the most simple thing... all my toons have 50+ collect area, i only want to make a loot rule that loots all gems, and pages and tomes.... can some1 help me with this, it can?t be such a hard task. Since i?m doing gold farming runs all i want are the gems and all.....
 
download gilesstashreplacer and set it up there.
can set it to not pickup anything except gems pages and tombs and gold
 
yeah but by what i?ve read it only picks up the flawless squares.... i?m farming on nightmate mode there are no flawless squares in nightmare mode....
 
Guys i?ve been trying to ***** this loot management from DB but realy, can?t rly do the most simple thing... all my toons have 50+ collect area, i only want to make a loot rule that loots all gems, and pages and tomes.... can some1 help me with this, it can?t be such a hard task. Since i?m doing gold farming runs all i want are the gems and all.....


Code:
<?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 pages and tomes, blacksmithing/jewelcrafting -->
      <ItemRule itemName="Page of*" stack="1" /> 
      <ItemRule itemName="Tome of*" stack="1" />
      
      <!-- Gems -->
      <ItemRule itemName="*Emerald" />
      <ItemRule itemName="*Amethyst" />
      <ItemRule itemName="*Ruby" />
      <ItemRule itemName="*Topaz" />
	  
    </Category>

    <Category ruleType="Keep">
      
      <!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
      <ItemRule itemName="Page of*" stack="1" /> 
      <ItemRule itemName="Tome of*" stack="1" />
      
      <!-- Gems -->
      <ItemRule itemName="*Emerald" />
      <ItemRule itemName="*Amethyst" />
      <ItemRule itemName="*Ruby" />
      <ItemRule itemName="*Topaz" />
      
    </Category>
    
  </Categories>
</ItemRules>


This will literally only pickup and keep all gems and pages on Nightmare. Tomes don't drop on Nightmare but, the rule is still in there.
 
Last edited:
Back
Top