Quote (Derisionlol @ Jul 7 2024 09:10am)
the github project D2-MapID-Finder (not sure if I'm allowed to link out here) shows the Map ID offset at 171. you can search for that project and see the code under src/core/D2CharFileParser. if you don't want to download a random tool you can grab any general hex viewer like hexedit and open up your char save and go to that offset. you could verify it's right by setting the seed manually to something easy to find like 100000000 (use command line option "-seed 100000000")
For all future visitors of this page looking for the same information:
I did not want to download a tool off the internet and instead downloaded visual studio code (VSC), a microsoft tool that's super prolific in the coding community and easy to use.
Then i downloaded in VSC a hex editor in the extention tab.
Open c:/users/your profile/saved games/d2r/character name. map in VSC
Click "Open Anyway" button in VSC and use Hex Editor to display
in row 00000010 click the 04 hexadecimal, in the data inspector you will see a bunch of data and the number you want is uint32/int32 which is 8-10 numbers, this is your seed. When you type -seed "xxxxxxxx" (the x's being the numbers in the uint32/int32 field) in the end of the Target after the quotations, you will now have access to the exact seed map you enjoy.
https://imgur.com/a/CDeAk8EThis post was edited by liniculus on Jul 7 2024 08:20pm