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

Really Need Help with this! Simple problem

nightwing412

New Member
Joined
Jan 3, 2012
Messages
254
Reaction score
1
I just cant figure out what to change in the new loot rules, I was using v. 185 but accidently deleted it so I have to use the new version now.

What needs to be changed to work with the latest version, this is what mine looks like right now:


Do I just have to change everything that says quality= to something else or whats up?

<Categories>
<Category ruleType="PickUp">

<!-- Pick up any designs and plans -->
<ItemRule itemName="*Design:*" stack="1" />

<!-- Pick up all magic+ items -->
<ItemRule>
<StatRules>
<Rule quality="Magic1" stat="level" minValue="61" />
</StatRules>
</ItemRule>

<!-- Pick up all Jewelery rare+ items -->
<ItemRule itemBaseType="Jewelry">
<StatRules>
<Rule quality="Magic1" stat="level" minValue="60" />
</StatRules>
</ItemRule>

<!-- Pick up all Jewelery rare+ items -->
<ItemRule itemBaseType="Jewelry">
<StatRules>
<Rule quality="Rare4" stat="level" minValue="50" />
</StatRules>
</ItemRule>

<!-- All level 62+ armor -->
<ItemRule itemBaseType="Armor">
<StatRules>
<Rule quality="Rare4" />
<Rule stat="Level" minValue="61" />
</StatRules>
</ItemRule>

<!-- All level 63+ weapons -->
<ItemRule itemBaseType="Weapon">
<StatRules>
<Rule quality="Rare4" />
<Rule stat="Level" minValue="63" />
</StatRules>
</ItemRule>

<!-- Pick up gold, at least in stacks of 50 -->
<ItemRule itemName="Gold" stack="250" />

<!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
<ItemRule itemName="Page of*" stack="1" />
<ItemRule itemName="Tome of*" stack="1" />

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

<Category ruleType="Keep">
<!-- Keep rare jewelry (rings, amulets) level 50 or more regardless of stats. -->
<ItemRule itemBaseType="Jewelry" description="Rare jewelry">
<StatRules>
<Rule quality="Rare4" stat="level" minValue="50" />
</StatRules>
</ItemRule>

<!-- All level 62+ armor -->
<ItemRule itemBaseType="Armor">
<StatRules>
<Rule quality="Rare4" />
<Rule stat="Level" minValue="61" />
</StatRules>
</ItemRule>

<!-- All level 63+ weapons -->
<ItemRule itemBaseType="Weapon">
<StatRules>
<Rule quality="Rare4" />
<Rule stat="Level" minValue="63" />
</StatRules>
</ItemRule>


<!-- Keep legendaries, regardless of stats. -->
<ItemRule ruleType="Keep" description="Legendary">
<StatRules>
<Rule quality="Legendary" />
</StatRules>
</ItemRule>
</Category>

<!--Sells everything else -->
<Category ruleType="Sell">
<ItemRule description="Sell Everything">
<StatRules>
<Rule quality="Magic1" />
</StatRules>
</ItemRule>
</Category>
</Categories>
</ItemRules>
 
Last edited:
ill give someone a few mil d3 gold if they can just take my loot rules and make them work with the new DB version :)
 
ill give someone a few mil d3 gold if they can just take my loot rules and make them work with the new DB version :)

This should do it, and forget about the gold :)

Code:
<Categories>
<Category ruleType="PickUp">

<!-- Pick up any designs and plans -->
<ItemRule itemName="*Design:*" stack="1" />
<ItemRule itemName="*Plan:*" stack="1" />

<!-- Pick up all magic+ items -->
<ItemRule>
<StatRules>
<Rule stat="quality" value="Magic1" />
<Rule stat="level" minValue="61" />
</StatRules>
</ItemRule>

<!-- Pick up all Jewelery rare+ items -->
<ItemRule itemBaseType="Jewelry">
<StatRules>
<Rule stat="quality" value="Magic1" />
<Rule stat="level" minValue="60" />
</StatRules>
</ItemRule>

<!-- Pick up all Jewelery rare+ items -->
<ItemRule itemBaseType="Jewelry">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="level" minValue="50" />
</StatRules>
</ItemRule>

<!-- All level 62+ armor -->
<ItemRule itemBaseType="Armor">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="Level" minValue="61" />
</StatRules>
</ItemRule>

<!-- All level 63+ weapons -->
<ItemRule itemBaseType="Weapon">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="Level" minValue="63" />
</StatRules>
</ItemRule>

<!-- Pick up gold, at least in stacks of 50 -->
<ItemRule itemName="Gold" stack="250" />

<!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
<ItemRule itemName="Page of*" stack="1" />
<ItemRule itemName="Tome of*" stack="1" />

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

<Category ruleType="Keep">
<!-- Keep rare jewelry (rings, amulets) level 50 or more regardless of stats. --> 
<ItemRule itemBaseType="Jewelry" description="Rare jewelry">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="Level" minValue="50" />
</StatRules>
</ItemRule>

<!-- All level 62+ armor -->
<ItemRule itemBaseType="Armor">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="Level" minValue="61" />
</StatRules>
</ItemRule>

<!-- All level 63+ weapons -->
<ItemRule itemBaseType="Weapon">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="Level" minValue="63" />
</StatRules>
</ItemRule>


<!-- Keep legendaries, regardless of stats. -->
<ItemRule ruleType="Keep" description="Legendary">
<StatRules>
<Rule stat="quality" value="Legendary" />
</StatRules>
</ItemRule>
</Category>

<!--Sells everything else -->
<Category ruleType="Sell">
<ItemRule description="Sell Everything">
<StatRules>
<Rule stat="quality" value="Magic1" />
</StatRules>
</ItemRule>
</Category>
</Categories>
</ItemRules>
 
This should do it, and forget about the gold :)

Code:
<Categories>
<Category ruleType="PickUp">

<!-- Pick up any designs and plans -->
<ItemRule itemName="*Design:*" stack="1" />
<ItemRule itemName="*Plan:*" stack="1" />

<!-- Pick up all magic+ items -->
<ItemRule>
<StatRules>
<Rule stat="quality" value="Magic1" />
<Rule stat="level" minValue="61" />
</StatRules>
</ItemRule>

<!-- Pick up all Jewelery rare+ items -->
<ItemRule itemBaseType="Jewelry">
<StatRules>
<Rule stat="quality" value="Magic1" />
<Rule stat="level" minValue="60" />
</StatRules>
</ItemRule>

<!-- Pick up all Jewelery rare+ items -->
<ItemRule itemBaseType="Jewelry">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="level" minValue="50" />
</StatRules>
</ItemRule>

<!-- All level 62+ armor -->
<ItemRule itemBaseType="Armor">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="Level" minValue="61" />
</StatRules>
</ItemRule>

<!-- All level 63+ weapons -->
<ItemRule itemBaseType="Weapon">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="Level" minValue="63" />
</StatRules>
</ItemRule>

<!-- Pick up gold, at least in stacks of 50 -->
<ItemRule itemName="Gold" stack="250" />

<!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
<ItemRule itemName="Page of*" stack="1" />
<ItemRule itemName="Tome of*" stack="1" />

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

<Category ruleType="Keep">
<!-- Keep rare jewelry (rings, amulets) level 50 or more regardless of stats. --> 
<ItemRule itemBaseType="Jewelry" description="Rare jewelry">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="Level" minValue="50" />
</StatRules>
</ItemRule>

<!-- All level 62+ armor -->
<ItemRule itemBaseType="Armor">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="Level" minValue="61" />
</StatRules>
</ItemRule>

<!-- All level 63+ weapons -->
<ItemRule itemBaseType="Weapon">
<StatRules>
<Rule stat="quality" value="Rare4" />
<Rule stat="Level" minValue="63" />
</StatRules>
</ItemRule>


<!-- Keep legendaries, regardless of stats. -->
<ItemRule ruleType="Keep" description="Legendary">
<StatRules>
<Rule stat="quality" value="Legendary" />
</StatRules>
</ItemRule>
</Category>

<!--Sells everything else -->
<Category ruleType="Sell">
<ItemRule description="Sell Everything">
<StatRules>
<Rule stat="quality" value="Magic1" />
</StatRules>
</ItemRule>
</Category>
</Categories>
</ItemRules>

thank you so much
 
Back
Top