SummmerP

Disrespected User
Game Developer
Jun 26, 2017
1,190
3,790
use UnRen for enabling rollback

there's no point of no return, you can always return
:HideThePain:
 

deadman88

Active Member
Mar 18, 2019
662
161
hi how many route has this game? and how do i get it? or anyone has a walkthrough to get all the scene?
 

amster22

Well-Known Member
Nov 13, 2019
1,213
2,217
hi how many route has this game? and how do i get it? or anyone has a walkthrough to get all the scene?
Three main routes, but it is impossible do see all the scenes in a play. After a few days, the three routes are completely different and have no scene in common. And within a route, there are choices that can slightly change what you see.
To my best knowledge, there is no walkthrough. There was a post here some months ago, but I cannot find it.
 

Nikonikos

Member
Apr 30, 2020
130
107
I've modified Gigan's original 0.15 Gallery Mod and added scenes up to 0.24.

Have also restored the original 1118a to 1148a scenes, and also added the 1425a and 1427a scenes without text. Will need someone to get the text from the Patreon Discord version.

Extract the files into the game folder.

09/05/22 edit: updated to 0.30
Any chance you could update it to 0.32?
 

Sexy Afrodita

Member
Jun 6, 2018
361
209
can anyone kindly share a save just before Jen & Stan 2nd sex scene (without Maya involved) Please, can´t reach this path anyore =)
 
Jul 27, 2018
414
691
In the deception route did Maya really get killed when they leave the house?? If yes, damn, thats.. dark. Dont know if I want to play this route anymore
 

karlpilkert

Newbie
Jan 16, 2018
86
77
This is one of like 2 games where I actually play multiple routes, because they're very different but still interesting + hot

Yet we cannot name saves, so it's a huge pain to keep track of which save is for which route

Pleeeeeeease add save naming
 

amster22

Well-Known Member
Nov 13, 2019
1,213
2,217
Is there an option for mother/daughter lesbian sex scenes. Generally it would be nice to avoid dick in this game, but probably impossible.
I think I remember that there was a mother-daughter scene, but it has been removed because of patreon rules. The images are probably still there and the scene should be reachable with the console.
And, yeah, no way to avoid dicks!
 

tania

Member
Jun 30, 2017
431
378
This is one of like 2 games where I actually play multiple routes, because they're very different but still interesting + hot

Yet we cannot name saves, so it's a huge pain to keep track of which save is for which route

Pleeeeeeease add save naming
Go to tonr-0.32/game/ and create a file txt, edit it and cut/paste this code:
Code:
init offset = 99

default persistent.save_naming = True

style check_button:
    padding (32, 6, 6, 6)

style check_button_text:
    selected_hover_color gui.hover_color

style radio_button:
    padding (32, 6, 6, 6)

style radio_button_text:
    selected_hover_color gui.hover_color

screen screen_save_name(slot):
    modal True
    zorder 200
    style_prefix "confirm"

    add "gui/overlay/confirm.png"

    frame:
        vbox:
            spacing 25
            xsize 650

            if FileLoadable(slot):
                label _("Save name ({color=#f00}overwrite{/color}):") style "confirm_prompt"
            else:
                label _("Save name ({color=#00ff00}new{/color}):") style "confirm_prompt"

            input:
                value VariableInputValue('save_name')
                length 30
                xalign 0.5
         
            hbox:
                xfill True
                textbutton _("Yes") action FileAction(slot, confirm=False), Hide("screen_save_name") xalign 0.5
                textbutton _("No") action Hide("screen_save_name") xalign 0.5
 
    ## Right-click and escape answer "no".
    key "game_menu" action Hide("screen_save_name")

    ## Return of Enter answer "yes".
    key "K_RETURN" action FileAction(slot, confirm=False), Hide("screen_save_name")
    key "K_KP_ENTER" action FileAction(slot, confirm=False), Hide("screen_save_name")


screen file_slots(title):

    default page_name_value = FilePageNameInputValue(pattern=_("Page {}"), auto=_("Automatic saves"), quick=_("Quick saves"))

    use game_menu(title):

        frame:
            style "empty"
            style_prefix "check"
            xsize 410
            xalign 0.94

            if persistent.save_naming:
                textbutton _("Save naming enabled") action ToggleField(persistent,"save_naming")
            else:
                textbutton _("Save naming disabled") action ToggleField(persistent,"save_naming")

        fixed:

            ## This ensures the input will get the enter event before any of the
            ## buttons do.
            order_reverse True

            ## The page name, which can be edited by clicking on a button.
            button:
                style "page_label"

                key_events True
                xalign 0.5
                action page_name_value.Toggle()

                input:
                    style "page_label_text"
                    value page_name_value

            ## The grid of file slots.
            grid gui.file_slot_cols gui.file_slot_rows:
                style_prefix "slot"

                xalign 0.5
                yalign 0.5

                spacing gui.slot_spacing

                for i in range(gui.file_slot_cols * gui.file_slot_rows):

                    $ slot = i + 1

                    button:
                        if renpy.current_screen().screen_name[0] == "load":
                            action FileAction(slot)
                        else:
                            # Highlight if the current save slot is the last save
                            selected (str(persistent._file_page) + "-" + str(slot) == renpy.newest_slot("[0-9]"))
                            if persistent.save_naming:
                                action SetVariable("save_name", FileSaveName(slot)), Show("screen_save_name", slot=slot)
                            else:
                                action SetVariable("save_name", FileSaveName(slot)), FileAction(slot)

                        has vbox

                        add FileScreenshot(slot) xalign 0.5

                        text FileTime(slot, format=_("{#file_time}%A, %B %d %Y, %H:%M"), empty=_("empty slot")):
                            style "slot_time_text"

                        text FileSaveName(slot):
                            style "slot_name_text"

                        key "save_delete" action FileDelete(slot)

            ## Buttons to access other pages.
            hbox:
                style_prefix "page"

                xalign 0.5
                yalign 1.0

                spacing gui.page_spacing

                textbutton _("<") action FilePagePrevious()

                if config.has_autosave:
                    textbutton _("{#auto_page}A") action FilePage("auto")

                if config.has_quicksave:
                    textbutton _("{#quick_page}Q") action FilePage("quick")

                ## range(1, 10) gives the numbers from 1 to 9.
                for page in range(1, 10):
                    textbutton "[page]" action FilePage(page)

                textbutton _(">") action FilePageNext()
then rename the txt file to: save_name.rpy
You now can rename your savegames!
 

Danv

Active Member
Aug 21, 2020
871
1,221
I think I remember that there was a mother-daughter scene, but it has been removed because of patreon rules. The images are probably still there and the scene should be reachable with the console.
And, yeah, no way to avoid dicks!
wait, are there no more incest in this game? last time i played was version 0.26 sub route and i'm pretty sure there were plenty of mother-daughter action
 

marcomonte

Member
Jun 7, 2019
102
136
wait, are there no more incest in this game? last time i played was version 0.26 sub route and i'm pretty sure there were plenty of mother-daughter action
You are correct, there was mom-daugh action. It's missing now. Let's hope for a patch!
 
3.60 star(s) 58 Votes