brave dwarves creeping shadows DAT

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
AntonZab
Posts: 461
Joined: Thu Oct 01, 2015 5:03 pm

brave dwarves creeping shadows DAT

Post by AntonZab »

New GameOverGames Resource file. I tried an existing script. but it failed. I downloaded the smallest file. Other files 200+ MB.


Sample


https://drive.google.com/file/d/0B0oEDr ... sp=sharing
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: brave dwarves creeping shadows DAT

Post by aluigi »

I have updated the other script Game/GaveOverGames to version 0.2:
http://aluigi.org/bms/gaveovergames.bms
AntonZab
Posts: 461
Joined: Thu Oct 01, 2015 5:03 pm

Re: brave dwarves creeping shadows DAT

Post by AntonZab »

Perfecto. Thanx
NoNameHero
Posts: 4
Joined: Sun Dec 12, 2021 4:25 pm

Re: brave dwarves creeping shadows DAT

Post by NoNameHero »

came here for the same reason, unfortunately the actual version (0.3) of the script doesn't work anymore with this game's DATs.
i found the v0.2 on web.archive, if anyone needs it:
https://web.archive.org/web/20190801135036if_/http://aluigi.altervista.org/bms/gaveovergames.bms
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: brave dwarves creeping shadows DAT

Post by aluigi »

Do you have a sample file to analyze?

The core of the script is identical, the only difference is for the "Second Reality Resource File" files that are decompressed with LZW instead of ZLIB, it was (sort of) correct with the samples I tested.
NoNameHero
Posts: 4
Joined: Sun Dec 12, 2021 4:25 pm

Re: brave dwarves creeping shadows DAT

Post by NoNameHero »

aluigi wrote:Do you have a sample file to analyze?

the link sent by antonzab here still works: https://drive.google.com/file/d/0B0oEDro3cJx-X0pfRUtNVzJTbVU/view?resourcekey=0-QIYI7PSoLAyjbl2ujDwvkg
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: brave dwarves creeping shadows DAT

Post by aluigi »

It requires sign-in
NoNameHero
Posts: 4
Joined: Sun Dec 12, 2021 4:25 pm

Re: brave dwarves creeping shadows DAT

Post by NoNameHero »

i thought you had a google account, anyways i uploaded it here https://www.swisstransfer.com/d/d4fa4bd9-3d03-4dc2-9030-14b0c5e0e5ae
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: brave dwarves creeping shadows DAT

Post by aluigi »

Ok, I found the problem.
In short in the old script I read 13 characters of the string at the beginning of the file while in the new version I read 32 characters.
That's ok but it becomes a problem at the line 'if SIGN == "GameOverGames"' because now the string can no longer be equal than that 13 character constant.
Just fixed by replacing == with & :)

Thanks a lot for pointing out the bug, sometimes bugs are so subtle to spot even in a so simple code.
NoNameHero
Posts: 4
Joined: Sun Dec 12, 2021 4:25 pm

Re: brave dwarves creeping shadows DAT

Post by NoNameHero »

no problemo, thank you for your priceless work.