Blocks That Matter (PC) .bftm

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
puggsoy
Posts: 161
Joined: Sat Dec 13, 2014 1:01 am

Blocks That Matter (PC) .bftm

Post by puggsoy »

Here's a script I made for anybody who needs it, it's pretty simple:

Code: Select all

# Blocks That Matter .bftm format
#
# Written by puggsoy
# script for QuickBMS http://quickbms.aluigi.org

endian big
comtype zlib_noerror
get FILENUM long

for i = 0 < FILENUM
   get NMSZ long
   getdstring NAME NMSZ
   string NAME c NAME
   get OFFSET long
   get SIZE long
   
   if NAME ext "xml"
      clog NAME OFFSET SIZE SIZE
   else
      log NAME OFFSET SIZE
   endif
next i

Enjoy :)
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Blocks That Matter (PC) .bftm

Post by aluigi »

Compressed names, interesting.
Well done.