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)

man can you make a code for keep yellow weapons/armors? bot dropped it but sell all armors and weapons..

thanks!
 
Also can you just add anywhere in the script "keep" exquistite essences and tears cause I think its selling them

Does it matter where in the file you add the keep "item specific name"??

i think it should place between mark-up <Category ruleType="Keep"> like this:
PHP:
<Category ruleType="Keep">
         <ItemRule itemName="Exquisite Essence" description="Purple Essence" />
         <ItemRule itemName="Iridescent Tear" description="Yellow Tear" />
</Category>
 
<Category ruleType="PickUp">
<ItemRule itemName="Tome of Secrets" stack="1" />
</Category>


<Category ruleType="Keep">
<ItemRule itemName="Tome of Secrets" stack="1" />
</Category>


This one for Tome of Secrets ?
 
blacksmithing plans

Hi there, I just wanted to share my loot rules profile, this might be my first contribution to the community so be nice with me :3.

What does this loot rules?

  • You can salvage magic rings and amulet level 59 or above.
  • You can salvage magic gear level 60.
  • You can keep legendaries regardless stats.
  • You can keep rare rings and amulets regardless stats.
  • You can keep gems.
  • You can keep artisan crafting related items (tomes and pages).
  • You can keep mythic health potions.
  • You can sell everything else there isn't in this list.

Known issues

Right now, I can't figure out how to filter follower items, so with this profile will automatically sell those. I might use rounded values, but 59 ish items would be salvaged and giving wishful essence (44g)

Attachment:
View attachment 43504

Code:
PHP:
<?xml version="1.0" encoding="utf-8" ?>

<ItemRules name="Default Item Rules" useRoundedValues="false">
  <!-- The order in which item rules are evaluated. Typically, this is fine for almost all rule sets. 
  However, you may want to switch things around sometimes if you want to force-sell things that may match keep rules. -->
  <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" />
      
      <!-- Gems -->
      <ItemRule itemName="*Ruby*" stack="1" />
      <ItemRule itemName="*Emerald*" stack="1" />
      <ItemRule itemName="*Topaz*" stack="1" />
      <ItemRule itemName="*Amethyst*" 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>
      <!-- Keep legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Legendary">
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
    </Category>
    
    <!-- Salvages everything that is 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="59" />
        </StatRules>
      </ItemRule>
      
      <!-- Salvages everything else that is level 60 -->
      <ItemRule description="Salvage Everything">
        <StatRules>
          <Rule quality="Magic1" stat="level" minValue="60" />
        </StatRules>
      </ItemRule>
    </Category>
    
    <!--Sells everything else -->
    <Category ruleType="Sell">
      <ItemRule description="Sell Everything">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
    </Category>
  </Categories>
</ItemRules>

As javiito1990 requested:
PHP:
    <Category ruleType="Keep">
      <ItemRule itemBaseType="Jewelry" description="Magic jewelry">
        <StatRules>
          <Rule quality="Magic1" stat="level" minValue="60" />
        </StatRules>
      </ItemRule>
    </Category>

Modified profile that keeps rare items lvl 50 or above, legendary items regardless stats:

View attachment 43597

Modified profile that keeps rare items lvl 50 or above, legendary items regardless stats, also keeps magic find and gold find items (min 15%) :

View attachment 43684

Click like if you liked any profile :3.

awesome profile i love running it. thank you so much. i noticed my bot skipping a set of bs plans. do you think you could add something so it doesnt skip or sell those?
 
<Category ruleType="PickUp">
<ItemRule itemName="Tome of Secrets" stack="1" />
</Category>


<Category ruleType="Keep">
<ItemRule itemName="Tome of Secrets" stack="1" />
</Category>


This one for Tome of Secrets ?

ill try now,ty
 
Thx for this great work.. its really awesome and much extra money.

But! as we know lvl 59 crafting material worth almost nothing so its better to sell not so salvage....

So my question is.
Is it posible to make this loot rule to sell item belove lvl 60 and only salvage lvl 60 items?
 
Thx for this great work.. its really awesome and much extra money.

But! as we know lvl 59 crafting material worth almost nothing so its better to sell not so salvage....

So my question is.
Is it posible to make this loot rule to sell item belove lvl 60 and only salvage lvl 60 items?

I have tried several times how to figure out to do what you say, and this is my conclusion:

if I set item level minimum value to 61, sometimes items 60 are considered item level 59 and then being sold to the vendor, anyway some 59 are considered item level 61 (item level is a bitch) and then being salvaged.
if I set item level minimum value to 61 with rounded values, nothing solves and some 59 still are considered item level 60.
if I set item level minimum value to 62, all 59 considered item level 60 are being sold, but also some items level 60 are being sold in this process (between 8 - 9).
if I set item level minimum value to 62 with rounded values, all 59 considered item level 60 are being sold, but also some items level 60 are being sold in this process (less than the anterior case, like 2 or 3).

For now I think is ok the profile as it is.
 
Can you make it pick up Patterns?

I just was watching it and happend to see a yellow pattern drop but it never picked it up. I had to manually pick it up...

i assume legandary patterns are the same
 
Question: Could anyone here please tell me how I can instruct my character to sell everything he finds except maybe uniques? OP's posting at the beginning says everything else is sold. But my character doesn't sell anything after finishing Core of Arreat runs. He just goes to the stash and sits there. :(


Now my character keeps running back to the stash and staring at it!
 
Last edited:
hi man, the bot dropped a yellow exalted shield plan and doesn't get , can you do a code for keep blacksmith plans? thank u!
 
Question: Could anyone here please tell me how I can instruct my character to sell everything he finds except maybe uniques? OP's posting at the beginning says everything else is sold. But my character doesn't sell anything after finishing Core of Arreat runs. He just goes to the stash and sits there. :(


Now my character keeps running back to the stash and staring at it!

I've updated requirements in first post, nevertheless atop of the profile there is a comment with the problem and how to solve it.

hi man, the bot dropped a yellow exalted shield plan and doesn't get , can you do a code for keep blacksmith plans? thank u!

Done :3, updated version to 1.12.
 
on demonbuddy 100 it wont salvage it just stuck near the saalvage table:S

Maybe it wont stuck anymore dont know let lets see some other full inventory.

Useing ur lootrule like 3 days and there was no problem before 100 db
 
on demonbuddy 100 it wont salvage it just stuck near the saalvage table:S

Maybe it wont stuck anymore dont know let lets see some other full inventory.

Useing ur lootrule like 3 days and there was no problem before 100 db

blacksmith max lvl?
 
I'm having the same problem.

Both my demon hunter and monk will not salvage items. I'm doing Sarkoth runs, and when its time to salvage or sell,they both just run up to the blacksmith. After a few seconds, they'll run back towards the town portal a little, and run back to the blacksmith. This continues in a loop, even if I stop the bot and start it again or quit out and start a new game.
The only way around it is to stop the bot, manually salvage my blue items and then start the bot and it continues as normal... untill it's time to sell and salvage again.

The problem happens with all 3 sets of rules in this thread.

Anyone know why this is happening? Or if I can stop it?
 
Script itself is really good one, thanks for making it. Sadly, I have the same problem as Pocok and johnnyspliff.
 
I'm having the same problem.

Both my demon hunter and monk will not salvage items. I'm doing Sarkoth runs, and when its time to salvage or sell,they both just run up to the blacksmith. After a few seconds, they'll run back towards the town portal a little, and run back to the blacksmith. This continues in a loop, even if I stop the bot and start it again or quit out and start a new game.
The only way around it is to stop the bot, manually salvage my blue items and then start the bot and it continues as normal... untill it's time to sell and salvage again.

The problem happens with all 3 sets of rules in this thread.

Anyone know why this is happening? Or if I can stop it?


Have the same problem with my WD
 
Back
Top