d2s
d2s copied to clipboard
Diablo II file format binary parser written in Go.
Any consideration on supporting save file format for D2R? I found [**this** post](https://d2mods.info/forum/viewtopic.php?t=67135) on Phrozen Keep > Differences: > > **Version 1 higher (x97 not x96)** > Last dword before...
Hi there! The value of this attribute consists of two parts: 10 bits is the type raised and the next 7 bits is the percentage number. The current implementation does...
Cold and lightning attributes are missing. IDs 51 and 55, respectively. I fixed this problem in my Python library https://github.com/artcom-net/d2lib/issues/2 . If I find the time I will make a...
Hi there! Magic attribute id = 57. now: `Adds 205-205 Poison Damage over 125 Seconds` expected: `100 poison damage over 5 seconds.` I fixed this problem in my Python library...
`item.MagicalNameIDs` should be a fixed length array of 6. if you have a rare w/ 3 prefixes and 1 suffix you'd have an array of size 4 similar to `[143,...
https://github.com/nokka/d2s/blob/master/d2s.go#L800 at offset 48 is an 8 bit version number having one of the following values. 0 = pre-1.08; 1 = 1.08/1.09 normal; 2 = 1.10 normal; 100 = 1.08/1.09...
https://github.com/nokka/d2s/blob/db00d42b850e00cdb96e2e65de85b7ff06f9b787/item.go#L458 Is there a chance there could be more info lurking in this 5 bit value? The decoding appears to just be a count of the number of ones in...