it's a flat container start with a 5300 bytes pointer list and followed by the data section.
https://mega.nz/#!zNYHjCIC!PX4IRb3xdQJN ... qgFo7bClBo
have no idea what compression type it has with those different headers...
Culdcept revolt-3ds, subfiles compression type?
-
- Posts: 11
- Joined: Sun Jan 01, 2017 1:07 am
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Culdcept revolt-3ds, subfiles compression type?
Honestly I don't know if each file is compressed because the one at offset 0x0ed0dec is clearly non-compressed.
Maybe each file has a sort of header but the situation seems very confused there, probably there is an index file with names and other information.
In the meantime let's extract the data:
Maybe each file has a sort of header but the situation seems very confused there, probably there is an index file with names and other information.
In the meantime let's extract the data:
Code: Select all
get FILES long
math FILES / 8
goto 0
for i = 0 < FILES
get OFFSET long
get SIZE long
log "" OFFSET SIZE
next i