ps2 PAK archive

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
mateus01212
Posts: 5
Joined: Thu Jun 23, 2022 11:25 pm

ps2 PAK archive

Post by mateus01212 »

can anyone extract data.pack from spy vs spy
https://www.mediafire.com/file/onbcn2hn ... a.pak/file
rabatini
Posts: 179
Joined: Tue Jan 18, 2022 12:21 am

Re: ps2 PAK archive

Post by rabatini »

Code: Select all

get FILES long
goto 0x800
for i = 0 < FILES
    getdstring NAME 0x28
    get OFFSET long
    get SIZE long
    math OFFSET * 0x800
    log NAME OFFSET SIZE
next i
mateus01212
Posts: 5
Joined: Thu Jun 23, 2022 11:25 pm

Re: ps2 PAK archive

Post by mateus01212 »

thanks!