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

how do i set it to sell?

Roflkoptor

Member
Joined
Apr 6, 2012
Messages
119
Reaction score
0
i'm doing just nightmare as lv60 in act3 core of the arreat . i want it to sell all the blues and rares, i want to keep legendary's !
Since it is not selling anything atm it tries to stash even though i made my stash protected all 3 tabs !
any help would be nice !
Thanks in advance ,
 
You can simply read http://www.thebuddyforum.com/demonb...guides/54086-item-rules-quickstart-guide.html
to know how to do those stuff. It try to stash because you didn't edit the file.

When you finish editing load it in Settings tab.

If you need more help after reading the thread, ask here.

Hey tbh i'm tired from working and cba to read a wall of text to change the settings !
i'd expected a more user friendly setup , like the other software from the buddy team...
 
Hey tbh i'm tired from working and cba to read a wall of text to change the settings !
i'd expected a more user friendly setup , like the other software from the buddy team...

And we agree with you. Apoc is working on a GUI and by the time we are charging the full price, it will be in the bot. Meanwhile, please do take a quick look at the text file - if you still have problems post back and we are happy to help.
 
Well I'll give you an hand with it...
<Priority priority1="Keep" priority2="Sell" priority3="Salvage" />
This is mine, first it go to stash items that I want to keep, then it goes to sell all the other items that I specifed, you just have to look through-out the file, it's really easy to understand, you should review it in 4 parts (categories basically)

Picking up (What items to pick up)
Code:
 <Category ruleType="PickUp">
      
      <!-- Pick up all magic+ items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>

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

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

What items to keep (Stash)
Code:
 <Category ruleType="Keep">
      
      <ItemRule itemBaseType="Weapon" twoHanded="true" description="High DPS 2h Weapons">
        <StatRules>
          <!-- Magic Weapons should have at least 1200 DPS -->
          <Rule stat="DPS" minValue="1200" quality="Magic1" />
          <!-- Rare weapons should have at least 1100 considering they provide extra stats most of the time. -->
          <Rule stat="DPS" minValue="1100" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Weapon" twoHanded="false" description="High DPS 1h Weapons">
        <StatRules>
          <Rule stat="DPS" minValue="1000" quality="Magic1" />
          <Rule stat="DPS" minValue="900" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Armor" description="Rare armor with Intelligence">
        <StatRules>
          <Rule stat="Intelligence" minValue="100" quality="Rare4" />
        </StatRules>
      </ItemRule>
      
      <ItemRule itemBaseType="Jewelry" description="Rare jewelry with Intelligence">
        <StatRules>
          <Rule stat="Intelligence" minValue="100" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemName="String of Ears" description="High DR% String of Ears">
        <StatRules>
          <!-- String of Ears should have at least 17% damage reduction. Any lower and its not worth a whole lot.-->
          <Rule stat="DamageReductionPhysicalPercent" minValue="17" />
        </StatRules>
      </ItemRule>

      <ItemRule itemName="Talisman of Aranoch" description="Talisman of Awesome Lowbieness" />

      <!-- Keep rares and legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Rare and better items!">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
    </Category>

And what items to sell
Code:
<Category ruleType="Sell">
      <ItemRule description="Sell Everything">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
    </Category>
    
  </Categories>
</ItemRules>

That shouldn't be too hard to understand.
If you want Salvage you will have to add your own script which should look like this



<Category ruleType="Salvage">
<ItemRule description="Salvage">
<Rule quality="Magic1" />
</ItemRule>
</Category>


If you want priority to be Salvage then sell then stash simply do it in the priority settings.

NOTE: TO STASH ITEMS YOU MUST HAVE 1 TAB UNPROTECTED. I'm not sure if it can drop stuff from your stash atm but just get a clean tab.
NOTE2: You must state you want to sell gems if you want to sell them.
 
ermm what should i change numbers ? what does 'Magic1' do i change it into Magic3 or what i really dont understand all this sorry ...
 
Magic1 Magic2 and Magic3 are blue items with the number of properties they have.

What are you trying to do?
 
sorry to interupt but mine isnt looting anything, i have looked through this text file and from what i can kind of understand it should loot, but it doesnt, it walks past everything, loots gold thats in range but wont run back if it misses loot.
 
And we agree with you. Apoc is working on a GUI and by the time we are charging the full price, it will be in the bot. Meanwhile, please do take a quick look at the text file - if you still have problems post back and we are happy to help.

This would be greatly appreciated and newb friendly for users like me.
 
only wanna keep Legendary's and sell all the blues and rares

I'll make it quick for you. Do you want to loot pots, gems, gold and pages/tomes?

Made them. Both loots gold, the "loot all" also loots books, pots and gems.
 

Attachments

Last edited:
I'll make it quick for you. Do you want to loot pots, gems, gold and pages/tomes?
yea it's all fine for me as long as it does what i said before Stash legendary's and sell all the rest but not potions ( i have some protected bag slots that should be fine i guess )
 
By default DB wont sell legendarys right? i noticed it puts yellow in my stash and sells all blues just like i want it to. :) just dont want it to sell any possible legendarys ^^
 
I'll make it quick for you. Do you want to loot pots, gems, gold and pages/tomes?

Made them. Both loots gold, the "loot all" also loots books, pots and gems.

Still picks up pages of crafting and pots and gems, even with a value of 0... o.0
 
Back
Top