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

Frustration setting in, can't make DB loot

foam_follower

Member
Joined
Dec 3, 2011
Messages
282
Reaction score
4
Hi there.

Forgive this old fart for asking but I'm getting frustrated to the point of regretting making this purchase. The bot has so far cost me 262000 gold in repairs and hasn't picked up a single stack of gold, blue or yellow items. I've read

http://www.thebuddyforum.com/demonb...es/54474-tips-get-you-started-demonbuddy.html

&

http://www.thebuddyforum.com/demonb...guides/54086-item-rules-quickstart-guide.html

& even tried the recommendations in

http://www.thebuddyforum.com/demonb...port/62061-demonbuddy-wont-pick-up-plans.html

It's clear I've missed something here something but despite trawling the forums I'm at a loss and seriously considering canceling payment for this bot.

Honorbuddy works great. Very happy with my 3 licences. It's helped me rais my 85 tally from 19 (Self leveled) to 31. Made me 600g too.

I would welcome any advice on how to fix this issue before I give in and ask for a refund.
 
Hey, I'll post a few examples of the loot rules here:

1st: pickup gold only

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 gold, at least in stacks of 100 -->
      <ItemRule itemName="Gold" stack="1" />
	  
    </Category>
    
  </Categories>
</ItemRules>


This next one focuses on looking for gear with at least 23 MF and GF.

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 magic+ items -->
      <ItemRule>
        <StatRules>
		  <Rule stat="quality" value="Magic1" />
        </StatRules>
      </ItemRule>
	  
	  <!-- Pick up designs and plans, blacksmithin -->
	  <ItemRule itemName="Plan*" stack="1" />
	  <ItemRule itemName="Design*" stack="1" />

      <!-- Pick up gold, at least in stacks of 100 -->
      <ItemRule itemName="Gold" stack="1" />
      
      <!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
      <!-- <ItemRule itemName="Page of*" stack="1" /> -->
      <ItemRule itemName="Tome of*" stack="1" />
      
      <!-- Gems -->
      <ItemRule itemName="Square Emerald" />
      <ItemRule itemName="Flawless Square*" />

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

    <Category ruleType="Keep">	
      
      <!-- Keep all Legendary items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
      
	  <!-- Weapon, based on DPS -->
      <ItemRule itemBaseType="Weapon" description="High DPS Weapons">
        <StatRules>
		  <Rule stat="quality" value="Magic3" />
          <Rule stat="DPS" minValue="1000" />
        </StatRules>
      </ItemRule>  
      
	  <!-- Primary stats (Dex, Str, Int) -->
      <ItemRule itemBaseType="Armor" >
        <StatRules>
		  <Rule stat="quality" value="Magic3" />
          <Rule stat="Strength" minValue="200"  />
        </StatRules>
      </ItemRule>
      <ItemRule itemBaseType="Armor" >
        <StatRules>
		  <Rule stat="quality" value="Magic3" />
          <Rule stat="Vitality" minValue="200" />
        </StatRules>
      </ItemRule>	
      
	  <!-- Gold and Magic Find Armour -->
      <ItemRule itemBaseType="Armor">
        <StatRules>
		  <Rule stat="quality" value="Magic2" />
          <Rule stat="GoldFind" minValue="23" />
        </StatRules>
      </ItemRule>
      <ItemRule itemBaseType="Armor">
        <StatRules>
		  <Rule stat="quality" value="Magic2" />
          <Rule stat="MagicFind" minValue="23" />
        </StatRules>
      </ItemRule>		
      
	  <!-- Gold and Magic Find Jewelry -->
      <ItemRule itemBaseType="Jewelry">
        <StatRules>
		  <Rule stat="quality" value="Magic2" />
          <Rule stat="GoldFind" minValue="23" />
        </StatRules>
      </ItemRule>
      <ItemRule itemBaseType="Jewelry">
        <StatRules>
		  <Rule stat="quality" value="Magic2" />
          <Rule stat="MagicFind" minValue="23" />
        </StatRules>
      </ItemRule>	
	  
	  
	
	  <!-- Mythic Health potions -->
      <ItemRule itemName="Mythic Health Potion" />
	  
	  <!-- Pick up designs and plans, blacksmithin -->
	  <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" />
      
      <!-- Gems -->
      <ItemRule itemName="Square Emerald" />
      <ItemRule itemName="Flawless Square*" />
      
    </Category>

    <Category ruleType="Salvage">
	  <!-- Slavage the rmaining jewelry, level 59+ -->
      <ItemRule>
        <StatRules itemBaseType="Jewelry">
		  <Rule stat="quality" value="Magic1" />
          <Rule stat="level" minValue="59"  />
        </StatRules>
      </ItemRule>
	  <!-- Slavage level 60+ magic items+ -->
      <ItemRule>
        <StatRules>
		  <Rule stat="quality" value="Magic1" />
          <Rule stat="level" minValue="60"  />
        </StatRules>
      </ItemRule>
	  
    </Category>

    <Category ruleType="Sell">
      <ItemRule description="Sell what's left in the bag">
        <StatRules>
		  <Rule stat="quality" value="Magic1" />
        </StatRules>
      </ItemRule>
    </Category>
    
  </Categories>
</ItemRules>

They will work with the latest version of DB.
The second profile listing is specifically for Inferno.
 
Last edited:
Thanks for posting those. I'm going to get the old grey matter in gear and see if I can get some understanding going. I'll report back later with my experiences.
 
Does the second set you posted behave like the old DB. Where it picks up all the blue and golds etc, id's the golds/legendaries when full and puts them in ur stash and sells all the blues?
 
Ok I'm having good results using the previous version of DB but no so much with Demonbuddy 1.0.834.197. Guessing I'm going to have to read up on how to use

Rule stat="quality" value="Magic3" etc because I don't seem to be having much luck in the latest release. I can get it to loot gold but pretty much nothing else.

Previous version, everything seems to work as described.

Info appreciated here if anyone has any.
 
Back
Top