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

Request: Loot profile

morganwoop

New Member
Joined
Dec 9, 2012
Messages
16
Reaction score
0
Hello there i need 3 loot profiles.I don't know how to create one since i am kinda new to this :S
If someone would like to help me out by simply creating just one of the profiles for me without the reward i would prefer if it was number 2 :D

1st profile
I need it to loot:
gold stacks of 100 +
Healing Potions
All gems
Tome of secrets
All recipes
All legendaries
Yellows :rings,amulets,

When inventory full it has to deposit them in the stash and then continue farming.
Everything else should not be picked up

2nd profile
I need it to loot:
gold stacks of 100 +
Healing Potions
All gems
Tome of secrets
All recipes
All legendaries
Yellows :rings,amulets,hands,wrists,shoulders

When inventory full it has to deposit them in the stash and then continue farming.
Everything else should not be picked up

3rd profile
I need it to loot:
gold stacks of 100 +
Healing Potions
All gems
Tome of secrets
All recipes
All legendaries
All yellows other than :2handed weapons,shields,off hands,belts,helms
When inventory full it has to deposit them in the stash and then continue farming.
Everything else should not be picked up

Ty in advance
I can also donate a small amount to the one that completes my request if my request is completed within 1-2days (supposing loot rules work fine)
 
Last edited:
2nd profile, there you go:
Code:
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="morganwoop loot rules" useRoundedValues="true" xmlns="http://tempuri.org/ItemRuleSchema.xsd" xmlns:xsi="http://tempuri.org/ItemRuleSchema.xsd">
  <Priority priority1="Keep" />
  <Categories>
    <Category ruleType="PickUp">
      <!-- Pickup all legendaries -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Legendary"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up gold stacks 100+ -->
      <ItemRule itemName="Gold" stack="100" />
      <!-- Pick up BS plans -->
      <ItemRule itemName="*Plan:*" />
      <!-- Pick up JC designs -->
      <ItemRule itemName="*Design:*" />
      <!-- Pick up gems -->
      <ItemRule itemName="*Flawless Square*" />
      <!-- Pick up potions -->
      <ItemRule itemName="*Health Potion*" />
      <!-- Pick up Tomes of Secrets -->
      <ItemRule itemName="Tome of Secrets" />
      <!-- Pick up rare rings -->
      <ItemRule itemType="Ring">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up rare amulets -->
      <ItemRule itemType="Amulet">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up rare gloves -->
      <ItemRule itemType="Gloves">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up rare bracers -->
      <ItemRule itemType="Bracer">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
        </StatRules>
      </ItemRule>
      <!-- Pick up rare shoulders -->
      <ItemRule itemType="Shoulder">
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
        </StatRules>
      </ItemRule>
    </Category>
    <Category ruleType="Keep">
      <!-- Stash BS plans -->
      <ItemRule itemName="*Plan:*" />
      <!-- Stash JC designs -->
      <ItemRule itemName="*Design:*" />
      <!-- Stash gems -->
      <ItemRule itemName="*Flawless Square*" />
      <!-- Stash Tomes of Secrets -->
      <ItemRule itemName="Tome of Secrets" />
      <!-- Stash armor/weapons -->
      <ItemRule>
        <StatRules>
          <Rule stat="Quality" value="Rare4"/>
        </StatRules>
      </ItemRule>
    </Category>
  </Categories>
</ItemRules>
 
Back
Top