# Use this unlock script at your own risk.
# https://f95zone.to/threads/.102593/post-10868863
# Start the deal with the devil
init 666 python:
# Replay Gallery
scenes_unlock_list = [
# Scenes
'pro_beth_01', 'pro_vania_01', 'pro_zoe_01', 'pro_ashley_01',
'pro_melissa_01', 'pro_zoe_02', 'pro_zoe_03', 'pro_ashley_02',
'pro_ashley_03', 'pro_vania_02', 'pro_beth_02', 'pro_secon_01',
'pro_secon_02', 'pro_secon_03', 'ch1_van_01', 'ch1_zoe_01',
'ch1_seer_01', 'ch2_zoe_01', 'ch2_melash_01', 'ch2_zoe_02',
'ch2_zoe_003', 'ch2_zoe_04', 'ch2_ruby_01', 'ch2_van_01',
'ch2_van_02', 'ch2_ash_01',
# 100% checks
'pro_vania_unlock_energy_01', 'pro_vania_unlock_energy_02', 'pro_vania_unlock_energy_03', 'pro_vania_unlock_energy_04',
'pro_mel_scene_rough', 'pro_ashley_scene_deep', 'pro_zoe_scene_100', 'pro_ashley_03_100',
'pro_zoe_03_100', 'ch1_van_snew', 'ch1_zoe_lickass'
]
for gallery_unlock_item in scenes_unlock_list:
if getattr(persistent, gallery_unlock_item) != True:
setattr(persistent, gallery_unlock_item, True)
# Rewards Gallery
for gallery_unlock_item in range(1, 22):
varname = 'pro_' + f'{gallery_unlock_item:03}'
if getattr(persistent, varname) != True:
setattr(persistent, varname, True)
# 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