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

Ok, that?s getting annoying, the bot is not looting.

Fordem

New Member
Joined
Jun 15, 2012
Messages
59
Reaction score
0
Look, i know this has already been posted but i?m bringing the topic up, cuz the bot is not looting gems, rares, tomes or whatever.
I have here a log from the newest version of Demonbuddy, and a copy of my loot rule file.

View attachment 2012-08-03 16.21.txt

Is there something wrong with looting rules below.

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>

I?m no specialist on the work done by DemonBuddy developers, but the log points out several problems regarding the action of looting something. I realize i must be the only one with this problem cuz there ain?t many ppl pointing out the error, and i?m having to rpr the chars manualy since there is no looting. Well i ask with regards that some1 take a look in what i?m posting and give me some kind of answer i have 3 bots running at the same time and i?m still lvling one more toon to make a fourth bot. I have seven sessions and if this problem is not solved once i get seven accounts it will be pretty much impossible to manage all of them. Anyways thanks a lot.
 
Last edited:
Using the newest bot didn't loot for me either, so I'm just using .185
 
Well but that?s not realy the point i have here.... the point is the bot has a big bug, i will keep the things going the way they are right now but i expect with this post that the developers open their eyes and fix the problem, that?s just it.
 
nope didn?t work(wrong statement)...... hey that shit worked....!!! but it is still not looting the gems and the tomes.....
 
Last edited:
For your gems instead of this
<!-- Gems -->
<ItemRule itemName="*Emerald" />
<ItemRule itemName="*Amethyst" />
<ItemRule itemName="*Ruby" />
<ItemRule itemName="*Topaz" />
try this
<!-- Gems -->
<ItemRule itemName="*Emerald*" />
<ItemRule itemName="*Amethyst*" />
<ItemRule itemName="*Ruby*" />
<ItemRule itemName="*Topaz*" />
 
Back
Top