Updated: 2024-04-30Game/Creator: How I Became a Hero
Modder: colombeen
Mod Version: Ch. 9
Game Version: Ch. 9
Language: English
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.
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.
Installation:
A simple gallery unlock script. Extract the zip inside the game folder.
Unlock Script:
# Use this unlock script at your own risk.
# Download
# Start the deal with the devil
init 666 python:
# If there is no MC name yet, just put in MC instead of None
if persistent.pname is None:
persistent.pname = 'MC'
# Define all unlockable items
gallery_standard_unlock_list = list(range(1, 70))
gallery_non_standard_unlock_list = ['5b']
# Loop through all persistent data
for gallery_unlock_item in (gallery_standard_unlock_list + gallery_non_standard_unlock_list):
varname = 'scene' + str(gallery_unlock_item)
setattr(persistent, varname, 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
# Download
# Start the deal with the devil
init 666 python:
# If there is no MC name yet, just put in MC instead of None
if persistent.pname is None:
persistent.pname = 'MC'
# Define all unlockable items
gallery_standard_unlock_list = list(range(1, 70))
gallery_non_standard_unlock_list = ['5b']
# Loop through all persistent data
for gallery_unlock_item in (gallery_standard_unlock_list + gallery_non_standard_unlock_list):
varname = 'scene' + str(gallery_unlock_item)
setattr(persistent, varname, 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
Attachments
Last edited by a moderator: