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

REQUEST: need loot rule

sgdgf

New Member
Joined
Nov 18, 2012
Messages
4
Reaction score
0
Hi, i want a loot rule which Loots only ilvl 63 and Jewelry-Recepts (ya know the ones with what u learn new gems you can craft, sorry i have the german client can't tell what it's like in english)

And it should loot every gold which is 20+ and it should loot every legendary, even ilvl 55

i hope you can help me, thx
 
If you use the german client, you have to change itemName="*Design:*" for the german name to be able to work. The rest should work as you've requested:
PHP:
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="sgdgf Rules" useRoundedValues="true" xmlns="http://tempuri.org/ItemRuleSchema.xsd" xmlns:xsi="http://tempuri.org/ItemRuleSchema.xsd">
  <Priority priority1="Keep" />
  <Categories>
    <Category ruleType="PickUp">
      <!-- Pickup legendaries ilevel 55+ -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Legendary"/>
          <Rule stat="Level" minValue="55"/>
        </StatRules>
      </ItemRule>
      <!-- Pickup all lvl 63 -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Magic1"/>
          <Rule stat="Level" minValue="63"/>
        </StatRules>
      </ItemRule>
      <!-- Pickup JC designs -->
      <ItemRule itemName="*Design:*" />
      <!-- Pick up gold (20+ stack) -->
      <ItemRule itemName="Gold" stack="20" />
    </Category>
    <Category ruleType="Keep">
      <!-- Keep legendaries ilevel 55+ -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Legendary"/>
          <Rule stat="Level" minValue="55"/>
        </StatRules>
      </ItemRule>
      <!-- Keep all lvl 63 -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Magic1"/>
          <Rule stat="Level" minValue="63"/>
        </StatRules>
      </ItemRule>
      <!-- Keep JC designs -->
      <ItemRule itemName="*Design:*" />
    </Category>
  </Categories>
</ItemRules>
 
Back
Top