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

loot rules

Roflkoptor

Member
Joined
Apr 6, 2012
Messages
119
Reaction score
0
loot rules , need some assistance

hi ,
i want to salvage only blue 60+ items and sell any blue below 60 ,
i want to sell rare items to vendor any level

i tried some things but it keep salvage rare items too, not all tho ( i guess 60+rare's )

HTML:
    <Category ruleType="Salvage">
      <!-- Salvage only blue items and Sell rares! (since you get more gold from rare items by vendor , and buy cheap Tears from AH) -->
      <ItemRule description="ilvl 60+ item">
        <StatRules>
          <Rule stat="Level" minValue="60" />
          <Rule stat="Quality" value="Magic1" />                   
        </StatRules>
      </ItemRule>
    </Category>

    <Category ruleType="Sell">
      <ItemRule description="Sell All crappy rare">
        <StatRules>
          <Rule stat="Quality" value="Rare4" />
        </StatRules>
      </ItemRule>
      <ItemRule description="Sell All Blue below 60">
        <StatRules>
          <Rule stat="Quality" value="Magic1" />   
        </StatRules>
      </ItemRule>
    </Category>

is it possible to put more <rule stat=""/> in salvage and sell categories
 
Last edited:
As far as I know, this can't be done with the current script. Also, it's something I'd like to be able to do.

Actually, thinking about it, you could... a pain in the butt way around it:

<Priority priority1="Keep" priority2="Salvage" priority3="Sell" />
KEEP Rare4+
SALVAGE Magic1 level 60+
SELL Magic1

That would do it, but you'd have to empty out all the rares from your stash every so often and sell them yourself.

It's probably best to just sell the rares and salvage the rest, until a means to allow for finite ranges is added to the script.
 
Back
Top