Culdcept revolt-3ds, subfiles compression type?

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
funion_Ring
Posts: 11
Joined: Sun Jan 01, 2017 1:07 am

Culdcept revolt-3ds, subfiles compression type?

Post by funion_Ring »

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...
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Culdcept revolt-3ds, subfiles compression type?

Post by aluigi »

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:

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