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

Item Rules QuickStart Guide

Tell me please how to edit DefaultItemRules.xml that bot automatically sell rare and epic items instead stash them in chest?

not working!
<Category ruleType="Sell">
<ItemRule description="Sell Everything">
<StatRules>
<Rule quality="Rare4" />
</StatRules>
</ItemRule>
</Category>
NOT WORKING!
 
So there is no value that corresponds to vendor price of an item? (I want to sell the ones that are expensive and salvage the cheap stuff)
 
Just to confirm, the twoHanded (true/false) attribute just flat-out doesn't work... right?

And Life on Hit (for weapons / jewelry) also does not exist as a stat... correct?

I'm not crazy... am I?
 
Last edited:
Life on Hit does exist as stat="LifeOnHit"

twoHanded only works as True

if you want a one handed weapon you need oneHanded as True

But thats a bit funky at times
 
Life on Hit does exist as stat="LifeOnHit"

twoHanded only works as True

if you want a one handed weapon you need oneHanded as True

But thats a bit funky at times
Alright, thank you! I couldn't find "LifeOnHit" on the main post but I'm glad to know it exists, and it looks like Apoc updated the post yesterday with a oneHanded="true" example, so I'm good to go. Appreciate it, guys!
 
Hello Every1, Im a newbie here, my question about the item guide is, is rare4 means all rare? and rare3 means the third class of rare? Thank you!
 
Also, I have another question, if I want to define magicfind and goldfind, shall i just use "magicfind" and "goldfind" as it says in the file, or I should put it as "better chance to find magic item" as in game, and is "0.1x" value correct?
 
hey ayaa im using this..
<!-- Jewelry -->
<ItemRule itemBaseType="Jewelry" description="MF/GF Jewelry">
<StatRules>
<Rule stat="Quality" value="Rare4" />
<Rule stat="GoldFind" minValue="35" logic="Or" />
<Rule stat="MagicFind" minValue="35" logic="Or" />
</StatRules>
</ItemRule>



but can anyone help how to identify Follower items???
 
Hi' i'm woundering if this will work, if it doesn't, could someone please head me to the right direction? i'm trying to make a item rule that keeps lvling gear, aint going so well...

<ItemRule itemBaseType="Weapon" twoHanded="true" description="leveling 2h Rare Weapons">
<StatRules>
<Rule stat="Quality" value="Rare4" />
<Rule stat="DPS" minValue="120" />
<Rule stat="Sockets" minValue="1" />
<Rule stat="Experience" minValue="10" />
</StatRules>
</ItemRule>
 
Experience is not included on the first page of this thread... i think it is somewhat outdated... someone should update this thread..
 
Hello Every1, Im a newbie here, my question about the item guide is, is rare4 means all rare? and rare3 means the third class of rare? Thank you!
yah if there is a rare4... what is rare1,rare2,rare3????
and is there a magic2,magic3,magic4???????


here is what it says on page 1
quality - This determines the quality (as a greater than or equal) value of an item. There are quite a few values, but the ones you'll likely be using are as follows: Inferior, Normal, Superior, Magic1, Rare4, Legendary.
 
Is it possible for me to make the rules so that the bot Salvages all the 61+ ilvl blues , but not the 61+ ilvl yellows? Since if i put quality Magic1 , it counts everything equal or higher than that quality right?
 
Is it possible for me to make the rules so that the bot Salvages all the 61+ ilvl blues , but not the 61+ ilvl yellows? Since if i put quality Magic1 , it counts everything equal or higher than that quality right?


im using this, might help you...
<Category ruleType="Salvage">
<!-- Salvage items ilvl 61 & 62 -->
<ItemRule>
<StatRules>
<Rule stat="Quality" value="Magic1" />
<Rule stat="Level" minValue="61"/>
</StatRules>
</ItemRule>

<ItemRule>
<StatRules>
<Rule stat="Quality" value="Rare4" />
<Rule stat="Level" minValue="61" logic="Or" />
<Rule stat="Level" minValue="62" logic="Or" />
</StatRules>
</ItemRule>
</Category>

<Category ruleType="Sell">
<!-- Sell all magic+ items -->
<ItemRule>
<StatRules>
<Rule stat="quality" value="Magic1" />
</StatRules>
</ItemRule>
<ItemRule>
<StatRules>
<Rule stat="quality" value="Rare4" />
</StatRules>
</ItemRule>
</Category>
 
<Category ruleType="Salvage">
<!-- Salvage items ilvl 61 & 62 -->
<ItemRule>
<StatRules>
<Rule stat="Quality" value="Magic1" /> -------> This would Salvage all Magic and Rare ilvl 61 and 62
<Rule stat="Level" minValue="61"/>
</StatRules>
</ItemRule>


<ItemRule>
<StatRules>
<Rule stat="Quality" value="Rare4" />
<Rule stat="Level" minValue="61" logic="Or" />
<Rule stat="Level" minValue="62" logic="Or" />
</StatRules>
</ItemRule>
</Category>

<Category ruleType="Sell">
<!-- Sell all magic+ items -->
<ItemRule>
<StatRules>
<Rule stat="quality" value="Magic1" /> -------> This would sell all Magic and Rare left after the salvage
</StatRules>
</ItemRule>
<ItemRule>
<StatRules>

<Rule stat="quality" value="Rare4" />
</StatRules>
</ItemRule>
</Category>

So basicly the rest is not needed . Correct me if im wrong
 
Trying to figure out item rules

im using this, might help you...

<Category ruleType="Salvage">
<!-- Salvage items ilvl 61 & 62 -->
<ItemRule>
<StatRules>
<Rule stat="Quality" value="Magic1" /> -------> This would Salvage all Magic and Rare ilvl 61 and 62
<Rule stat="Level" minValue="61"/>
</StatRules>
</ItemRule>

<ItemRule>
<StatRules>
<Rule stat="Quality" value="Rare4" />
<Rule stat="Level" minValue="61" logic="Or" />
<Rule stat="Level" minValue="62" logic="Or" />
</StatRules>
</ItemRule>
</Category>

<Category ruleType="Sell">
<!-- Sell all magic+ items -->
<ItemRule>
<StatRules>
<Rule stat="quality" value="Magic1" /> -------> This would sell all Magic and Rare left after the salvage
</StatRules>
</ItemRule>
<ItemRule>
<StatRules>
<Rule stat="quality" value="Rare4" />
</StatRules>
</ItemRule>
</Category>




So this is all that is in your item rules... or did you paste this on somewhere in the Default Item Rules

Still trying to get this figured out. Ive read a lot on this but I need to see a full example of what they changed on their item rules if anyone doesnt mind posting theirs.
Just not sure what I can change, delete, add, etc to the item rules or how to make it how Id like.
Thanks.
 
Last edited:
Is it possible to sort not only by the level? Is it possible to sort by price ?
 
Last edited:
Hello i'm new on DemonBuddy, i'dont really understand the rules of pickup item.
Any one can do a sample for me for just loot Gold and rare item nothing else?

Just for know how the system work, most simple with some sample.

Thx a lot :)
 
Hello i'm new on DemonBuddy, i'dont really understand the rules of pickup item.
Any one can do a sample for me for just loot Gold and rare item nothing else?

Just for know how the system work, most simple with some sample.

Thx a lot :)

Do you want it to pick all up all rares no matter what ilvl and put them in your stash?
 
Back
Top