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

why doesnt that lootrules work

Bagge

New Member
Joined
Nov 6, 2010
Messages
117
Reaction score
0
Code:
<?xml version="1.0" encoding="utf-8" ?>
<!--
Set your bot settings and allow at least one page to deposit looted items. 
Otherwise bot will just stand front of stash and do nothing.
-->
<ItemRules name="Roscopower's Loot Rules" useRoundedValues="true">

  <Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

  <Categories>
    <Category ruleType="PickUp">
      
      <!-- Pick up all rare4+ ilvl60 items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Rare4" stat="level" minValue="61" />
        </StatRules>
      </ItemRule>
      
      <!-- Pick up rare jewelry regardless of stats or level. -->    
      <ItemRule itemBaseType="Jewelry" description="Rare jewelry">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
      <!-- Pick up gold, at least in stacks of 50 -->
      <ItemRule itemName="Gold" stack="50" />
      
      <!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
      <ItemRule itemName="Page of*" stack="1" />
      <ItemRule itemName="Tome of*" stack="1" />
      
      <!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="*Plan*" stack="1" />
      <ItemRule itemName="*Design*" stack="1" />
      
      <!-- Flawless Square Gems -->
      <ItemRule itemName="Flawless Square*" stack="1" />

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

    <Category ruleType="Keep">
    
      <!-- Mythic Health potions -->
      <ItemRule itemName="Mythic Health Potion" />
      
      <!-- Flawless Square Gems -->
      <ItemRule itemName="Flawless Square*" />
      
      <!-- Keep designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="*Plan*" />
      <ItemRule itemName="*Design*" />
      
      <!-- Just in case keeps pages, tomes and salvage materials-->
      <ItemRule itemName="Page of*" />
      <ItemRule itemName="Tome of*" />
      <ItemRule itemName="*Essence" />    
      <ItemRule itemName="*Tear" />
      <ItemRule itemName="*Hoof" />
      <ItemRule itemName="*Brimstone" />    
            
      <!-- Keep rare gear regardless of stats level 60+. -->    
      <ItemRule ruleType="Keep" description="Rare Gear">
        <StatRules>
          <Rule quality="Rare4" stat="level" minValue="61" />
        </StatRules>
      </ItemRule>
      
      <!-- Keep rare jewelry regardless of stats or level. -->    
      <ItemRule ruleType="Keep" itemBaseType="Jewelry" description="Rare jewelry">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
      <!-- Keep legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Legendary">
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
    </Category>
  
         - <Category ruleType="Salvage">
    - <!--  Salvages weapons up to ilvl 62 
      --> - <ItemRule itemBaseType="Weapon" twoHanded="false" description="Salvage Weapons">
    - <StatRules>
      <Rule quality="rare4" stat="level" maxValue="62" /> 
      </StatRules>
      </ItemRule>
     

      --> - <ItemRule itemBaseType="Weapon" twoHanded="true" description="Salvage Weapons">
    - <StatRules>
     <Rule quality="rare4" stat="level" maxValue="62" /> 
      </StatRules>
      </ItemRule>
     </Category>
    </Categories>
</ItemRules>

it just does everything fine but then it just stahes EVERYTHING and doesnt salvage what i want it to

also just curious: do the plans look fine ? are they supposed to work ?
 
Last edited:
I am having a problem with my monk not looting... Three accounts farming A1, barb loots / salvs. / stashes. Monk runs around with a full bag and gets stuck when its full.

I am also using the beta version of bel. combat, but again my barb is looting and whatnot.
 
Last edited:
I am having a problem with my monk not looting... Three accounts farming A1, barb loots / salvs. / stashes. Monk runs around with a full bag and gets stuck when its full.

I am also using the beta version of bel. combat, but again my barb is looting and whatnot.

I am having the exact same issue with my monk.

edit: I'm using Ghostie's lootrules (Thiolen version)
 
Last edited:
I've only had a quick look as it's late and I'm about to sleep, but quick reply for things to check;

1: You have priority listings for keep, then salvage, then sell. But you have no sell category. Remove sell from priorities, or add an appropriate sell category.
2: Your salvage category looks completely messed up, with random hyphens dotted around it like semi-broken comment codes - you need to sort that category out, it looks corrupt.
3: Yes your plans/designs look fine, they should work (assuming english language client). You need the wildcard ("*") before and after the word Plan/Design, which you have.

Code:
<?xml version="1.0" encoding="utf-8" ?>
<!--
Set your bot settings and allow at least one page to deposit looted items. 
Otherwise bot will just stand front of stash and do nothing.
-->
<ItemRules name="Roscopower's Loot Rules" useRoundedValues="true">

  <Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

  <Categories>
    <Category ruleType="PickUp">
      
      <!-- Pick up all rare4+ ilvl60 items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Rare4" stat="level" minValue="61" />
        </StatRules>
      </ItemRule>
      
      <!-- Pick up rare jewelry regardless of stats or level. -->    
      <ItemRule itemBaseType="Jewelry" description="Rare jewelry">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
      <!-- Pick up gold, at least in stacks of 50 -->
      <ItemRule itemName="Gold" stack="50" />
      
      <!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
      <ItemRule itemName="Page of*" stack="1" />
      <ItemRule itemName="Tome of*" stack="1" />
      
      <!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="*Plan*" stack="1" />
      <ItemRule itemName="*Design*" stack="1" />
      
      <!-- Flawless Square Gems -->
      <ItemRule itemName="Flawless Square*" stack="1" />

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

    <Category ruleType="Keep">
    
      <!-- Mythic Health potions -->
      <ItemRule itemName="Mythic Health Potion" />
      
      <!-- Flawless Square Gems -->
      <ItemRule itemName="Flawless Square*" />
      
      <!-- Keep designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="*Plan*" />
      <ItemRule itemName="*Design*" />
      
      <!-- Just in case keeps pages, tomes and salvage materials-->
      <ItemRule itemName="Page of*" />
      <ItemRule itemName="Tome of*" />
      <ItemRule itemName="*Essence" />    
      <ItemRule itemName="*Tear" />
      <ItemRule itemName="*Hoof" />
      <ItemRule itemName="*Brimstone" />    
            
      <!-- Keep rare gear regardless of stats level 60+. -->    
      <ItemRule ruleType="Keep" description="Rare Gear">
        <StatRules>
          <Rule quality="Rare4" stat="level" minValue="61" />
        </StatRules>
      </ItemRule>
      
      <!-- Keep rare jewelry regardless of stats or level. -->    
      <ItemRule ruleType="Keep" itemBaseType="Jewelry" description="Rare jewelry">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
      <!-- Keep legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Legendary">
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
    </Category>
  
         - <Category ruleType="Salvage">
    - <!--  Salvages weapons up to ilvl 62 
      --> - <ItemRule itemBaseType="Weapon" twoHanded="false" description="Salvage Weapons">
    - <StatRules>
      <Rule quality="rare4" stat="level" maxValue="62" /> 
      </StatRules>
      </ItemRule>
     

      --> - <ItemRule itemBaseType="Weapon" twoHanded="true" description="Salvage Weapons">
    - <StatRules>
     <Rule quality="rare4" stat="level" maxValue="62" /> 
      </StatRules>
      </ItemRule>
     </Category>
    </Categories>
</ItemRules>

it just does everything fine but then it just stahes EVERYTHING and doesnt salvage what i want it to

also just curious: do the plans look fine ? are they supposed to work ?
 
Code:
<?xml version="1.0" encoding="utf-8" ?>
<!--
Set your bot settings and allow at least one page to deposit looted items. 
Otherwise bot will just stand front of stash and do nothing.
-->
<ItemRules name="Roscopower's Loot Rules" useRoundedValues="true">

  <Priority priority1="Keep" priority2="Salvage" />

  <Categories>
    <Category ruleType="PickUp">
      
      <!-- Pick up all rare4+ ilvl60 items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Rare4" stat="level" minValue="61" />
        </StatRules>
      </ItemRule>
      
      <!-- Pick up rare jewelry regardless of stats or level. -->    
      <ItemRule itemBaseType="Jewelry" description="Rare jewelry">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
      <!-- Pick up gold, at least in stacks of 50 -->
      <ItemRule itemName="Gold" stack="50" />
      
      <!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
      <ItemRule itemName="Page of*" stack="1" />
      <ItemRule itemName="Tome of*" stack="1" />
      
      <!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="*Plan*" stack="1" />
      <ItemRule itemName="*Design*" stack="1" />
      
      <!-- Flawless Square Gems -->
      <ItemRule itemName="Flawless Square*" stack="1" />

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

    <Category ruleType="Keep">
    
      <!-- Mythic Health potions -->
      <ItemRule itemName="Mythic Health Potion" />
      
      <!-- Flawless Square Gems -->
      <ItemRule itemName="Flawless Square*" />
      
      <!-- Keep designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="*Plan*" />
      <ItemRule itemName="*Design*" />
      
      <!-- Just in case keeps pages, tomes and salvage materials-->
      <ItemRule itemName="Page of*" />
      <ItemRule itemName="Tome of*" />
      <ItemRule itemName="*Essence" />    
      <ItemRule itemName="*Tear" />
      <ItemRule itemName="*Hoof" />
      <ItemRule itemName="*Brimstone" />    
            
      <!-- Keep rare gear regardless of stats level 60+. -->    
      <ItemRule ruleType="Keep" description="Rare Gear">
        <StatRules>
          <Rule quality="Rare4" stat="level" minValue="61" />
        </StatRules>
      </ItemRule>
      
      <!-- Keep rare jewelry regardless of stats or level. -->    
      <ItemRule ruleType="Keep" itemBaseType="Jewelry" description="Rare jewelry">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
      <!-- Keep legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Legendary">
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
    </Category>
  
    <Category ruleType="Salvage">
     <!--  Salvages weapons up to ilvl 62 
      --> <ItemRule itemBaseType="Weapon" twoHanded="false" description="Salvage Weapons">
    <StatRules>
      <Rule quality="rare4" stat="level" maxValue="62" /> 
      </StatRules>
      </ItemRule>
     

 <ItemRule itemBaseType="Weapon" twoHanded="true" description="Salvage Weapons">
    <StatRules>
     <Rule quality="rare4" stat="level" maxValue="62" /> 
      </StatRules>
      </ItemRule>
     </Category>
    </Categories>
</ItemRules>

that now loads into db just fine. Looks like you copy and pasted but tried to miss out the comment from the c&p and caught the arseend of it
 
Back
Top