init 999 python: persistent.current_activation = "Kage" persistent.activation_tier = "SUBSCRIBESTAR" persistent.activated = True persistent.replay_unlocker = True def ipa_a(): return True def ipa_b(): return True def gallery_call_replay(item): renpy.mark_label_seen(item.replay) if not hasattr(persistent, "unlocked_replay_items") or persistent.unlocked_replay_items is None: persistent.unlocked_replay_items = [] if item.replay not in persistent.unlocked_replay_items: persistent.unlocked_replay_items.append(item.replay) renpy.save_persistent() def gallery_call(item): renpy.mark_image_seen(item.shown_as) if not hasattr(persistent, "unlocked_gallery_items") or persistent.unlocked_gallery_items is None: persistent.unlocked_gallery_items = [] persistent.unlocked_gallery_items.append(item.display_name) renpy.save_persistent() item.is_locked = False