Garfield PS2 .PAK files

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
penguino
Posts: 7
Joined: Thu Oct 11, 2018 4:15 pm

Garfield PS2 .PAK files

Post by penguino »

I want to figure out how to extract from the PAK files from Garfield PS2
If it helps, the game runs on the RenderWare engine
Hope someone here can figure it out
BloodRaynare
Posts: 367
Joined: Fri Mar 10, 2017 7:23 am

Re: Garfield PS2 .PAK files

Post by BloodRaynare »

Here's a BMS script for extracting the files (though bit hacky but it works)

Code: Select all

## Garfield (PS2) PAK extractor script
## By BloodRaynare
## For use with QuickBMS: http://aluigi.altervista.org/quickbms.htm

IDString "PACK"
get INFO_OFF long
get FILES long
goto INFO_OFF
for i = 0 < FILES
   getDString NAME 52
   get OFFSET long
   get SIZE long
   get SIZEDUP long
   log NAME OFFSET SIZE
next i
penguino
Posts: 7
Joined: Thu Oct 11, 2018 4:15 pm

Re: Garfield PS2 .PAK files

Post by penguino »

I tried it and it worked, thank you so much!
disgustingstan
Posts: 1
Joined: Sun Mar 13, 2022 3:16 pm

Re: Garfield PS2 .PAK files

Post by disgustingstan »

Hi did you manage to convert the .RWS files into models? All i can find about them is that they're supposedly audio streams but that's not true for this game