FatYoda

Well-Known Member
Sep 12, 2017
1,143
1,020
Vikingfile download flagged as a virus. Pixel worked fine.

Edit: oops, don't look up, the previous comment didn't happen :p
 

Otesin

New Member
May 13, 2020
3
1
OK, I have two questions.

1. How is this game comparing to Insight of You? It looks like they have similiar gameplay and story style?

2. I remembered in the back of my brain that the auther talked about thinking adding mom/son involving protagonist years ago. So, is it added eventually?
 

troublex2

Newbie
Jul 31, 2018
88
78
OK, I have two questions.

1. How is this game comparing to Insight of You? It looks like they have similiar gameplay and story style?

2. I remembered in the back of my brain that the auther talked about thinking adding mom/son involving protagonist years ago. So, is it added eventually?
1. gameplay- its a visual novel with only 2 choices right now sharing and not sharing and bdsm for the mother or pregnancy. story style this is more you find a girl that is a nympho and then her mother joins in on the fun and then a schoolmate wear-as insight of you is about destroying your boss. you are trying to get back at your ex but not much of that right now

2. so far no mother/son you do mess around with a mother/daughter.
 

Amedeux

Newbie
Apr 6, 2020
95
243
Silverbananer, you can enable skip in the options and then hold down ctrl. this is a standard renpy function and works with most renpy games. (y)
In this case there is no skip option.
Just create a text document with "somename".rpy where you copy this:

init 999 python:
_preferences.skip_unseen = True
renpy.game.preferences.skip_unseen = True
renpy.config.allow_skipping = True
renpy.config.fast_skipping = True
renpy.config.rollback_enabled = True
renpy.config.hard_rollback_limit = 256
renpy.config.rollback_length = 256
def unren_noblock( *args, **kwargs ):
return
renpy.block_rollback = unren_noblock
try:
config.keymap['rollback'] = [ 'K_PAGEUP', 'repeat_K_PAGEUP', 'K_AC_BACK', 'mousedown_4' ]
except:
pass
try:
config.keymap['skip'] = [ 'K_LCTRL', 'K_RCTRL' ]
except:
pass



Save and then copy it to the "game" folder. It worked for me.
 
  • Like
Reactions: GreenOwl

GreenOwl

Newbie
Dec 22, 2023
35
77
In this case there is no skip option.
Just create a text document with "somename".rpy where you copy this:

init 999 python:
_preferences.skip_unseen = True
renpy.game.preferences.skip_unseen = True
renpy.config.allow_skipping = True
renpy.config.fast_skipping = True
renpy.config.rollback_enabled = True
renpy.config.hard_rollback_limit = 256
renpy.config.rollback_length = 256
def unren_noblock( *args, **kwargs ):
return
renpy.block_rollback = unren_noblock
try:
config.keymap['rollback'] = [ 'K_PAGEUP', 'repeat_K_PAGEUP', 'K_AC_BACK', 'mousedown_4' ]
except:
pass
try:
config.keymap['skip'] = [ 'K_LCTRL', 'K_RCTRL' ]
except:
pass



Save and then copy it to the "game" folder. It worked for me.
interesting last time i played you could skip like in every other renpy game, is it bugged in this version or did the dev remove it?
 

Bottomless Pit

Newbie
Game Developer
Apr 1, 2023
90
784
In this case there is no skip option.
Just create a text document with "somename".rpy where you copy this:

init 999 python:
_preferences.skip_unseen = True
renpy.game.preferences.skip_unseen = True
renpy.config.allow_skipping = True
renpy.config.fast_skipping = True
renpy.config.rollback_enabled = True
renpy.config.hard_rollback_limit = 256
renpy.config.rollback_length = 256
def unren_noblock( *args, **kwargs ):
return
renpy.block_rollback = unren_noblock
try:
config.keymap['rollback'] = [ 'K_PAGEUP', 'repeat_K_PAGEUP', 'K_AC_BACK', 'mousedown_4' ]
except:
pass
try:
config.keymap['skip'] = [ 'K_LCTRL', 'K_RCTRL' ]
except:
pass



Save and then copy it to the "game" folder. It worked for me.
On what platform you don't have Skip Button?
 
4.00 star(s) 70 Votes