Hitman 2 / IO Interactive - sample files

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
AnonBaiter
Posts: 1125
Joined: Tue Feb 02, 2016 2:35 am

Hitman 2 / IO Interactive - sample files

Post by AnonBaiter »

Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Hitman 2 / IO Interactive - sample files

Post by Ekey »

AnonBaiter
Posts: 1125
Joined: Tue Feb 02, 2016 2:35 am

Re: Hitman 2 / IO Interactive - sample files

Post by AnonBaiter »

Is it just me or is the tool glitching?
When I click on Browse, one windon goes blank like this:
Image
Then it goes all blank for no reason(it happens even when you start the tool):
Image

Maybe it's just me who needs to restart this tool everytime I want it to work, but I'm confused about this...

I have .NET Framework 4.0 installed.
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Hitman 2 / IO Interactive - sample files

Post by Ekey »

You selected wrong tab. For your game you need tab HM2 & HM3

PS: Win7 x64 works perfect
Image
Last edited by Ekey on Sat Aug 20, 2016 2:48 pm, edited 2 times in total.
AnonBaiter
Posts: 1125
Joined: Tue Feb 02, 2016 2:35 am

Re: Hitman 2 / IO Interactive - sample files

Post by AnonBaiter »

Ah, allright.
Seems like a tool one can use in case you have a PC version handy. It still glitches out either way even if I selected that tab.

By the way, check if the tool is also working with Hitman Blood Money. I'm using Windows 10 at the moment.
AnonBaiter
Posts: 1125
Joined: Tue Feb 02, 2016 2:35 am

Re: Hitman 2 / IO Interactive - sample files

Post by AnonBaiter »

Anyway, here are the .WHD/.WAV/streams.wav files from the PS2 version.
The filecutter.bms script was applied on the streams.wav file.
AnonBaiter
Posts: 1125
Joined: Tue Feb 02, 2016 2:35 am

Re: Hitman 2 / IO Interactive - sample files

Post by AnonBaiter »

Turns out I found the script that could handle .whd/.wav files.
The problem is that it's not very stable on some parts.

Also, I have more samples to follow.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Hitman 2 / IO Interactive - sample files

Post by aluigi »

raw dumper:

Code: Select all

endian big
open FDDE "whd"
open FDDE "wav" 1
get DUMMY long
get DUMMY long
get DUMMY long
get DUMMY long
for
    get NAME string
    if NAME == ""
        break
    endif
    padding 4
    get DUMMY1 long
    get DUMMY2 long
    get DUMMY3 long # samplerate?
    get DUMMY4 long # bits?
    get DUMMY5 long
    get DUMMY6 long
    get DUMMY7 long
    get DUMMY8 long
    get OFFSET long
    get SIZE long
    get DUMMY11 long
    get DUMMY12 long # channels?
    if DUMMY8 == 1
        log NAME OFFSET SIZE 1
    endif
next