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

loot

scaredme

New Member
Joined
Aug 10, 2012
Messages
16
Reaction score
0
Hello.
need help a pick lot legendary and green items on bot what i must do ??? some one help me ?? :)
 
You want a lootrules that only pick up legendary and green items?
 
This will do it:

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

<ItemRules name="Default Item Rules" useRoundedValues="true">
  <!-- 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="Sell" priority3="Salvage" />

  <Categories>
    <Category ruleType="PickUp">
      
      <!-- Pick up all Legendary items and higher -->
      <ItemRule>
        <StatRules>
		  <Rule stat="quality" value="Legendary" />
        </StatRules>
      </ItemRule>
	  
    </Category>

    <Category ruleType="Keep">	
      
      <!-- Keep all Legendary items and higher -->
      <ItemRule>
        <StatRules>
          <Rule stat="quality" value="Legendary" />
        </StatRules>
      </ItemRule>
	  
    </Category>
    
  </Categories>
</ItemRules>
 
Back
Top