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.
Help me unpack .pak file in Ghost X Ultimate
-
- Posts: 1383
- Joined: Sat Aug 09, 2014 2:34 pm
Re: Help me unpack .pak file in Ghost X Ultimate
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
-
- Posts: 4
- Joined: Tue Oct 11, 2022 2:53 pm
Re: Help me unpack .pak file in Ghost X Ultimate
Thank you so much!