• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

SonsOfLiberty

Board Buff
Game Compressor
Sep 3, 2022
17,590
142,270
How I Became a Hero [Ch.8] [Naughty tales studios]

COMPRESSED:

Win/Linux:
- - -

Mac:
- - -
 

kiljaeden

Active Member
Jun 2, 2019
763
827
Gallery Unlock Script

Description: A simple gallery unlock script. Extract the zip inside the game folder.
Game version: Ch.7

Download: MEGA



Python:
# Use this unlock script at your own risk.
# https://f95zone.to/threads/.133017/post-10537430

# 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, 64))
    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
This need update?
 
4.10 star(s) 51 Votes