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

Not Looting Anything

DarkerOne

New Member
Joined
Jul 22, 2012
Messages
4
Reaction score
0
I just updated, and its not letting me loot anything on any profiles or plugins.
 
I removed the new updated version, and used the older version 1.07. It's working now. I'm guessing there's a rule or syntax that was changed in the new version?
 
Well i have this xml rule file......

<?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" />
<ItemRule>
<StatRules>
<Rule quality="Rare4" />
</StatRules>
</ItemRule>
</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>
<Category ruleType="Sell">

<ItemRule>
<StatRules>
<Rule quality="Rare4" />
</StatRules>
</ItemRule>

</Category>
</Categories>
</ItemRules>

it only gets gold.
 
View attachment 2012-08-03 16.21.txt

There some trouble with looting rules.

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" />
	  <ItemRule>
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
    </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>
    <Category ruleType="Sell">
      
	  <ItemRule>
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
    </Category>
  </Categories>
</ItemRules>
 
Back
Top