BwanaPower

Newbie
Jun 12, 2021
27
68
I have a serious question for the people who loved the Sis & Vicki scene
And who complain about Anti NTR complainers.
would you feel the same if it was a dude and not Vicki that had sex with Sis?
I'm not trying to troll I just want to see what people opinions on that are.
Good question. I wouldn't care for it, no, but it wouldn't really spoil the game for me. I'm not really identifying that much with the MC anyway and usually prefer male MCs who are more passive and literally out of the picture. I was, for example, really happy to see that the game "Bad Memories" had a female MC option. So yeah, since I don't see myself as the MC, I'd more likely care if I liked the dude she had sex with.
But that's pretty much my point: I get people not liking the scene or story trajectory, but this seemed more serious than that...
 

Savor

Active Member
Jan 30, 2018
546
555
did the dev mention how much chapters are planned at some point?
if not, what is your guess?
 

Hyperserver

often the biggest step forward is to "step back"
Donor
Jun 30, 2018
2,899
7,699
did the dev mention how much chapters are planned at some point?
if not, what is your guess?
chapter 2 used to be the last chapter in our origin planning.
But since the size of download would be over 2 GB, which can't be handled by android, we shortened the 2nd Chapter and therefore we put the next update and the then following endings for the different paths into a 3rd Chapter.
Even though that chapter 3 isn't a chapter like usual (will not have much story content except the endings).

If you count single "releases", i guess there will be 3 more - one to conclude the story, and 2 containing the endings.

Talking about "real time", SL will end around christmas, but remind that there will also be one more update reserved for the DMD fantasy update #2 within that timeframe.
 

hamod

Well-Known Member
Jan 5, 2021
1,405
849
A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.

Game version: Ch. 2 v1.00i Extras

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

FYI: The game has a bug where the last 4 replay scenes don't have an actual replay action which turns the button into an unclickable object. I've reported this but I'm not going to fix it myself.
If you can't wait for the official fix by the dev team, use this one from Sancho1969 https://f95zone.to/threads/sunshine-love-ch-2-v1-00i-extras-mrdots-games.49330/post-11247137


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-10658573

# 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 = [
        'w5sow_connie_call', 'w5sow_yuki_sex', 'w5sow_svet_around',
        'w5sow_s_shower', 'w5sow_s_bedsex', 'w5sow_mc_girls_calls',
        'w5mow_eastwing_s', 'w5mow_trisha_sex', 'w5mow_k_sex',
        'w6mow_hotel_room', 'w6mow_connie_changeroom', 'w6mow_ashley_date',
        'w6mow_c_date', 'w6mow_s_sexting', 'w6eow_himari', 'w6eow_nicole',
        'w6eow_twsex', 'w7mow_vicky_truck', 'w7mow_yuki_sex',
        'w7mow_s_shower', 'w7eow_k_church', 'w7eow_svet_room',
        'w7eow_vicky_eve_sex', 'w7eow_s_eve_sex', 'w8mow_jaz_sex',
        'w8mow_trisha_sex', 'w8mow_connie_sex', 'w8eow_ash_clothing_room',
        'w8eow_c_sex', 'w9mow_c_sex', 'w9mow_k_sex', 'w9mow_s_sex',
        'w9eow_s_sex', 'w9eow_ash_sex', 'w10mow_tri_sex', 'w10mow_tw_sex',
        'w10mow_vicky_sex', 'w10eow_himari_sex', 'w10eow_con_sex',
        'w11mow_ash_sex', 'w11mow_c_sex', 'w11mow_vickyonly_sex',
        'w11mow_lighthouse_sex', 'w11mow_vicky_s_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
    # The script below was found in a scrappy mod
    for label in renpy.get_all_labels():
        renpy.game.persistent._seen_ever[label] = True
        renpy.game.seen_session[label] = True
hello is there any gallery unlocker for CH1 as well ?????
 
3.50 star(s) 268 Votes