fishbrain

Engaged Member
Apr 9, 2018
2,412
2,525
Latest patch still works for this one? Read through a lot of comments and didn't see it mentioned.
 

PhoenixRage23

Active Member
May 24, 2020
724
891
Not sure this will happen (not saying that it doesn't happen at all), but you might have to wait at least 2 years for that.
Our next game (starting most likely Feb 2024) will be a male MC, (possible) full harem game (incest included for SS version) with a setup which isn't worn out - meaning at least we don't know any other game having such setup for the story now (there might be some though).
Not featuring fantasy, science fiction, rape, netorare, netorase (maybe containing netori though) and bestiality.

Glad to see your next game may have a full harem. Your games are great, but for me that's been the frustrating part of having to choose which routes to pick without having to play multiple times to see all the renders and such.
 

TommyTuba

Engaged Member
Aug 2, 2017
2,390
1,620
True, but looking at those scenes from the movie, could you see Connery or Moore being so unreservedly romantic? Lazenby made their relationship more realistic than either of the other two could, IMHO. They would be too aloof to show such love, even for "Emma Peel."
What scenes?
 

YepCock666

Member
Mar 15, 2021
324
721
A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.

Game version: Ch. 3 v0.01i Extras

Backup your persistent data if you have any doubts that this little unlocker might brick your game.

This mod shouldn't interfere with other mods.
If you use SanchoMod you really don't need this little script unless you aren't satisfied with the fully unlocked SanchoGallery.

Python:
# Use this unlock script at your own risk.
# https://f95zone.to/threads/.49330/post-11579614

# Start the deal with the devil
init 666 python:
    # Peeping Tom Gallery
    if not v_pt_images is None:
        for week_images in v_pt_images:
            for i, image_alt in week_images:
                varname = "v_pt_image_index_" + i
                if getattr(persistent, varname) != True:
                    setattr(persistent, varname, True)

    # Doughnut Gallery
    if not v_rewards_min_digits is None:
        for who, digits in v_rewards_min_digits.items():
            i = 0
            while renpy.loadable("images/rewards/lewd gallery/" + who + "/lewd_" + who + "_" + str(i + 1) + ".jpg"):
                i += 1
                varname = 'v_rewards_' + who + '_' + str(i).zfill(digits)
                if getattr(persistent, varname) != True:
                    setattr(persistent, varname, True)

    # Replay Gallery
    gallery_unlock_list = [
        'w11eow_nicole_bedroom', 'w11eow_yuki_sex', 'w11eow_svet_sex',
        'w11eow_k_sex'
    ]

    for gallery_unlock_item in gallery_unlock_list:
        varname = 'replay_' + gallery_unlock_item
        if getattr(persistent, varname) != False:
            setattr(persistent, varname, False)

    # Make sure the replay scenes are clickable
    for label in renpy.get_all_labels():
        renpy.game.persistent._seen_ever[label] = True
        renpy.game.seen_session[label] = True
It doesn`t unlock anything lol
 

Bahamut Zero

Engaged Member
Apr 27, 2017
2,609
2,000
Hi guys last time i play this game was till the end of chapter 1
So i see now that the game now have chapter 2 and 3 (just start now i think?)

Anyway what i wanna understand is
I see that every chapter have an incest patch. But i do not see an incest patch for chapter 3, so can someone explain it to me?
The game as a new relationship system? O we need to wait for a incest patch?
Just to understand because i need to restart the game to chapter 1, so i have a long way to go. So have no problem to wait for a incest chapter 3 patch.

can someone give me some info?

Thank you
 

Bubba56

Newbie
Jan 1, 2018
45
50
How does Mr. Dots do it? 3 games and every time the designated main girl is if not dead last near the bottom of rankings and its always the side girls that steal the show. Is it a curse?
 
  • Like
Reactions: VOYEUR and thesamp

Uthuriel

Conversation Conqueror
Jan 26, 2021
6,481
19,558
Hi guys last time i play this game was till the end of chapter 1
So i see now that the game now have chapter 2 and 3 (just start now i think?)

Anyway what i wanna understand is
I see that every chapter have an incest patch. But i do not see an incest patch for chapter 3, so can someone explain it to me?
The game as a new relationship system? O we need to wait for a incest patch?
Just to understand because i need to restart the game to chapter 1, so i have a long way to go. So have no problem to wait for a incest chapter 3 patch.

can someone give me some info?

Thank you
No patch needed... You only need it for CH1.

CH2 and 3 are the SS versions of the game which are pre-patched.
 

SevenCostanza

Member
Mar 3, 2021
459
907
A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.

Game version: Ch. 3 v0.01i Extras

Backup your persistent data if you have any doubts that this little unlocker might brick your game.

This mod shouldn't interfere with other mods.
If you use SanchoMod you really don't need this little script unless you aren't satisfied with the fully unlocked SanchoGallery.

Python:
# Use this unlock script at your own risk.
# https://f95zone.to/threads/.49330/post-11579614

# Start the deal with the devil
init 666 python:
    # Peeping Tom Gallery
    if not v_pt_images is None:
        for week_images in v_pt_images:
            for i, image_alt in week_images:
                varname = "v_pt_image_index_" + i
                if getattr(persistent, varname) != True:
                    setattr(persistent, varname, True)

    # Doughnut Gallery
    if not v_rewards_min_digits is None:
        for who, digits in v_rewards_min_digits.items():
            i = 0
            while renpy.loadable("images/rewards/lewd gallery/" + who + "/lewd_" + who + "_" + str(i + 1) + ".jpg"):
                i += 1
                varname = 'v_rewards_' + who + '_' + str(i).zfill(digits)
                if getattr(persistent, varname) != True:
                    setattr(persistent, varname, True)

    # Replay Gallery
    gallery_unlock_list = [
        'w11eow_nicole_bedroom', 'w11eow_yuki_sex', 'w11eow_svet_sex',
        'w11eow_k_sex'
    ]

    for gallery_unlock_item in gallery_unlock_list:
        varname = 'replay_' + gallery_unlock_item
        if getattr(persistent, varname) != False:
            setattr(persistent, varname, False)

    # Make sure the replay scenes are clickable
    for label in renpy.get_all_labels():
        renpy.game.persistent._seen_ever[label] = True
        renpy.game.seen_session[label] = True
Any way to change the name? It's just set at MC for me
 

colombeen

Member
Modder
Jul 16, 2021
289
1,588
Any way to change the name? It's just set at MC for me
I just checked, if you have a game that has been started, it should use the names from your save, if you haven't imported anything or started by settings everything up manually, it will use MC
 

SevenCostanza

Member
Mar 3, 2021
459
907
I just checked, if you have a game that has been started, it should use the names from your save, if you haven't imported anything or started by settings everything up manually, it will use MC
Ah crap ok I had to start a new game and input the settings. Any way to change this lol
 

NukaCola

Engaged Member
Jul 1, 2017
3,788
4,380
How does Mr. Dots do it? 3 games and every time the designated main girl is if not dead last near the bottom of rankings and its always the side girls that steal the show. Is it a curse?
Who are you talking about? I'm pretty sure the main girl, sister, shortcake is ranking pretty high. The one that dead is Yuki.
 
  • Like
Reactions: zombie666
3.50 star(s) 267 Votes