Exterminator wrote:
Hello, I need help with the .dat files of Crash Twinsanity 3D for j2me they look very easy to extract.
I attached an example could someone refer me to a script or create one?
you can use this QuickBMS script for extract file from this archive
its my first script i created.
files from this archive don't have name, but most of them are png files, so I also used png extension for all extracted files, (in bottom of file there is 2 other file but i can't find out what is these file are)
Code:
endian big
get FILENUM short
xmath OFFSET "(FILENUM * 2) + 2"
for i = 1 <= FILENUM
get FULLSIZE short
SET NAME STRING i
STRING NAME + ".png"
log NAME OFFSET FULLSIZE
math OFFSET += FULLSIZE
next i
hope its help