Diddy Kong Racing assets.bin File

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Larsenv
Posts: 137
Joined: Thu Jun 04, 2015 11:20 pm

Diddy Kong Racing assets.bin File

Post by Larsenv »

aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Diddy Kong Racing assets.bin File

Post by aluigi »

The format is not very clear, if you use this script you will extract almost all the files but there is still a small unreferenced space after the last file and the format of these files is unknown (compressed?)

Code: Select all

get FILES long
for i = 0 <= FILES  # last element is zero
    get DUMMY short
next i
for i = 0 < FILES
    get OFFSET long
    get SIZE long
    log "" OFFSET SIZE
next i