how to extract this file(GKP?)?
- 
				wendi14
 - Posts: 6
 - Joined: Tue Dec 04, 2018 7:25 am
 
how to extract this file(GKP?)?
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?)?
simple format
use quickbms with attached script
			
			
									
						
										
						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?)?
akintos wrote:simple formatCode: 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.