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

Depositing all yellow and i don`t want to.

Raqw

New Member
Joined
Dec 6, 2011
Messages
42
Reaction score
0
So like i said in title my bot is storing all yellow items even they are low lvl and ilvl like lvl 20 etc... i`m lvling now.... here are my settings:

98931787.jpg


so i want to pick all items up but do not store anything except legendary because i`m lvling and i don`t need all lvl 1-50 yellow crap.
 
So click "Use Giles Filters and Scoring" since you haven't appeared to say anything about your custom loot rules (not sure why you selected that).
 
You can use a loot rule xml file like the following:
PHP:
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="Leveling">
  <Priority priority1="PickUp" priority2="Keep" priority3="Sell"/>
  <Categories>
    <!-- Pick up all items -->
    <Category ruleType="PickUp">
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Normal"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up gold -->
      <ItemRule itemName="Gold" stack="1" />
      <!-- Pick up potions -->
      <ItemRule itemName="*Health Potion*" />
    </Category>
    <!-- Keep legendaries -->
    <Category ruleType="Keep">
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Legendary"/>
        </StatRules>
      </ItemRule>
    </Category>
    <!-- Sell items -->
    <Category ruleType="Sell">
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Normal" />
        </StatRules>
      </ItemRule>
    </Category>
  </Categories>
</ItemRules>
 
You can use a loot rule xml file like the following:
PHP:
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="Leveling">
  <Priority priority1="PickUp" priority2="Keep" priority3="Sell"/>
  <Categories>
    <!-- Pick up all items -->
    <Category ruleType="PickUp">
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Normal"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up gold -->
      <ItemRule itemName="Gold" stack="1" />
      <!-- Pick up potions -->
      <ItemRule itemName="*Health Potion*" />
    </Category>
    <!-- Keep legendaries -->
    <Category ruleType="Keep">
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Legendary"/>
        </StatRules>
      </ItemRule>
    </Category>
    <!-- Sell items -->
    <Category ruleType="Sell">
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Normal" />
        </StatRules>
      </ItemRule>
    </Category>
  </Categories>
</ItemRules>

This is really interesting , would you mind sharing something more copmplex if you have already done it ?
It seems you are quite confident with custom loot rules and i would like to start looking into it!
Having something to work on instead of starting from scratch would be useful , and others loot rules i found always require to compile some hardcoded cs while im just searching for soemthing easier like your php quote.
 
This is really interesting , would you mind sharing something more copmplex if you have already done it ?
It seems you are quite confident with custom loot rules and i would like to start looking into it!
Having something to work on instead of starting from scratch would be useful , and others loot rules i found always require to compile some hardcoded cs while im just searching for soemthing easier like your php quote.
Check the Demonbuddy Profiles > Other forum to a rule that can suit you (more or less), to have a base to edit. Then you can use the XML Schema found here: http://www.thebuddyforum.com/demonbuddy-forum/demonbuddy-guides/86283-item-rules-xml-schema.html, along with http://www.thebuddyforum.com/demonb...guides/54086-item-rules-quickstart-guide.html to help you edit the file to suit your needs.
 
Back
Top