Help me unpack .pak file in Ghost X Ultimate

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
sfdjkl
Posts: 4
Joined: Tue Oct 11, 2022 2:53 pm

Help me unpack .pak file in Ghost X Ultimate

Post by sfdjkl »

I found the game I played when I was young and am analyzing it.
But it's hard because you don't know anything.
What I found is that there are .smd files and .png files in arms.pak.
https://drive.google.com/file/d/1TOjV0T ... sp=sharing
This is arms.pak file.
I just want to see some parts of this game.
Plz help me.
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Help me unpack .pak file in Ghost X Ultimate

Post by Ekey »

Code: Select all

# Ghost X Ultimate (PAK) format
# script for QuickBMS http://quickbms.aluigi.org

idstring "PGFN"
get VERSION long #2
goto 24
get FILES long

for i = 0 < FILES
   get NSIZE long
   get OFFSET long
   get SIZE long
   get NEXT_OFFSET long
   getdstring NAME NSIZE
   log NAME OFFSET SIZE
   goto NEXT_OFFSET
next i
sfdjkl
Posts: 4
Joined: Tue Oct 11, 2022 2:53 pm

Re: Help me unpack .pak file in Ghost X Ultimate

Post by sfdjkl »

Thank you so much!