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

Legendary loot only loot rules

jkb808

New Member
Joined
Dec 16, 2011
Messages
1
Reaction score
0
Hi, I am new to demonbuddy and the forums.
I am looking for a loot profile which only loots legendaries and gold stacks which are 500g and above.
I have tried using the loot rules creator etc but so far with no luck at all, the bot still picks up junk.....
I am willing to offer donation of $20 to the person who offers me a working profile.

I have tried using the loot rules creator etc but so far with no luck at all, the bot still picks up junk.....

Thanks
 
You need a loot rule, not a profile... :P

You can use this loot rule with any profile, just save it to an xml file and load it in DB Settings tab > Loot rules
Code:
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="jkb808 loot rules" useRoundedValues="true" xmlns="http://tempuri.org/ItemRuleSchema.xsd" xmlns:xsi="http://tempuri.org/ItemRuleSchema.xsd">
  <Priority priority1="Keep" />
  <Categories>
    <Category ruleType="PickUp">
      <!-- Pickup all legendaries -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Legendary"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up gold piles 500+ -->
      <ItemRule itemName="Gold" stack="500" />
    </Category>
    <Category ruleType="Keep">
      <!-- Keep all looted -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Legendary"/>
        </StatRules>
      </ItemRule>
    </Category>
  </Categories>
</ItemRules>
 
Back
Top