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

Need loot rule

buddybud

New Member
Joined
Nov 20, 2012
Messages
72
Reaction score
0
Need loot rule that pickups all legendaries and rares lvl 61 + and jewelery lvl 56+, potions, gems, tomes,plans.
keep all legendaries , potions, gems, tomes, plans and rares that ill input there
i want to paste my rare rules into it, iv tried to do that with looting and highlevel rules but it didnt pick and keep potions, gems, tomes,plans.
 
Here you go:
PHP:
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="buddybud Rules" useRoundedValues="true" xmlns="http://tempuri.org/ItemRuleSchema.xsd" xmlns:xsi="http://tempuri.org/ItemRuleSchema.xsd">
  <Priority priority1="Keep" />
  <Categories>
    <Category ruleType="PickUp">
      <!-- Pickup all legendaries -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Legendary"/>
        </StatRules>
      </ItemRule>
      <!-- Pickup all rare lvl 61+ -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
          <Rule stat="Level" minValue="61"/>
        </StatRules>
      </ItemRule>
      <!-- Pickup all rare jewelry lvl 56+ -->
      <ItemRule itemBaseType="Jewelry">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
          <Rule stat="Level" minValue="56"/>
        </StatRules>
      </ItemRule>
      <!-- Pickup BS plans -->
      <ItemRule itemName="*Plan:*" />
      <!-- Pickup JC designs -->
      <ItemRule itemName="*Design:*" />
      <!-- Pickup Tomes -->
      <ItemRule itemName="Tome of Secrets" />
      <!-- Pickup gems -->
      <ItemRule itemName="*Flawless Square*" />
      <!-- Pickup potions -->
      <ItemRule itemName="*Health Potion*" />
    </Category>
    <Category ruleType="Keep">
      <!-- Keep legendary items -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Legendary" />
        </StatRules>
      </ItemRule>
      <!-- Keep BS plans -->
      <ItemRule itemName="*Plan:*" />
      <!-- Keep JC designs -->
      <ItemRule itemName="*Design:*" />
      <!-- Keep Tomes -->
      <ItemRule itemName="Tome of Secrets" />
      <!-- Keep gems -->
      <ItemRule itemName="*Flawless Square*" />
      <!-- Keep potions -->
      <ItemRule itemName="*Health Potion*" />
      <!-- Add the rest of rare rules here -->
    </Category>
  </Categories>
</ItemRules>
 
ah btw how to keep all rare amulets/rings?

<ItemRule itemBaseType="Jewelry" description="Rare Jewelry iLvl 58+">
<StatRules>
<Rule stat="Quality" value="Rare4" />
<Rule stat="Level" minValue="56" />
</StatRules>
</ItemRule>

this is enough?

and how to remove salvage so i just sell everything?
 
Last edited:
If you copy the rule
PHP:
<ItemRule itemBaseType="Jewelry" description="Rare Jewelry iLvl 58+">
<StatRules>
<Rule stat="Quality" value="Rare4" />
<Rule stat="Level" minValue="56" />
</StatRules>
</ItemRule>
in the keep category, it will keep all rare (or higher) jewelry ilevel 56+.

If you want to sell everything, just add
PHP:
<Category ruleType="Sell">
	<ItemRule description="Sell Everything">
		<StatRules>
			<Rule stat="Quality" value="Magic1" />
		</StatRules>
	</ItemRule>
</Category>
below the keep category and add priority2="Sell" to the priorities tag.
 
Back
Top