Inside my Radio - *.msb archives

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

Inside my Radio - *.msb archives

Post by AlphaTwentyThree »

Hi there! Can somebody write a script for those msb archives http://*USE_ANOTHER_FILEHOSTING*/0ee806d ... 894/msb.7z? Thanks! :)
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

Re: Inside my Radio - *.msb archives

Post by AlphaTwentyThree »

Anybody? :\
All is appreciated.
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Inside my Radio - *.msb archives

Post by Ekey »

Well, format looks like that

Code: Select all

# Inside my Radio (MSB format)
#
# Written by Ekey (h4x0r)
#
# script for QuickBMS http://quickbms.aluigi.org

goto 0x8
get FILES long
get HASH long #???
get NAMES_SIZE long

for i = 1 < FILES
    get NAME string
    putarray 0 i NAME
next i

savepos TEMP
math TEMP += 28
goto TEMP

for i = 1 < FILES
    getarray NAME 0 i
    get DUMMY long
    get ZERO long
    get DUMMY long
    get SIZE long
    get ZERO long
    get OFFSET long
    get SIZE2 long
    log NAME OFFSET SIZE
next i
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

Re: Inside my Radio - *.msb archives

Post by AlphaTwentyThree »

Hm... somehow I didn't come up with anything useful when I was trying to write a script... well, yeah, THANKS! ;)