In the game now, it's part of the scene.Is the " Make Daphne act like a nasty slut " a teasing quest for the next version? or we can do it in the game now?
Tool you linked to doesn't work, nor does the otherwise "go to" renpy tool on this site (unren) for enabling console ect.find unren program and choose to enable console and press SHIFT + O in game.
OR
find guide how to do it manually but you need to uncheck read only on file before save changes. google "how to enable renpy console"
not checked myself ( I do it manually ) but https://f95zone.to/threads/renpy-console-enabler.15056/
Open all memory (through console or save files ) if you want to see all scenes. And i think it more or less depends on your choice.Is there any nudity on the 4 characters yet besudes the dream one with luna (i think that's her name)?
yep console is not working, seems Dev blocked it somehowView attachment 742852
I'd love to, but how????!?
I always start a new game with a new version, but this... has me stumped... there's absolutely ZERO hints about how/what/when/where regarding this....
Also, I've tried enabling console with unRen, I've searched for a config file to edit, tried other files to make the game load up with console enabled... nada, still can't get the console to open.
You have to edit "[your game folder]\game\modules\nondevelopper\main.rpym" to look like this :Tool you linked to doesn't work, nor does the otherwise "go to" renpy tool on this site (unren) for enabling console ect.
Also, I've tried just about any way I know how to enable the console in renpy games, yet I get zilch to come up, be it dropping an rpy file in the games folder for enabling it, nor could I find a config file to edit either.
init python hide:
    config.console = True
    config.keymap["performance"] = []
    _console.console = None
    renpy.load_module("modules/nondeveloper/screens")
    renpy.load_module("modules/nondeveloper/traceback")
    for fn, _ in renpy.game.script.module_files:
        if fn.startswith("modules/nondeveloper/tools"):
            renpy.load_module(fn)
            renpy.write_log("Activate tool: %s" % fn)
	sadly but no console even after i edit this file.You have to edit "[your game folder]\game\modules\nondevelopper\main.rpym" to look like this :
Python:init python hide: config.console = True config.keymap["performance"] = [] _console.console = None renpy.load_module("modules/nondeveloper/screens") renpy.load_module("modules/nondeveloper/traceback") for fn, _ in renpy.game.script.module_files: if fn.startswith("modules/nondeveloper/tools"): renpy.load_module(fn) renpy.write_log("Activate tool: %s" % fn)