Important information: this site is currently scheduled to go offline indefinitely by end of the year.

Bionic Comando

The Original Forum. Game archives, full of resources. How to open them? Get help here.
User avatar
CMihai
veteran
Posts: 131
Joined: Sun Jul 05, 2009 12:58 pm
Has thanked: 13 times
Been thanked: 1 time

Bionic Comando

Post by CMihai »

The contents of this post was deleted because of possible forum rules violation.
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Bionic Comando

Post by chrrox »

it is just plain zlib let me know if it works on other files.

Code: Select all

#QuickBMS script
#Make sure you say yes when it asks to overwrite.
get CHUNKS long
get VERSION long
get NAME filename
set EXT string .ext
string NAME += EXT
append
for i = 0 < CHUNKS
get OFFSET long
get ZSIZE long
set SIZE 65536
clog NAME OFFSET ZSIZE SIZE
next i
User avatar
CMihai
veteran
Posts: 131
Joined: Sun Jul 05, 2009 12:58 pm
Has thanked: 13 times
Been thanked: 1 time

Re: Bionic Comando

Post by CMihai »

The contents of this post was deleted because of possible forum rules violation.
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Bionic Comando

Post by chrrox »

those are the correct files you will get. what error do you get in the second file?
upload that one so i can see i want the original file.
User avatar
CMihai
veteran
Posts: 131
Joined: Sun Jul 05, 2009 12:58 pm
Has thanked: 13 times
Been thanked: 1 time

Re: Bionic Comando

Post by CMihai »

well it's a 110mb file :lol:

here's the error that i get
Error: the compressed zlib/deflate input is wrong or incomplete
User avatar
Gocha
veteran
Posts: 109
Joined: Fri Dec 12, 2008 8:16 pm
Location: Batumi, Georgia, GE
Has thanked: 57 times
Been thanked: 9 times
Contact:

Re: Bionic Comando

Post by Gocha »

How about to translate this game? How to determine which font file uses the game for non-English texts(language), for example there's also Russian, I couldn't determine which font file game uses for that.

p.s. languages and config files for game are in .bundle
My great respect and appreciation for them, who research game files! Special thanks to: aluigi, bacter, DerPlaya, Rick, Turfster, twig, Zench. Sorry if someone is missing in my list, I'll update when I'll notice it again
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Bionic Comando

Post by chrrox »

I do not have this game and without the file there is no way i can determine what that error means
User avatar
SCGame
n00b
Posts: 14
Joined: Mon Jul 13, 2009 1:41 am
Has thanked: 5 times

Re: Bionic Comando

Post by SCGame »

Gocha wrote:How about to translate this game? How to determine which font file uses the game for non-English texts(language), for example there's also Russian, I couldn't determine which font file game uses for that.

p.s. languages and config files for game are in .bundle
That is a good idea.
I am searching those font files. If you know, tell me, please.
User avatar
Savage
VIP member
VIP member
Posts: 559
Joined: Sun Apr 17, 2005 11:00 am
Has thanked: 16 times
Been thanked: 18 times

Re: Bionic Comando

Post by Savage »

I tried the script with the file boot.fcl, but the game crashes
Image
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Bionic Comando

Post by chrrox »

I do not have the game so I can not do more testing.
if I have that big archive I can update the script better.
User avatar
Savage
VIP member
VIP member
Posts: 559
Joined: Sun Apr 17, 2005 11:00 am
Has thanked: 16 times
Been thanked: 18 times

Re: Bionic Comando

Post by Savage »

How big can you download? I can upload 100mb's or more if you need
Image
chrrox
Moderator
Posts: 2602
Joined: Sun May 18, 2008 3:01 pm
Has thanked: 57 times
Been thanked: 1422 times

Re: Bionic Comando

Post by chrrox »

just give me a big archive that was giving errors I have unlimited download cap.
User avatar
Savage
VIP member
VIP member
Posts: 559
Joined: Sun Apr 17, 2005 11:00 am
Has thanked: 16 times
Been thanked: 18 times

Re: Bionic Comando

Post by Savage »

Image
Alex Bu
n00b
Posts: 10
Joined: Fri Nov 07, 2008 9:34 am
Been thanked: 1 time

Re: Bionic Comando

Post by Alex Bu »

fcl files do not include any index information, the index data is stored in the game.LHD file
Mr.Mouse
Site Admin
Posts: 4073
Joined: Wed Jan 15, 2003 6:45 pm
Location: Dungeons of Doom
Has thanked: 450 times
Been thanked: 682 times
Contact:

Re: Bionic Comando

Post by Mr.Mouse »

Look, the files are saved one after the other in these big files. Obviously, each last chunk of a resource is NOT 65536 in size. The BMS script assumes that this is just one big file, and incorrectly saves all chunks to one file.

The archives start off with the number of resources, and then the chunksize for each zlib chunk (not 'version'). There is apparently a .LDH file that has the index (including filenames?). To get around it without an index, you should check whether the uncompressed piece returned by zlib.dll is 65536 in size, if not you have reached the end of the resource and should start another.
Post Reply