Important information: this site is currently scheduled to go offline indefinitely by end of the year.

PC Double Dragon Neon .PAK format?

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
MisterPrawn
beginner
Posts: 28
Joined: Thu Jan 30, 2014 5:36 am
Has thanked: 2 times

PC Double Dragon Neon .PAK format?

Post by MisterPrawn »

So I tried using the QuickBMS script for the Double Dragon Neon .PAK format from here: viewtopic.php?f=10&t=10523
Unfortunately, it spits out an empty .GR2 file upon using the extractor. I'm assuming the PC version of the game uses a different compression format compared to the XBLA and PSN versions of the game, so if anyone can provide a proper QuickBMS script for the PC version of the .PAK files, it'd be greatly appreciated.

Here's a sample of what I'm talking about: http://filesmelt.com/dl/abobo.pak

Thanks!
User avatar
Haoose
mega-veteran
mega-veteran
Posts: 280
Joined: Tue Mar 01, 2011 9:34 pm
Has thanked: 70 times
Been thanked: 193 times
Contact:

Re: PC Double Dragon Neon .PAK format?

Post by Haoose »

Check Duck Tales PAK-tools
-= GP-team =-
Image
MisterPrawn
beginner
Posts: 28
Joined: Thu Jan 30, 2014 5:36 am
Has thanked: 2 times

Re: PC Double Dragon Neon .PAK format?

Post by MisterPrawn »

While it seems to load the .pak files, the program freezes upon extracting the files and gives me some unreadable .gr2 files. Any possible fix for the DuckTales PAK Tools by any chance?
loriscangini
advanced
Posts: 53
Joined: Sun Jan 09, 2011 3:45 pm
Has thanked: 1 time
Been thanked: 3 times

Re: PC Double Dragon Neon .PAK format?

Post by loriscangini »

I found a solution!

In the script you found simply edit the first line, instead of "endian big" write "endian little".

The "new" script will be:

Code: Select all

endian little
get filetable long
get files long
get dummy longlong
math filetable + 0x40
for i = 0 < files
get offset long
math offset + filetable
get size long
getct name string 0x3a
getct filename string 0x00
savepos off
math b = 0x4
math a = off
math a % 0x4
if a == 0
get dummy longlong
else
math b - a
math off + b
goto off
get dummy longlong
endif
log filename offset size
next i  
(Script taken from here: viewtopic.php?f=10&t=10523)
MisterPrawn
beginner
Posts: 28
Joined: Thu Jan 30, 2014 5:36 am
Has thanked: 2 times

Re: PC Double Dragon Neon .PAK format?

Post by MisterPrawn »

It worked! Thanks :D
lavrov
ultra-n00b
Posts: 7
Joined: Sat Oct 04, 2014 4:39 pm
Has thanked: 1 time
Been thanked: 7 times
Contact:

Re: PC Double Dragon Neon .PAK format?

Post by lavrov »

Linked theme: viewtopic.php?f=32&t=10687
I wrote a console tool for that (https://github.com/artlavrov/paktools).
Post Reply