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

Need Help whit DefaultItemRules

Ripperpt

New Member
Joined
Jan 12, 2011
Messages
574
Reaction score
4
HY pps can some one help me make a rule to bot sell everything except Legendary or bether?? its for use in Hell or nightmare mode.

tks
 
I prefer to just not pickup any of the garbage if i'm just going to sell it:

PHP:
    <Category ruleType="PickUp">
      <!-- Pick up all Legendyary items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
    </Category>
    <Category ruleType="Keep">
      <ItemRule ruleType="Keep" description="Legendaries and better">
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
          </Category>
    <Category ruleType="Sell">
      <ItemRule description="Sell Everything">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
    </Category>
 
I prefer to just not pickup any of the garbage if i'm just going to sell it:

PHP:
    <Category ruleType="PickUp">
      <!-- Pick up all Legendyary items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
    </Category>
    <Category ruleType="Keep">
      <ItemRule ruleType="Keep" description="Legendaries and better">
        <StatRules>
          <Rule quality="Legendary" />
        </StatRules>
      </ItemRule>
          </Category>
    <Category ruleType="Sell">
      <ItemRule description="Sell Everything">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
    </Category>

Seems like this will only pick up legendaries.
 
Here you go. For clarification; this picks up everything and sells everything except legendaries. pots gems and books aren't sold.

Update2: Ok it does work. thx :p

UPDATE: Doesnt work, it will stash rares and such and sell blues. :( So basicly it's like the default one.

Thanks, will try this out the coming hour.
 
Last edited:
Here you go. For clarification; this picks up everything and sells everything except legendaries. pots gems and books aren't sold.

It's going to my stash when full and then just sits there.
 
Back
Top