Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A build calculator for Diablo 4.

License

NotificationsYou must be signed in to change notification settings

Lothrik/diablo4-build-calc

Repository files navigation

A build calculator forDiablo 4.

frequently asked questions

Where does this data come from?

With a few exceptions: It all comes directly from the game; I do the data mining myself.

The tools I use for this are not currently public.

You can useCASCExplorer to extract your own copy of the game assets.

Parsing the proprietary file formats within is an exercise left to the reader.

I recommend examining the.stl files first.

Blizzard uses a relatively simple hash function to reference just about everything, including other files.

uintHashFunctionExample(stringinput){input=input.ToLowerInvariant();uinthash=0;for(inti=0;i<input.Length;i++)hash=(hash<<5)+hash+input[i];returnhash;}

How do I run a copy of this site locally?

Launch any web server withdiablo4-build-calc as the root directory:

cd ./diablo4-build-calc/python3 -m http.server8000

What are the attack speed multipliers I see listed on some skills?

Each skill has its own unique attack animation. Blizzard occasionally wants certain skills to be faster, or slower. Rather than rework the animation directly they simply multiply how quickly your character executes that specific skill.

I datamine that multiplier as the "attack speed multiplier" you see on certain skills.

One skill having a significantly higher multiplier than another doesn't necessarily mean that skill is faster, just that it was slower than it currently is at some point in the past.

Just as an example, Maul was buffed between build 39858 and 41428 to be 10% faster — that change can be seenhere.

Can I give you money for this?

You're free to do whatever you want, I do have aPatreon. I'm not selling you anything though.

I found a bug or want to request a feature, what should I do?

You canopen an issue or message me on Discord.


[8]ページ先頭

©2009-2025 Movatter.jp