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

Loot Filter Problem

Nizaden

New Member
Joined
Nov 3, 2013
Messages
62
Reaction score
0
I am trying to get it so that it does the following:

Loots all Magic/Rare/Unique/Quest/Skill Gems/Currency

Stashes all Uniques/Quest/Skill Gems/Currency/Rares with 6 sockets and 5+ Links

Sells Everything Else.

The problem is the bot doesn't sell Magic, Rares and sometimes even Normal Items.

My Filter is set to the follow:

Code:
[
  {
    "Description": "Default pickup filter.",
    "Type": 1,
    "Filters": [
      {
        "Description": "Pickup all maps.",
        "Enabled": true,
        "Types": [
          "/Maps/"
        ]
      },
      {
        "Description": "Pickup all important items by rarity.",
        "Enabled": true,
        "Rarities": [
          3,
          6,
          5,
          2,
          1
        ]
      },
      {
        "Description": "Pickup all quality skill gems.",
        "Enabled": true,
        "Rarities": [
          4
        ],
        "MinQuality": 1
      },
      {
        "Description": "Pickup all non-common, no-quality skill gems.",
        "Enabled": true,
        "Names": [
          "Fireball",
          "Spark",
          "Sweep",
          "Ground Slam",
          "Cleave",
          "Double Strike",
          "Dual Strike",
          "Burning Arrow",
          "Heavy Strike",
          "Glacial Hammer",
          "Freezing Pulse",
          "Split Arrow",
          "Raise Zombie",
          "Ice Nova",
          "Leap Slam",
          "Shield Charge",
          "Whirling Blades",
          "Cold Snap",
          "Detonate Dead",
          "Poison Arrow",
          "Ice Shot",
          "Flicker Strike",
          "Ice Spear",
          "Infernal Blow",
          "Shock Nova",
          "Viper Strike",
          "Explosive Arrow",
          "Rain of Arrows",
          "Firestorm",
          "Puncture",
          "Lightning Arrow",
          "Bear Trap",
          "Fire Trap",
          "Reave",
          "Ethereal Knives",
          "Decoy Totem"
        ],
        "NameRegex": false,
        "NameMatchAnyRatherThanAll": false,
        "Rarities": [
          4
        ],
        "MaxQuality": 0
      },
      {
        "Description": "Pickup all items that can vendor for a Chromatic Orb.",
        "Enabled": true,
        "SocketColors": [
          "R-G-B"
        ]
      },
      {
        "Description": "Pickup all 5/6-link items.",
        "Enabled": true,
        "Rarities": [
          2,
          3
        ],
        "MinSockets": 6,
        "MinLinks": 5
      },
      {
        "Description": "Pickup all 6-socket items.",
        "Enabled": true,
        "Rarities": [
          0,
          2,
          3
        ],
        "MinSockets": 6,
        "MinLinks": 6
      },
      {
        "Description": "Pickup all items that can vendor for an Armourer's Scrap, Blacksmith Whetstone, or Glassblower's Bauble.",
        "Enabled": true,
        "Rarities": [
          0,
          1,
          2
        ],
        "MinQuality": 20
      },
      {
        "Description": "Pickup all quality flasks.",
        "Enabled": true,
        "Types": [
          "/Flasks/"
        ],
        "Rarities": [
          3
        ],
        "MinQuality": 1
      },
      {
        "Description": "Pickup all utility flasks.",
        "Enabled": true,
        "Types": [
          "FlaskUtility"
        ],
        "Rarities": [
          3
        ]
      }
    ]
  },
  {
    "Description": "Default stash filter.",
    "Type": 3,
    "Filters": [
      {
        "Description": "Stash all currency, uniques, and skill gems.",
        "Enabled": true,
        "Rarities": [
          5,
          3,
          4,
          6
        ]
      },
      {
        "Description": "Stash all 6 socket items.",
        "Enabled": true,
        "Rarities": [
          2,
          0,
          1
        ],
        "MinSockets": 6,
        "MaxSockets": 6,
        "MinLinks": 6,
        "MaxLinks": 6
      },
      {
        "Description": "Stash all 5+ linked items.",
        "Enabled": true,
        "Rarities": [
          2
        ],
        "MinSockets": 6,
        "MaxSockets": 6,
        "MinLinks": 5,
        "MaxLinks": 6
      },
      {
        "Description": "Stash all maps and utility flasks",
        "Enabled": true,
        "Types": [
          "/Maps/",
          "FlaskUtility"
        ]
      },
      {
        "Description": "Stash all flasks that will not vendor for a bauble. (Disabled)",
        "Enabled": false,
        "Types": [
          "/Flasks/"
        ],
        "MinQuality": 1,
        "MaxQuality": 19
      }
    ]
  },
  {
    "Description": "Default vendor filter.",
    "Type": 2,
    "Filters": [
      {
        "Description": "This filter will sell all normal/magic chromatic items that are 3L and only have 5 or fewer sockets",
        "Enabled": true,
        "Rarities": [
          0,
          1,
          2
        ],
        "SocketColors": [
          "R-G-B"
        ]
      }
    ]
  }
]
 
You don't have a Sell filter for them.
Add another filter under 'Default vendor filter' and check Normal, Magic, Rare.

When you're in camp, Stash filters are executed first, then sell (because they're in that order top to bottom). Therefore whatever is left in your inventory after stashing is available for selling, but you need a filter to tell to sell, which is what the above does.
 
Back
Top