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

Dumb loot rules question.

MrWizard516

Member
Joined
Jan 18, 2011
Messages
586
Reaction score
5
I want to make bot sell ALL gems it picks up rather then stashing them. Is this the correct way of doing that?

Code:
    <Category ruleType="Sell">

      <ItemRule>
        <StatRules>
                  <!--Sells everything else -->
                  <Rule quality="Magic1" />

                  <!-- Gems -->
                  <ItemRule itemName="*Ruby*" stack="1" />
                  <ItemRule itemName="*Emerald*" stack="1" />
                  <ItemRule itemName="*Topaz*" stack="1" />
                  <ItemRule itemName="*Amethyst*" stack="1" />
                  
        </StatRules>
      </ItemRule>
    </Category>

  </Categories>
  
</ItemRules>
 
I want to make bot sell ALL gems it picks up rather then stashing them. Is this the correct way of doing that?

Code:
    <Category ruleType="Sell">

      <ItemRule>
        <StatRules>
                  <!--Sells everything else -->
                  <Rule quality="Magic1" />      
        </StatRules>
      </ItemRule>

      <!-- Gems -->
      <ItemRule itemName="*Ruby*" stack="1" />
       <ItemRule itemName="*Emerald*" stack="1" />
       <ItemRule itemName="*Topaz*" stack="1" />
       <ItemRule itemName="*Amethyst*" stack="1" />
    </Category>

  </Categories>
  
</ItemRules>

Like that.
 
Back
Top