- Apr 7, 2021
- 342
- 1,207
Here is a slightly cleaner and faster way of doing same thingGallery Unlock Script
Description: A simple gallery unlock script. Extract the zip inside the game folder.
Game version: v3.4.1 S3 Ep.4 (should work on future versions as well)
Download: MEGA
Python:# Use this unlock script at your own risk. # https://f95zone.to/threads/.75232/post-12144221 # Start the deal with the devil init 666 python: # Memories if not memories_list is None: for gallery_unlock_list in memories_list: for gallery_unlock_item in gallery_unlock_list.list: unlockMemory(gallery_unlock_item, False) # Achievements # Had to redefine the function to prevent the audio playback and # the notification when unlocking it while starting the game def unlockImage(var, notify = True): if var[1] == False: if notify: renpy.play("audio/fx/Achievement Sound.mp3", channel='sound') renpy.notify("You have unlocked a new image") var[1] = True if not achievement_list is None: for gallery_unlock_list in achievement_list: for gallery_unlock_item in gallery_unlock_list.list: unlockImage(gallery_unlock_item, False)
Python:
for el in achievement_list:
for ach in el.list:
ach[1] = True
for sce in memories_list:
for mem in sce.list:
mem[1] = True