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

[Loot Rules] Salvage 59+ jewelry and 60 magic items (among other things)

Currently using "Salvage59-60KeepJewelryRares&GFMF&WeaponsThenSellEverythingElse" wondering how i could make it so it salvages all magic items that give inferno mats and vendor the rest? Dont really care for magic weps or anything just want the salvage mats
 
with PickUpWorthSalvagingItemsKeepLegendariesRaresAndGoodWeapons v1.0 I've raised my GPH like 10k ~15k it won't pick up and sell worthless items, but this way would do more games per hour.
 
Is there a way for it to NOT identify the rares/legen's? Or is this something built into the bot app?

Sorry if i missed it in this thread.
 
Last edited:
I have been looking for this too, and i think with some kind of plugin is possible, cause in loot rules i don't specify in any line identify this, or identify that kind of item with those characteristics
 
Hey Rosco, currently using KeepRaresAndItemsWithGoodStats v1.3

How can I make it not pickup potions? Also would like it to only pickup flawless square emeralds and topaz, as amethyst and rubies are not worth it.

I've also noticed it not stashing tomes, seems to vendor them sometimes too.

Thanks.
 
Good morning :D

look for this line:
<!-- Flawless Square Gems -->
<ItemRule itemName="Flawless Square*" stack="1" />

And replace it for:

<!-- Flawless Square Gems -->
<ItemRule itemName="Flawless Square Topaz" stack="1" />
<ItemRule itemName="Flawless Square Emerald" stack="1" />

And if you don't want to pick up potions look for this line and delete it:

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

Selling tomes with this profile? i think is rather impossible because there isn't a rule to sell (at least in this profile).
 
Im having an issue with not picking up Tomes and Flawless gems too even if profile states it clearly to do so...

Checked every profile above with no solution, any idea guys ?
 
Can someone tell me how to add: "pick up all magic jewelry & gear with gold find or magic find above a certain %?" to the following loot rule?
I can't find this code in any other loot rules, most are using keep rules.
Also, I think there needs to be a separate code for 1 handers, it keeps picking up 2 handers with only 800 dps.

KeepRaresAndItemsWithGoodStats v1.3

Basically I want:

+Pick up all tomes, plans, flawless squares, etc
+Pick up all rare jewelry/ gear regardless of stats
+Pick up all 1hand/2hand over certain dps
+pick up all magic jewelry & gear with GF or MF above a certain %
+Do not sell or salvage anything
 
Last edited:
Changes I made:

- No longer keeps hoofs
- Only Keeps level 63 rares (Only sellable ones imo)
- Keep flawless square emeralds only
- Keeps magic 1.3k dps 2 handers and 1k dps 1 handers

Do you mind if I made the proper changes? Thank you :cool:
**Edit
The changes I made seem to work. Is there a way to keep x amount of potions in my inventory so that he can use them when necessary? Thanks!


Code:
<?xml version="1.0" encoding="utf-8" ?>
<!--
Set your bot settings and allow at least one page to deposit looted items. 
Otherwise bot will just stand front of stash and do nothing.
-->
<ItemRules name="Roscopower's Loot Rules" useRoundedValues="false">

  <Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

  <Categories>
    <Category ruleType="PickUp">
      
      <!-- Pick up all magic+ items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>

      <!-- Pick up gold, at least in stacks of 50 -->
      <ItemRule itemName="Gold" stack="50" />
      
      <!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
      <ItemRule itemName="Page of*" stack="1" />
      <ItemRule itemName="Tome of*" stack="1" />
      
	  <!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="*Plan*" stack="1" />
      <ItemRule itemName="*Design*" stack="1" />
	  
      <!-- Flawless Square Gems -->
      <ItemRule itemName="Flawless Square Emerald" stack="1" />

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

    <Category ruleType="Keep">
	
	  <!-- Mythic Health potions -->
      <ItemRule itemName="Mythic Health Potion" />
	  
	  <!-- Keep designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="*Plan*" />
      <ItemRule itemName="*Design*" />
	  
	  <!-- Just in case keeps pages, tomes and salvage materials-->
	  <ItemRule itemName="Page of*" />
      <ItemRule itemName="Tome of*" />
	  <ItemRule itemName="*Essence" />	
	  <ItemRule itemName="*Tear" />
	  <ItemRule itemName="*Brimstone" />	
	  
      <!-- Keep rare jewelry regardless of stats or level. -->    
      <ItemRule ruleType="Keep" itemBaseType="Jewelry" description="Rare jewelry">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
	  
	  <!-- Keep rare gear regardless of stats level 63. -->    
      <ItemRule ruleType="Keep" description="Rare Gear">
        <StatRules>
          <Rule quality="Rare4" stat="level" minValue="63" />
        </StatRules>
      </ItemRule>
	  
	  <!-- Keep Magic and Rare Weapons -->
      <ItemRule itemBaseType="Weapon" twoHanded="true" description="High DPS 2h Weapons">
        <StatRules>
          <!-- Magic/rare 2H Weapons should have at least 1300 DPS -->
          <Rule stat="DPS" minValue="1300" quality="Magic1" />
		  <Rule stat="level" minValue="61" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Weapon" twoHanded="false" description="High DPS 1h Weapons">
        <StatRules>
		  <!-- Magic/rare 1H Weapons should have at least 1000 DPS -->
          <Rule stat="DPS" minValue="1000" quality="Magic1" />
		  <Rule stat="level" minValue="61" />
        </StatRules>
      </ItemRule>

      <!-- Keep legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Legendary">
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
    </Category>
	
	<!-- Salvages everything between level 59 and 60. -->
    <Category ruleType="Salvage">
	  <!-- Salvages jewelry level 59 -->
	  
	  <ItemRule itemBaseType="Jewelry" description="Salvage Jewelry">
        <StatRules>
          <Rule quality="Magic1" stat="level" minValue="60" />
        </StatRules>
      </ItemRule>
	  
	  <!-- Salvages everything else level 60 -->
      <ItemRule description="Salvage Everything">
        <StatRules>
		  <Rule quality="Magic1" stat="level" minValue="61" />
        </StatRules>
      </ItemRule>
    </Category>
	
	<!--Sells everything else -->
    <Category ruleType="Sell">
      <ItemRule description="Sell Everything">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
    </Category>
  </Categories>
</ItemRules>
 
Last edited:
Im sorry everyone, since last ban wave I've been a little away... I'll put into it with the last submitted requests.

Changes I made:
- No longer keeps hoofs
- Only Keeps level 63 rares (Only sellable ones imo)
- Keep flawless square emeralds only
- Keeps magic 1.3k dps 2 handers and 1k dps 1 handers

Do you mind if I made the proper changes? Thank you :cool:
**Edit
The changes I made seem to work. Is there a way to keep x amount of potions in my inventory so that he can use them when necessary? Thanks!


Code:
<?xml version="1.0" encoding="utf-8" ?>
<!--
Set your bot settings and allow at least one page to deposit looted items. 
Otherwise bot will just stand front of stash and do nothing.
-->
<ItemRules name="Roscopower's Loot Rules" useRoundedValues="false">

  <Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

  <Categories>
    <Category ruleType="PickUp">
      
      <!-- Pick up all magic+ items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>

      <!-- Pick up gold, at least in stacks of 50 -->
      <ItemRule itemName="Gold" stack="50" />
      
      <!-- Pick up all pages and tomes, blacksmithing/jewelcrafting -->
      <ItemRule itemName="Page of*" stack="1" />
      <ItemRule itemName="Tome of*" stack="1" />
      
	  <!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="*Plan*" stack="1" />
      <ItemRule itemName="*Design*" stack="1" />
	  
      <!-- Flawless Square Gems -->
      <ItemRule itemName="Flawless Square Emerald" stack="1" />

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

    <Category ruleType="Keep">
	
	  <!-- Mythic Health potions -->
      <ItemRule itemName="Mythic Health Potion" />
	  
	  <!-- Keep designs and plans, blacksmithing/jewelcrafting -->
      <ItemRule itemName="*Plan*" />
      <ItemRule itemName="*Design*" />
	  
	  <!-- Just in case keeps pages, tomes and salvage materials-->
	  <ItemRule itemName="Page of*" />
      <ItemRule itemName="Tome of*" />
	  <ItemRule itemName="*Essence" />	
	  <ItemRule itemName="*Tear" />
	  <ItemRule itemName="*Brimstone" />	
	  
      <!-- Keep rare jewelry regardless of stats or level. -->    
      <ItemRule ruleType="Keep" itemBaseType="Jewelry" description="Rare jewelry">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
	  
	  <!-- Keep rare gear regardless of stats level 63. -->    
      <ItemRule ruleType="Keep" description="Rare Gear">
        <StatRules>
          <Rule quality="Rare4" stat="level" minValue="63" />
        </StatRules>
      </ItemRule>
	  
	  <!-- Keep Magic and Rare Weapons -->
      <ItemRule itemBaseType="Weapon" twoHanded="true" description="High DPS 2h Weapons">
        <StatRules>
          <!-- Magic/rare 2H Weapons should have at least 1300 DPS -->
          <Rule stat="DPS" minValue="1300" quality="Magic1" />
		  <Rule stat="level" minValue="61" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Weapon" twoHanded="false" description="High DPS 1h Weapons">
        <StatRules>
		  <!-- Magic/rare 1H Weapons should have at least 1000 DPS -->
          <Rule stat="DPS" minValue="1000" quality="Magic1" />
		  <Rule stat="level" minValue="61" />
        </StatRules>
      </ItemRule>

      <!-- Keep legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Legendary">
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
    </Category>
	
	<!-- Salvages everything between level 59 and 60. -->
    <Category ruleType="Salvage">
	  <!-- Salvages jewelry level 59 -->
	  
	  <ItemRule itemBaseType="Jewelry" description="Salvage Jewelry">
        <StatRules>
          <Rule quality="Magic1" stat="level" minValue="60" />
        </StatRules>
      </ItemRule>
	  
	  <!-- Salvages everything else level 60 -->
      <ItemRule description="Salvage Everything">
        <StatRules>
		  <Rule quality="Magic1" stat="level" minValue="61" />
        </StatRules>
      </ItemRule>
    </Category>
	
	<!--Sells everything else -->
    <Category ruleType="Sell">
      <ItemRule description="Sell Everything">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
    </Category>
  </Categories>
</ItemRules>

Thank you for your hard work, I'll update it with the new changes :D

hey man will you be updating for new db

Sure, anyway all profiles work with new db, just maybe some rules are outdated or need to be with higher stat values.
 
Kind of noob, but how do I install the XML file as a plugin? all of the plugins that work for me are folders :/
 
Kind of noob, but how do I install the XML file as a plugin? all of the plugins that work for me are folders :/

These are loot rules and can't be considered as plugins, you have to put inside rules folder and then select them via db settings tab.
 
Hey mate I still carnt get db picking loot up with the salvage 59-60 sell everything else rules any ideas ? Would love to have this working again cheers in advance
 
UP it's possible to keep only legs (70lvl) and salvage all rares/magics items ?
 
you're necroing a thread from 2012 you know that right?
 
Back
Top