Crash Twinsanity .dat

Doubts, help and support about QuickBMS and other game research tools
Exterminator
Posts: 4
Joined: Wed Aug 21, 2019 5:46 pm

Crash Twinsanity .dat

Post by Exterminator »

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?
Haz
Posts: 4
Joined: Thu Nov 12, 2020 12:06 pm

Re: Crash Twinsanity .dat

Post by Haz »

(.dat) what does it mean
gameside
Posts: 66
Joined: Sun Nov 08, 2020 1:07 pm

Re: Crash Twinsanity .dat

Post by gameside »

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
Exterminator
Posts: 4
Joined: Wed Aug 21, 2019 5:46 pm

Re: Crash Twinsanity .dat

Post by Exterminator »

Thank you so much it worked.