vn-tools / arc_unpacker

CLI tool for extracting images and sounds from visual novels.
GNU General Public License v3.0
562 stars 83 forks source link

Game request: [MokyuSoft][161217]Moékuri #109

Open ffleader1 opened 7 years ago

ffleader1 commented 7 years ago

Game info

VNDB link: VNDB does not categorize this game as VN Developer: MokyuSoft Release date: 17 Dec, 2016 Original title: Moékuri English title (if available): Moékuri

Details

I was gonna ask this a few days ago but apparently you have been inactive for a while. Now I'm glad that you are back. Anyway, about the game, yes, it is not listed as VN on VNDB but it does has a VN aspect. Look: https://forums.fuwanovel.net/topic/15320-moekuri-a-vnsrpg-hybrid-now-on-kickstarter/ Anyway, I have tried to research on unpacking this game myself for a few days but as you can see...meh...Apparently if it's not Kirikiri or Ren'py then I'm useless. Ok, so back to the topic. As far as I know, the game used Dx Lib engine. It uses some kind of encryption key on the .dxa files. I have asked a guy who was capable of decrypting any .dxa files before using Obly.dbg and he gave me this info + decryption routine code: https://www.reddit.com/message/messages/75visw

` Code

xor_bytes = [0x92,0xF6,0xE4,0x68,0x9E,0xC1,0x90,0x32,0xCB,0x1E,0x00,0xA3] 

pos = 0

for i in range(0,len(filedata)):
    filedata[i] ^= xor_bytes[pos]
    pos += 1
    if pos >= len(xor_bytes):
        pos = 0

` I still have no ideal what to do. But I believe you do. Also, here is the FULL game files: https://drive.google.com/drive/folders/0B-RJhHKhMtEedUR1TTN1RFgxd1E?usp=sharing Thank you in advance.