Zombi PC (.BFZ) file format

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
darkking647
Posts: 8
Joined: Thu Apr 16, 2015 8:14 am

Zombi PC (.BFZ) file format

Post by darkking647 »

The game is now available on PC,PS4 and XBOX-1 and it seems to utilize the same BFZ format.

Here are the samples :-

Code: Select all

https://dl.dropboxusercontent.com/u/33463092/zombi.zip


Please anyone try to write its unpacker and repacker :(
darkking647
Posts: 8
Joined: Thu Apr 16, 2015 8:14 am

Re: Zombi PC (.BFZ) file format

Post by darkking647 »

Can anyone pls re-write this BMS script which was originally written for Wii version of this game.

It is able to unpack just the 1st file from .BFZ files of PC version, so if anyone modifies and correct the script for PC then it must be able to unpack all the BFZ files.

Pls someone try - http://aluigi.altervista.org/papers/bms ... zombiu.bms
spider91
Posts: 233
Joined: Sun Aug 24, 2014 5:26 pm

Re: Zombi PC (.BFZ) file format

Post by spider91 »

Huh, there is a little mistake in script, just replace

Code: Select all

for i = 0 < FILES
    getarray OFFSET 0 i
    getarray SIZE   1 i
    getarray NAME   2 i
    log NAME OFFSET SIZE MEMORY_FILE
endif


with

Code: Select all

for i = 0 < FILES
    getarray OFFSET 0 i
    getarray SIZE   1 i
    getarray NAME   2 i
    log NAME OFFSET SIZE MEMORY_FILE
next i
lostprophet
Posts: 49
Joined: Thu Sep 04, 2014 9:34 pm

Re: Zombi PC (.BFZ) file format

Post by lostprophet »

Thank you!
Has anyone managed to find where it stores the texts? I only found a .txt file in the "Gen_Common_1.lin.bfz" with some mission names, but nothing else.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Zombi PC (.BFZ) file format

Post by aluigi »

@spider91
thanks for the feedback :)
spider91
Posts: 233
Joined: Sun Aug 24, 2014 5:26 pm

Re: Zombi PC (.BFZ) file format

Post by spider91 »

aluigi

This game has lzopro.dll in main folder. And there are a lot of functions for compression and decompression with all lzo schemes. Is there any way to use that dll? We can get lzopro if it works.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Zombi PC (.BFZ) file format

Post by aluigi »

As far as I know the decompression works correctly so there is no need to use an external dll for the same results.

quickbms allows to use dlls so it may be possible to use it but depends by the prototypes (you need the .h or to study the dll) and calling convention (quickbms supports any type).