Monster Hunter Language Files (.bin) mostly

Extraction and unpacking of game archives and compression, encryption, obfuscation, decoding of unknown files
MagicMuffinSyndra
Posts: 8
Joined: Thu Dec 24, 2015 11:24 pm

Monster Hunter Language Files (.bin) mostly

Post by MagicMuffinSyndra »

I have been working on a translation for Frontier to help out some friends of mine. While I can read/write mandarin well enough to play, they cannot so I was working on a patch. I have been able to extract most of the files and dig through them, but for the life of me, I can't seem to locate the actual text files. There are a few files left, but I haven't figure out what format they are in. I was wondering if anyone else had any insight on the situation, or are willing to take a look at it? The only thing I have been able to notice so far is that all of the files have the stringID's JKR or ecd in them which leads me to believe that if one if decoded, then the others probably are as well.

Here is one of the files as an example with the ecd:

http://filebin.ca/2R6WLaXYOiSd

Here is another files with JKR id:

http://filebin.ca/2R6Xahqb3DRg

Any recommendations on a file ripper to use or anything?
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Monster Hunter Language Files (.bin) mostly

Post by aluigi »

I agree, the "ecd" one is probably encrypted.
While you can use this script for the other one:

Code: Select all

get FILES long
if FILES == 0x1a646365
    print "ecd not supported"
    cleanexit
endif
for i = 0 < FILES
    get OFFSET long
    get SIZE long
    log "" OFFSET SIZE
next i
MagicMuffinSyndra
Posts: 8
Joined: Thu Dec 24, 2015 11:24 pm

Re: Monster Hunter Language Files (.bin) mostly

Post by MagicMuffinSyndra »

I'm sorry, I derped. What language is that in? Nevermind, derps' over >.>
Last edited by MagicMuffinSyndra on Tue Dec 29, 2015 6:37 pm, edited 1 time in total.
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Monster Hunter Language Files (.bin) mostly

Post by aluigi »

It's a script for quickbms
MagicMuffinSyndra
Posts: 8
Joined: Thu Dec 24, 2015 11:24 pm

Re: Monster Hunter Language Files (.bin) mostly

Post by MagicMuffinSyndra »

Lots of PNGs and plenty of .dat files. Hopefully it will be somewhere in one of these
MagicMuffinSyndra
Posts: 8
Joined: Thu Dec 24, 2015 11:24 pm

Re: Monster Hunter Language Files (.bin) mostly

Post by MagicMuffinSyndra »

Any ideas on how to decrypt the ecd files? I am really hoping the game's text files aren't in there..
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: Monster Hunter Language Files (.bin) mostly

Post by aluigi »

I have Monster Hunter Online here and there are no ECD files.
What is this game?

*edit* ok Monster Hunter Frontier, another game.

Maybe try to upload its executable, just in case there is something quick to do.
MagicMuffinSyndra
Posts: 8
Joined: Thu Dec 24, 2015 11:24 pm

Re: Monster Hunter Language Files (.bin) mostly

Post by MagicMuffinSyndra »

Oh yeah, that would probably help.

The JKR's I unpacked and got a lot of empty .dat files, some had stuff in them. I am not sure if the formats for these are compressed or something else, but I am starting to wonder if they are compressed. I don't think I have seen too many encrypted files that announce a header.

Anyway, here is the .exe file, and also the mhfdat file. If CAPCOM did this like this for every other game, the text files are probaAnybly in there somewhere.
I am not sure where to get the software to unpack this or even if it still works, but I do recall finding this link a while back for someone doing something similar for the Japanese version. Maybe it might help.

http://forum.xentax.com/viewtopic.php?f=10&t=3679

.exe:

http://filebin.ca/2RsGnPCOHvfO/mhf.exe

another executable i found in here

http://filebin.ca/2RsH1le2BrYB/mhfi.exe

mhfdat

http://filebin.ca/2RsHI0EfuImh/mhfdat.bin

EDIT:

Here is the original mhfdat file. Some how one of them reformatted itself a bit. They are similar, but I think they are slightly different after going through and comparing them.

http://filebin.ca/2RsKfBm0PBZ8/mhfdat.bin
MagicMuffinSyndra
Posts: 8
Joined: Thu Dec 24, 2015 11:24 pm

Re: Monster Hunter Language Files (.bin) mostly

Post by MagicMuffinSyndra »

So I did some changes and actually had no errors, but the game keeps deleting and reloading the original files upon load. It just occurred to me, I'm not sure but it could be gameguard causing part of the problem. Or not, I don't know I actually haven't seen it in action ever.
Vuze
Posts: 16
Joined: Sun Dec 28, 2014 3:02 pm

Re: Monster Hunter Language Files (.bin) mostly

Post by Vuze »

Did anyone happen to make progress on the encrypted *.pac (ecd header) files?