DEV Community

robot1996
robot1996

Posted on

Building a small fan-made Diablo IV loot filter finder

When I looked for Diablo IV loot filter presets, I kept running into the same problem: useful filter codes were scattered across videos, Discord posts, forum comments, and build planner notes. It was hard to quickly answer basic questions like:

  • Is there a filter preset for my class?
  • Is it meant for leveling, endgame, bossing, or farming?
  • Where did the code originally come from?
  • Can I copy the import code without digging through a long page?

So I built a small web tool: Diablo4LootFilter.

It is a fan-made finder for Diablo IV loot filter presets and import codes. The goal is not to replace the original creators. The goal is to make presets easier to discover, with source attribution and a clear path back to the original source.

What the tool does

The first version focuses on a simple browse-and-copy flow:

  • filter presets by class, stage, and farming goal
  • view source-attributed preset details
  • copy import codes faster
  • open the original source when attribution is available
  • allow correction or removal requests through the support contact

I intentionally kept the scope narrow. For a game utility like this, trust matters more than adding too many features early.

Product decisions I made

A few choices were important for keeping this acceptable as a community resource rather than a spammy scraper:

  1. Source attribution first

    If a preset comes from a creator, guide, or public resource, the page should point back to that source.

  2. No official wording

    The site is fan-made and is not affiliated with Blizzard. I avoid words like “official”, “approved”, or “verified”.

  3. No overclaiming import codes

    Some codes may need in-game verification as the season changes. The site should not imply that every code is guaranteed to work forever.

  4. Simple feedback loop

    If a creator wants attribution changed or a code removed, the site provides a contact path.

Implementation notes

The site is built as a lightweight content/tool page rather than a full community platform. That keeps the first version easy to crawl, easy to index, and easy to update.

The main technical focus was:

  • fast page load for search traffic
  • structured pages for filter detail pages
  • event tracking for important actions like filter selection and copy actions
  • sitemap and indexability checks before doing any promotion

I wanted to avoid the common launch mistake where you send traffic before you can measure whether people actually use the tool.

What I am looking for feedback on

If you play Diablo IV or build small niche tools, I would love feedback on:

  • whether this finder format is useful
  • what metadata matters most for loot filter presets
  • whether source attribution is clear enough
  • what would make import-code pages more trustworthy

Link: https://diablo4lootfilter.com/

Disclaimer: Diablo4LootFilter is a fan-made project and is not affiliated with Blizzard Entertainment.

Top comments (0)