Jump to content

Adventure Time: The Secret of the Nameless Kingdom [PS3] .PAK and .GPU


Recommended Posts

  • Members
Posted

Just wondering if anyone knows how to extract data from these .pak/.gpu files

The .gpu files sometimes contain more data than the .pak files and are usually accompanied together but sometimes the .pak files will be on their own.

 

Here are some samples 

https://gofile.io/d/6Ff0Rb

  • Supporter
Posted

I just recently modified my Shantae Half Genie Hero pak BMS script to making it work with your samples (PS3 is using big endian)

get HEADER_SIZE long
endian guess HEADER_SIZE
get FILES long

for i = 0 < FILES
	getDstring DUMMY 16
	get OFFSET long
	get SIZE long
	get NAME string
	
	math OFFSET + HEADER_SIZE
	math OFFSET + 0x40
	
	string NAME R ":" "/"
	
	log NAME OFFSET SIZE
	
	padding 8
next i

Unfortunately as for the GPU files, due to them are being in big endian, that means none of them works with the wfLZEx tool.
Even the files from the extracted pak archives.
 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...