snickerbockers / fp-assets

Extractor/archiver tool for Freedom Planet's Assets.dat file.
The Unlicense
5 stars 1 forks source link

Extract Assets.dat from NOT A HERO #3

Closed Starastel closed 3 years ago

Starastel commented 4 years ago

I need to extract data from assets.dat from NOT A HERO. Thank you in advance! Below are files from the Linux and Windows versions of the game. Windows Files Linux Files

snickerbockers commented 3 years ago

you need to figure it out by reverse-engineering the game's executable. When I did this for Freedom Planet, it was relatively easy because mp2 accidentally shipped debug symbols in the linux build. IDK if he still makes that mistake, but one other possible way to figure this out would be to use a tool like strace to record all the system calls it makes; since it needs the offset block to load the game's assets, it should have to seek there first before doing any reads.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐ On Thursday, September 10, 2020 2:38 AM, Starastel notifications@github.com wrote:

I need to extract data from assets.dat Not a Hero. I know that in OFFSETS_START I need to find the offset from which the game reads data. How can I find OFFSETS_START (and the rest) on my own?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.

Starastel commented 3 years ago

Ok, i try it. Thanks.