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

Lootrules with Armor>level and Jewelry>level not working at all?

lypnn

New Member
Joined
Jul 15, 2012
Messages
131
Reaction score
4
I'm using DB.180 without any plugins and I have a combination of 3 itemrules which I cannot get to work.
Armor > 61
Amulet > 57
Ring > 57

This picks up Armor parts at level 57 all the time. I'm just missing something obvious propably, could use some help please..
Here is the xml I can use to replicate this issue.
 

Attachments

Last edited:
bump for answers as well. I don't wanna even think about the profits lost from not picking up 59-61 jewelry since I have to set it at lvl62+ all or else stash will fill up too fast.
 
Code:
<?xml version="1.0" encoding="utf-8" ?>

<ItemRules name="Example for not working lootrules (should loot armor >=61 but loots even lvl58)" 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"/>

  <Categories>
    <Category ruleType="PickUp">
      
      <!-- Pick up all Legendary items -->
    <ItemRule>
        <StatRules>
			<Rule quality="Legendary" />
        </StatRules>
    </ItemRule>

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


<ItemRule itembaseType="Armor" twoHanded="false" description="ilvl61 Rare">

	<StatRules>

		<Rule stat="Level" minValue="61" quality="Rare4" />

	</StatRules>

</ItemRule>

<ItemRule itembaseType="Jewelry" twoHanded="false" description="ilvl57 Rare">

	<StatRules>

		<Rule stat="Level" minValue="57" quality="Rare4" />

	</StatRules>

</ItemRule>



<!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
<ItemRule itemName="*Plan:*" stack="1" />
<ItemRule itemName="*Design:*" stack="1" />
<ItemRule itemName="Tome of Secrets" stack="1" />

    </Category>

    <Category ruleType="Keep">

      <!-- Keep legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Legendary items!">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
      
    </Category>

  </Categories>

</ItemRules>

try that
 
No, changing Ring and Amulett for Jewelry did not help either. Just picked up level 58 arms and level 60 helm.
Looks like a bug?
 
u sure u updated to the latest db? also if not doing sarkoth, try using giles plugin+list combo. sometimes misses some items but it it can differentiate rare types and levels.
 
Yes I'm at .180 and using a plugin is no option. Please, can someone tell me if the XML I posted or the one utghost posted works for them?
 
Code:
<?xml version="1.0" encoding="utf-8" ?>

<ItemRules name="Example for not working lootrules (should loot armor >=61 but loots even lvl58)" 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 Legendary items -->
    <ItemRule>
        <StatRules>
			<Rule quality="Legendary" />
        </StatRules>
    </ItemRule>

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


<ItemRule itembaseType="Armor" description="ilvl61 Rare">

	<StatRules>

		<Rule stat="Level" minValue="61" quality="Rare4" />

	</StatRules>

</ItemRule>

<ItemRule itembaseType="Jewelry" description="ilvl57 Rare">

	<StatRules>

		<Rule stat="Level" minValue="57" quality="Rare4" />

	</StatRules>

</ItemRule>



<!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
<ItemRule itemName="*Plan:*" stack="1" />
<ItemRule itemName="*Design:*" stack="1" />
<ItemRule itemName="Tome of Secrets" stack="1" />

    </Category>

    <Category ruleType="Keep">

      <!-- Keep legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Legendary items!">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
      
    </Category>

  </Categories>

</ItemRules>

give that one a shot, slight little tweak
 
Last edited:
no, that tweak did not help either. I cant believe no one ever tried to loot rare armor >= 61 and jewelry >= 57
 
I know the problem


:q :q :q

itembaseType should be itemBaseType
 
Back
Top