Gallery How I Became a Hero - Gallery Unlocker [Ch. 9] [colombeen]

Fallen Angel Productions

Game Uploader
Game Developer
Registered
Lewd
Joined
Apr 23, 2022
Threads
450
Messages
1,334
Reaction score
3,467
LC COIN
16,647
Members+
Updated: 2024-04-30
Game/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.

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
 

Attachments

  • HowIBecameAHero-GalleryUnlocker.zip
    728 bytes · Views: 61
Last edited by a moderator:
How many chapters will this game have? I'm highly invested in the story.
 
Back
Top Bottom