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?
Crash Twinsanity .dat
-
- Posts: 4
- Joined: Thu Nov 12, 2020 12:06 pm
Re: Crash Twinsanity .dat
(.dat) what does it mean
-
- Posts: 66
- Joined: Sun Nov 08, 2020 1:07 pm
Re: Crash Twinsanity .dat
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: Select all
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
-
- Posts: 4
- Joined: Wed Aug 21, 2019 5:46 pm
Re: Crash Twinsanity .dat
Thank you so much it worked.