Street Fighter III 3rd Strike (PS2) .bin file

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
Mysticus
Posts: 182
Joined: Sat Mar 02, 2019 3:24 pm

Street Fighter III 3rd Strike (PS2) .bin file

Post by Mysticus »

Any script or program to extract .bin files from Street Fighter III 3rd Strike (PS2), please?
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Street Fighter III 3rd Strike (PS2) .bin file

Post by aluigi »

It's just a sequence of offsets:

Code: Select all

get FILES long
math FILES / 4
goto 0
for i = 0 < FILES
    get OFFSET long
    putarray 0 i OFFSET
next i
    get OFFSET asize
    putarray 0 i OFFSET
for i = 0 < FILES
    getarray OFFSET 0 i
    math i + 1
    getarray SIZE   0 i
    math SIZE - OFFSET
    log "" OFFSET SIZE
next
Mysticus
Posts: 182
Joined: Sat Mar 02, 2019 3:24 pm

Re: Street Fighter III 3rd Strike (PS2) .bin file

Post by Mysticus »

Thanks! It worked! Now how do I convert extracted dat files to png?
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Street Fighter III 3rd Strike (PS2) .bin file

Post by aluigi »

Custom formats are ever a mess. You can try asking the Graphics section.