Bully(PS2) - sample files(.bin/.lst)

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
AnonBaiter
Posts: 1125
Joined: Tue Feb 02, 2016 2:35 am

Bully(PS2) - sample files(.bin/.lst)

Post by AnonBaiter »

Here's a sample.
Also, I tried to write a script like this but I'm confused about what to do with it.

Code: Select all

getdstring SIGN 4
get FILES long
for i = 0 < FILES
   get UNKNOWN1 long
   get UNKNOWN2 long
   get UNKNOWN3 long
next i
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Bully(PS2) - sample files(.bin/.lst)

Post by aluigi »

AnonBaiter
Posts: 1125
Joined: Tue Feb 02, 2016 2:35 am

Re: Bully(PS2) - sample files(.bin/.lst)

Post by AnonBaiter »

Thanks for the script, mate.
I have to note that when extracting the duplicate archives(AMBS1.BIN, MUSIC1.BIN) with the script, the output files were like this:

Code: Select all

"00000000.brstm"
However, as I'd rather rename them to their ".rstm" format, I instead choose to implement this:

Code: Select all

    if EXISTS == 0
        set NAME string i
        string NAME += ".rstm"
    else
As a result, the files now have an output filename of "0.rstm", "1.rstm" and so on. It was just something I came up with for a quick fix... or something.