I used the unpacker attached here to obtain these samples. They're supposed to be fmod banks but the dump_fsb BMS scripts aren't working nor is fsbext or FsbExtractor. Some of them have one instance of FSB5 in it, but not always. They all start with RIFF and, except for the header data, look encrypted or compressed.
Any ideas?
Just Cause 3 .bank
-
- Posts: 176
- Joined: Tue Sep 30, 2014 5:59 pm
Re: Just Cause 3 .bank
1) Apply to .bank
2) The resulting .fsb extract these tools:
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
2) The resulting .fsb extract these tools:
-
- Posts: 2
- Joined: Tue Jan 30, 2018 2:25 pm
Re: Just Cause 3 .bank
It works, thank you!