- Jul 16, 2021
- 343
- 2,092
Gallery Unlock Script
Description: A simple gallery unlock script. Extract the zip inside the game folder.
Game version: Ch. 3 v1.01i Extras
Download:
Description: A simple gallery unlock script. Extract the zip inside the game folder.
Game version: Ch. 3 v1.01i Extras
Download:
You must be registered to see the links
DISCLAIMER
This script makes permanent changes to your persistent data.
Removing this script will not revert the changes that have been made.
Make a backup if you ever want to be able to revert back without completely removing your persistent data.
SIDENOTE
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:
# Walkthrough
setattr(persistent, "v_walkthrough_locked", False)
# Peeping Tom Gallery
setattr(persistent, "v_xray_locked", False)
setattr(persistent, "v_xray_enabled", True)
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)
# Xmas Gallery
for item in range(1, 13):
varname = 'v_rewards_xmas_img_' + str(item)
if getattr(persistent, varname) != True:
setattr(persistent, varname, True)
# Ending images
for item in range(0, 21):
varname = 'ending_img_' + '{num:02d}'.format(num=item)
if getattr(persistent, varname) != False:
setattr(persistent, varname, False)
# Replay Gallery
gallery_unlock_list = [
'w11eow_nicole_bedroom', 'w11eow_yuki_sex', 'w11eow_svet_sex',
'w11eow_k_sex', 'w12sow_s_morning_sex', 'w12mow_tw_sex',
'w12eow_c_sex', 'w12eow_ash_sex', 'w12eow_s_evening_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
Last edited: