d2jsp
Log InRegister
d2jsp Forums > Diablo II > Diablo 2: Resurrected > D2:R Discussion > Check My Itemfilter
Add Reply New Topic New Poll
Member
Posts: 8,659
Joined: May 24 2020
Gold: 34,140.00
Mar 18 2026 09:49am
Hi all

I made a kind of endgame item filter.
I’m not entirely sure if I’ve covered everything correctly, so I don’t miss out on any epic items.

The basic idea is:
  • Ignore irrelevant things (arrows, low gold, throwing potions)
  • Hide all items by default
  • Show all Set and Unique items (any quality, ethereal or socketed)
  • Show all Rare items (any quality, ethereal or socketed)
  • Show some specific Magic items (any quality, ethereal or socketed)
  • Show some specific White bases, including ethereal or socketed ones


Since I don’t have every item to test against, I can’t fully verify it :/
Any suggestions, optimizations, or other feedback are very welcome!

EDIT: maybe its easier to import the code and check 'read' ingame

Code
{
"name": "MyEndgame",
"rules": [
{
"name": "ignore (basic)",
"enabled": true,
"ruleType": "hide",
"filterEtherealSocketed": false,
"equipmentRarity": [
"lowQuality",
"normal"
],
"equipmentItemCode": [
"gps",
"opl",
"gpl",
"gpm",
"opm",
"ops"
],
"itemCategory": [
"ammo"
],
"itemCode": [
"hp2",
"mp3",
"mp4",
"wms",
"hp1",
"hp4",
"mp1",
"mp2",
"vps",
"hp3"
],
"goldFilterValue": 10001
},
{
"name": "ignore equipment (all)",
"enabled": true,
"ruleType": "hide",
"filterEtherealSocketed": true,
"equipmentRarity": [
"rare",
"lowQuality",
"set",
"unique",
"magic",
"hiQuality",
"normal"
],
"equipmentCategory": [
"acce",
"weap",
"armo"
]
},
{
"name": "show equipment (all set uniques)",
"enabled": true,
"ruleType": "show",
"filterEtherealSocketed": false,
"equipmentRarity": [
"set",
"unique"
],
"equipmentCategory": [
"acce",
"armo",
"weap"
]
},
{
"name": "show equipment (all rare)",
"enabled": true,
"ruleType": "show",
"filterEtherealSocketed": false,
"equipmentRarity": [
"rare"
],
"equipmentCategory": [
"acce",
"armo",
"weap"
]
},
{
"name": "show equipment (magic)",
"enabled": true,
"ruleType": "show",
"filterEtherealSocketed": false,
"equipmentRarity": [
"magic"
],
"equipmentCategory": [
"palad",
"warlo",
"stave",
"acce",
"wands",
"druid",
"circl",
"sorce",
"amazo",
"glove",
"necro",
"barbh",
"shlds",
"armor",
"scept",
"assas"
]
},
{
"name": "show equipment (white sock eth)",
"enabled": true,
"ruleType": "show",
"filterEtherealSocketed": true,
"equipmentRarity": [
"hiQuality",
"normal"
],
"equipmentQuality": [
"exceptional",
"elite"
],
"equipmentCategory": [
"stave",
"wands",
"armo",
"sorce",
"scept",
"assas"
],
"equipmentItemCode": [
"7wc",
"7bl",
"7br",
"6lw",
"7s8",
"7wa",
"7pa",
"6sw",
"amc",
"7sr",
"amf",
"amb",
"7p7",
"7dg",
"72a",
"7kr",
"7st",
"7wh",
"7m7",
"ame",
"7tr",
"amd",
"7di",
"7gm",
"7vo",
"7h7"
]
}
]
}


This post was edited by LennyLinux on Mar 18 2026 09:50am
Member
Posts: 1,420
Joined: Jan 7 2007
Gold: 293.51
Mar 18 2026 10:06am
https://www.icy-veins.com/d2/loot-filter

I used this one since day 1. Works well
Member
Posts: 8,659
Joined: May 24 2020
Gold: 34,140.00
Mar 18 2026 10:13am
https://www.icy-veins.com/d2/loot-filter

I used this one since day 1. Works well


thanks for the input. Looks similar to what I made ^^ (at least thats, what I see)

maybe I ll go with this as well.
Go Back To D2:R Discussion Topic List
Add Reply New Topic New Poll