- Jul 16, 2021
- 369
- 2,525
- 397
Gallery Unlock Script
Description: A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.
Game version: v1.7.5 Extended (but should work on newer versions as well)
Download:
Description: A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.
Game version: v1.7.5 Extended (but should work on newer versions as well)
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/.65957/post-10656261
# Start the deal with the devil
init 666 python:
# Persistent update function
def cGU_Set_Persistent(PersistentAttr, NewValue):
if getattr(persistent, PersistentAttr) != NewValue:
print('[GalleryUnlocker] Set persistent.' + PersistentAttr + ' = ' + str(NewValue) + ' (Old value: ' + str(getattr(persistent, PersistentAttr)) + ')')
setattr(persistent, PersistentAttr, NewValue)
for PersistentAttr in dir(persistent):
for item in ['gallery_', 'lewd_', 'extra_', 'bg_']:
if PersistentAttr.startswith(item):
cGU_Set_Persistent(PersistentAttr, True)
# 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
You don't have permission to view the spoiler content.
Log in or register now.
Last edited: