Melanogaster
Jungle Girl
- Joined
- Dec 8, 2012
- Messages
- 6
- Reputation score
- 0
I've finished the game and saw there's a scene with the succubus, how do you get that ingame normally?
Guys, I found the way you can extract data archives. You don't even need to pack them back, game works with unpacked png, mp3 and txt files. It should be extremely easy to translate this game now.
Instruction:
- Download DXExtract (just google it)
- Edit keys.ini and add new key: 98B5E3E8A29485D3A124F191
- Open data.dxa with DXExtract and extract it
- Delete original data.dxa (don't forget to make backup)
- Freely edit any of .txt files to change menu and dialogue texts
Here's an example with changed item description:
View attachment 22645
When I finished the game with the girl at max lewdness and happiness the succubus was still there and the scene happened
Does anyone know where to find the monsters for scenes 2, 3, and 4 for the sprite scenes?
I just talk to the queen and it takes me back to main menu
These dxa archives are uncompressed and use simple 12-bit XOR cipher. It means they are extremely vulnerable to frequency analysis. Very often games files (images, sound) have long sequences filled with 0x00 bytes. XORing 0s with any number (key) produces key itself.How did you figure out the key?
These dxa archives are uncompressed and use simple 12-bit XOR cipher. It means they are extremely vulnerable to frequency analysis. Very often games files (images, sound) have long sequences filled with 0x00 bytes. XORing 0s with any number (key) produces key itself.
So I just wrote a small program which went through all 12-bytes blocks in dxa archive and counted frequency of their occurrence. The most often used sequence was the key itself.
Here's the source code if you need it: pastebin.com/8XPA1ApM
When I finished the game with the girl at max lewdness and happiness the succubus was still there and the scene happened
Does anyone know where to find the monsters for scenes 2, 3, and 4 for the sprite scenes?
Well, I have a save in the final town with max affection, zero lewdness, and virginity intact. I've since tried:
-Beating the game with zero lewdness and virginity intact; no special ending
-Beating the game after taking her virginity and having sex until she starts offering in the inn; no special ending
-Beating the game after taking her virginity and having sex until she starts offering in the end and she has a full heart of lewdness in the menu; no special ending
The raping the final boss and nympho ending CGs happen automatically after you beat the final boss if you've gotten max lewdness, and you don't go back to the queen at all. I assume the wedding CG and the last sex with the player character CG are both endings as well, but I really don't know how to trigger those. Aside from the endings I haven't been able to locate the masturbating in the dungeon CG or the threesome with the final priestess CG.
I just got the "Final Sex with Player Scene" and it was max happiness with three hearts full lewdness
I just got the "Final Sex with Player Scene" and it was max happiness with three hearts full lewdness
Are the saves transferable? If so can you please upload a full save?
These dxa archives are uncompressed and use simple 12-bit XOR cipher. It means they are extremely vulnerable to frequency analysis. Very often games files (images, sound) have long sequences filled with 0x00 bytes. XORing 0s with any number (key) produces key itself.
So I just wrote a small program which went through all 12-bytes blocks in dxa archive and counted frequency of their occurrence. The most often used sequence was the key itself.
Here's the source code if you need it: pastebin.com/8XPA1ApM
Oh cool, thanks. I've been learning a little Java but I'm a Python man myself. My cryptanalysis talents don't go very far, but it certainly is something I want to develop as a hobby. I'm going to see if I can't work out the same thing in Python without referring to your code. Thanks again!
Edit: In case anyone is interested, here's the code I wrote. Requires Python 3.5 but is generalizable to any version of Python by changing the print statement and dropping the .hex() from the end of game_archive.read().
You must be registered to see the links
That moment when a hentai thread transform into a coding thread :')