Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Weird .PAC with models and animations

Post questions about game models here, or help out others!
Post Reply
asdasd123
beginner
Posts: 22
Joined: Sun Jun 14, 2015 4:07 pm
Has thanked: 13 times
Been thanked: 3 times

Weird .PAC with models and animations

Post by asdasd123 »

Hi,

I've been trying to extract models from a game:

- Inside the .CPK i've found these weird .PAC.
- No program was able to open/extract the .PAC (Noesis, PACExtracter, xbcompression...)
- Opening the .PAC files with HxD I can see that they have Meshes

I know you guys are amazing when facing a new challenge, so can anyone help me extract the models from the files?

Sample:
http://www.mediafire.com/download/t0duw ... d5/pok.pac
http://www.mediafire.com/download/6ein1 ... 8w/pik.pac
Last edited by asdasd123 on Sat Nov 21, 2015 7:28 am, edited 3 times in total.
barti
veteran
Posts: 148
Joined: Sun Apr 01, 2012 12:44 pm
Has thanked: 51 times
Been thanked: 102 times

Re: [PSP] Weird .PAC with models and animations

Post by barti »

Fortunately it's just a very basic container format.

QuickBMS script:

Code: Select all

get FILES short
get DUMMY short
get PACSZ long

for i = 0 < FILES
	getdstring NAME 32
	get OFFSET long
	get SIZE long
	log NAME OFFSET SIZE
next i
asdasd123
beginner
Posts: 22
Joined: Sun Jun 14, 2015 4:07 pm
Has thanked: 13 times
Been thanked: 3 times

Re: [PSP] Weird .PAC with models and animations

Post by asdasd123 »

You sir have my thanks!

And since I can't repay you, you have my word that I'll repay the kindness by donating to the poor or doing some charity.

Once again, thanks!
Post Reply