What's new

Re: Shin-Sei-Den - FullFlap's Next Project - RPG

I've finished the game and saw there's a scene with the succubus, how do you get that ingame normally?
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

I've finished the game and saw there's a scene with the succubus, how do you get that ingame normally?

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?
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

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:
  1. Download DXExtract (just google it)
  2. Edit keys.ini and add new key: 98B5E3E8A29485D3A124F191
  3. Open data.dxa with DXExtract and extract it
  4. Delete original data.dxa (don't forget to make backup)
  5. Freely edit any of .txt files to change menu and dialogue texts

Here's an example with changed item description:
View attachment 22645

How did you figure out the key?
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

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, 2 is in the cave with the dragon/lizard boss (it's a red slime). The others i can't say exactly, but you can all "heart" monsters in the bonus dungeon.
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

I just talk to the queen and it takes me back to main menu

Did you have sex with the girl at some point? Because I really don't know what else it could be...
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

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
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

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().

 
Last edited:
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

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.
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

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 found areas where they spawn pretty much exclusively lewd enemies. One is all the way to the left of the first dungeon where you needed a key. In this area, if it's a dead end with only one chest, you're there. I'm not 100% sure, but I think some different enemies only spawn after you beat the game. This might be the place where the monsters you're talking about spawn. The second area is one screen north of the beach town.

Also, where is this bonus dungeon people are talking about?
 
Last edited:
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

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
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

I just got the "Final Sex with Player Scene" and it was max happiness with three hearts full lewdness

And with that in mind I tried two full hearts, and got the wedding CG. I guess anything less is considered neglectful, lol.
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

I just got the "Final Sex with Player Scene" and it was max happiness with three hearts full lewdness

I got that scene when i reseted her stats with potion right before teleport. She had max lewd and affection before reset.
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

Are the saves transferable? If so can you please upload a full save?
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

Pretty sure the game comes with a full save anyway.
Edit: Nvm, whoever I downloaded it from, included the full save from Demon's Sperm, which obviously don't work.
 
Last edited:
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

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().


That moment when a hentai thread transform into a coding thread :')
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

How to equip the guy?
Armour and sword etc. are only for the guy or for the girl as well?
:confused::confused:
Edit. Found it!

In my ending the girl killed the guy. How to avoid it?
Can someone show all endings list, can't he?
 
Last edited:
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

So I started playing the game and first thing I wanted to do was grind her lewdness while also have her like me so I went to an encounter with 3 heart enemies and let them have their way. After some time I noticed that text box Lewd up Mood down didn't show up so then I started to make her like me by getting the enemy to start the animation then kill the enemy. But that text box showing Mood up didn't show either. So I'm wondering, did I screw myself over trying to get her to like me. Do I have to start over?
Her mood is the lowest and Lewdness is at 1 and a half hearts
 
Re: Shin-Sei-Den - FullFlap's Next Project - RPG

From the sounds of a previous poster, it sounds like yes, once her Trust/Love hits minimum/zero, then you're screwed till the last village before final dungeon. In which you can buy items to raise/lower her lewdness and possibly love/trust. Unless they don't sell items to raise trust/love, in which case yes you'll have to restart the game, sorry!
 
Back
Top