how to extract this file(GKP?)?

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
wendi14
Posts: 6
Joined: Tue Dec 04, 2018 7:25 am

how to extract this file(GKP?)?

Post by wendi14 »

some one can hlep how to extract this file(GKP?)?
akintos
Posts: 88
Joined: Tue May 08, 2018 7:48 pm

Re: how to extract this file(GKP?)?

Post by akintos »

simple format

Code: Select all

idstring "GKP\x00"

get UNK1 long
get UNK2 long

get FILECOUNT long

for i = 0 < FILECOUNT
   get FOFFSET long
   get FSIZE long
   get FNAME string
   
   log FNAME FOFFSET FSIZE
next i


use quickbms with attached script
wendi14
Posts: 6
Joined: Tue Dec 04, 2018 7:25 am

Re: how to extract this file(GKP?)?

Post by wendi14 »

akintos wrote:simple format

Code: Select all

idstring "GKP\x00"

get UNK1 long
get UNK2 long

get FILECOUNT long

for i = 0 < FILECOUNT
   get FOFFSET long
   get FSIZE long
   get FNAME string
   
   log FNAME FOFFSET FSIZE
next i


use quickbms with attached script



thank you! it's work. :mrgreen: