FakeWuxia

Newbie
Feb 24, 2020
29
11
Damn, another good game that I can't play the updated version of. won't start and if I move the contents of the game into a different Renp'y game it comes up with error for pickle protocol 5 ? dunno
 

Kaintfm

Newbie
Apr 26, 2021
51
461
I was pretty critical of the game's previous version, noting the poorly paced romances, the limited number of love interests, the sparse, low quality adult content, and the significant amount of filler content with no real character development. I hope the new update will change my mind.
 
  • Red Heart
Reactions: MrD812

sidiouspein

Member
Nov 9, 2020
258
280
I didn't see anything for episode 10 it ended at episode 9 on my last playthrough.

Had to restart without mods to see episode 10.
 
Last edited:
  • Angry
Reactions: Stringy Bob

colombeen

Member
Modder
Jul 16, 2021
311
1,696
Gallery Unlock Script

Description: A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.
Game version: Ep. 10 (but should work on future versions)

DISCLAIMER
This script doesn't make any permanent changes to your persistent data.
Removing this script will revert the changes that have been made.
SIDENOTE
This mod shouldn't interfere with other mods.
Python:
# Use this unlock script at your own risk.
# https://f95zone.to/threads/.33607/post-10826493

# Start the deal with the devil
init 666 python:
  for scenes in globals().copy():
    if scenes.startswith('scene_gallery'):
        if type(globals()[scenes]) is list:
            for scene in globals()[scenes]:
                if type(scene) is dict:
                    if 'unlocked' in scene:
                        if scene['unlocked'] == False:
                            scene['unlocked'] = True
 
Last edited:
4.30 star(s) 178 Votes