Hello there, though this is my first post, i've been reading this site quite some time ago and i love it. Perhaps any of the audio experts here can help me with this. This game has the SFX and music stored in a file called ksound.kro. The music is easy to extract since it's simply a Raw PCM Unsigned 8 Bit, 22050 Hz, Mono. Now the strange part is that the SFX (the sfx comes first then the music) is in some unknown compressed format or some thing like that because i can't find a way to play them :/ If anyone can try to make them playable, it would solve more than 20 years of mystery ^__^
Here is the file if anyone wanna try out, thanks much!
Prisoner of Ice - Sound Effects (.KRO)
Re: Prisoner of Ice - Sound Effects (.KRO)
Looked at this format long time ago (in 2010 IIRC). Most of the files packed with the deflate algo.
Note that some .WAV files starts with some "EDITLS" block, so use .WAV ripping tool on top of the unpacked files to extract only .WAV part.
This is an QuickBMS script.
krounpak.bms:
Note that some .WAV files starts with some "EDITLS" block, so use .WAV ripping tool on top of the unpacked files to extract only .WAV part.
This is an QuickBMS script.
krounpak.bms:
Code: Select all
# Prisoner Of Ice .KRO unpacker
# (c) CTPAX-X Team 2017
# http://www.ctpax-x.org/
ImpType Standard
IDString "Burp"
Get FileCount Long
For I = 1 To FileCount
Get FileSize Long
Get PackSize Long
Get ZeroData Long
Get FileOffs Long
Get PackType Long
String FileName p= "%08d.dat" I
If PackType = 0
ComType copy
Log FileName FileOffs PackSize
Else
ComType deflate
Clog FileName FileOffs PackSize FileSize
EndIf
Next I
Re: Prisoner of Ice - Sound Effects (.KRO)
Sry for the late reply T_T Indeed it works, i really appreciate it
in fact, while digging through the files, i found some unused things that never before i found (not including one particular song that i ripped with dragon unpacker years ago) Thanks for your time
