- Jul 16, 2021
- 340
- 2,038
Gallery Unlock Script
Description: A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.
Game version: v0.8 (but should work on future versions)
Description: A simple gallery unlock script. Just place it in the game folder and everything should be unlocked.
Game version: v0.8 (but should work on future versions)
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.
Python:
# Use this unlock script at your own risk.
# https://f95zone.to/threads/.62625/post-10577011
# Start the deal with the devil
init 666 python:
# Check if the scene list was defined
if not persistent.scene_list is None:
# Loop through all persistent data
for gallery_unlock_item in persistent.scene_list:
if gallery_unlock_item.is_locked == True:
unlock_scene_item(gallery_unlock_item.item_id)
# Check if the image list was defined
if not persistent.image_list is None:
# Loop through all persistent data
for gallery_unlock_item in persistent.image_list:
if gallery_unlock_item.is_locked == True:
unlock_image_item(gallery_unlock_item.item_id)
# Check if the achievements list was defined
if not persistent.achievements is None:
# Loop through all persistent data
for achievement_unlock_item in persistent.achievements:
if achievement_unlock_item.is_locked == True:
unlock_achievement(achievement_unlock_item.achievement_id, True)
Last edited: