Battlerite .bank

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
ThatOtherSiteKappa
Posts: 49
Joined: Fri Dec 23, 2016 3:00 am

Battlerite .bank

Post by ThatOtherSiteKappa »

Unable to figure out password with fsbext, https://mega.nz/#!s4hznTzK!RFjq0IXYIAfi ... uyFre2WC98
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Battlerite .bank

Post by aluigi »

Because there is no encryption, for BANK files use the -o -1 option of fsbext:
http://zenhax.com/viewtopic.php?p=5055#p5055

Additionally already exist a topic about the same game:
http://zenhax.com/viewtopic.php?t=3174

Searching the following on google gives also many results here on zenhax:
"bank" "fsbext" site:zenhax.com
swinei
Posts: 20
Joined: Sat Nov 05, 2016 2:19 pm

Re: Battlerite .bank

Post by swinei »

You can also use this to get the fsb files:

Code: Select all

for OFFSET = 0
    goto OFFSET
    findloc OFFSET string "FSB5"
    goto OFFSET
    getdstring FSB_SIGN 4   # FSOUND_FSB_HEADER_FSB5 (fsb.h)
    get version long
    get numsamples long
    get shdrsize long
    get namesize long
    get datasize long
    xmath SIZE "0x3c + shdrsize + namesize + datasize"
    log "" OFFSET SIZE
next OFFSET + SIZE


And then viewtopic.php?f=17&t=1901 to convert them (use the dlls from the OP, newer versions won't work).