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

Item confusing

SoothingShard

New Member
Joined
Nov 16, 2014
Messages
28
Reaction score
0
Hello,
I am trying to get the bot to pick up weapons with 120% increased physical damage but am having a slight issue. I am unsure about what exact code would be typed into affixes?

Or have I lost the plot. I read the guide but still confused.

Thanks
 
yeah that is giving me issues too hell i dont even know if im supposed to activate the id/sell filters in the bot
<--- newb :D
 
Be sure to thoroughly read this: https://www.thebuddyforum.com/exile...y-guides/157401-item-filter-editor-guide.html

If you are picking up all rares, than you would add something like this to your save category in your character's "StaticItemFilter.json" file...

Code:
   {
        "Description": "Rare Weapons with 120+ Physical",
        "Enabled": true,
        "Types": [
          "/Weapons/"
        ],
        "Rarities": [
          2
        ],
        "Affixes": [
          "TotalStat LocalPhysicalDamagePosPct Value >= 120 Required"
        ]
      },
 
All the stats are here https://gist.github.com/anonymous/0b3351ae6bc51cec987c
Keep in mind those are not affixes that are taken into account, but total stats, including implicit stats on the item and if two modifiers give the same stat.

A lot of stats have similar and misleading names (a lot having to do with stats only found on unique items), so its best to use Inventory Explorer to check the stat names on an item you already have.
 
Back
Top