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

[PS2] The Getaway 1 & 2 [.PAK]

Read or post about compression. And decompression. Or ask questions how to decompress your files.
Post Reply
prysm
n00b
Posts: 15
Joined: Sun Jun 14, 2009 11:38 pm
Has thanked: 10 times

[PS2] The Getaway 1 & 2 [.PAK]

Post by prysm »

The contents of this post was deleted because of possible forum rules violation.
Last edited by prysm on Mon May 10, 2010 5:56 pm, edited 2 times in total.
User avatar
Savage
VIP member
VIP member
Posts: 559
Joined: Sun Apr 17, 2005 11:00 am
Has thanked: 16 times
Been thanked: 18 times

Re: [PS2] The Getaway 1 & 2 [.PAK]

Post by Savage »

Looks the music it's in the file IOP_mus.pak :)
Image
prysm
n00b
Posts: 15
Joined: Sun Jun 14, 2009 11:38 pm
Has thanked: 10 times

Re: [PS2] The Getaway 1 & 2 [.PAK]

Post by prysm »

Savage wrote:Looks the music it's in the file IOP_mus.pak :)
No prob, man. I can upload this PAK, if needed. Give me 30-40 minutes.

p.s. links updated.
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: [PS2] The Getaway 1 & 2 [.PAK]

Post by aluigi »

if there are other archives that are not supported (the script will show an error) it's enough that you upload only the first 100 kilobytes of each one of them:

Code: Select all

# script for QuickBMS http://aluigi.org/quickbms

goto 0x20
get FILES long
goto 0x114
get TYPE string
if TYPE == "bnk"
    goto 0x198
    set NAME string ""
    for i = 0 < FILES
        get OFFSET threebyte
        get BASE_NAMESZ byte
        get NAMESZ byte
        get DUMMY short
        get SIZE long
        getdstring TMP NAMESZ
        math OFFSET *= 0x800
        putvarchr NAME BASE_NAMESZ 0
        string NAME += TMP
        string NAME -= 1
        log NAME OFFSET SIZE
    next i
elif TYPE == "mus"
    goto 0x20c
    for i = 0 < FILES
        get SIZE long
        get OFFSET long
        if OFFSET != 0
            math OFFSET *= 0x800
            log "" OFFSET SIZE
            math i += 1
        endif
    next
else
    print "Error: unsupported type %TYPE%, contact me"
    cleanexit
endif
prysm
n00b
Posts: 15
Joined: Sun Jun 14, 2009 11:38 pm
Has thanked: 10 times

Re: [PS2] The Getaway 1 & 2 [.PAK]

Post by prysm »

aluigi, you ROCK!!! :wink:

Thanks a lot!! I've already extracted music layers from Black Monday. In a few days will try next PAK from the first Getaway.
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: [PS2] The Getaway 1 & 2 [.PAK]

Post by aluigi »

I give up for the other types of this file format because it's enough chaotic.
it supports various types that are included in the same archive and so it requires a better reversing of all the fields, and at the moment I'm not interested
Post Reply