This is really only meant to be used to make viewing of the game's files easier. I may eventually release a tool that allows people to replace files (such as audio or textures), but I don't have plans on doing that anytime soon.
|
is there a way to see in wich sound.pak every file was.So that i can see in wich sound.pak the fly sound was?
|
| |
|
|
If you only unpack the sound.pak file (or you unpack it last), then there will be a file called "DBO Unpacker.temp" which contains then decrypted version of sound.pak. You can then open this file in a hex editor and search for the file name.
You should see something like:
Code:
#.\sound\skill\skl_mystic_heal_e_2106.wav
Which is this in hex:
Code:
23 2E 5C 73 6F 75 6E 64 5C 73 6B 69 6C 6C 5C 73 6B 6C 5F 6D 79 73 74 69 63 5F 68 65 61 6C 5F 65 5F 32 31 30 36 2E 77 61 76
The first character (right before ".\sound" or "2E 5C 73 6F 75 6E 64") represents which sound#.pak file it came from. The number is written in hex though.
For instance, the one above came from 23.
23 in hex is 35 in decimal. So it came from sound35.pak.