init python: def unlock(): store = renpy.python.store_dicts['store'] ALL_LADIES = store["ALL_LADIES"] all_ladies = store["all_ladies"] for lady_tag in persistent.all_ladies: lady = all_ladies[lady_tag] lady_core = ALL_LADIES[lady_tag] lady.met() [lady.outfit(i) for i in range(2, lady_core.max_outfits+1)] config.after_load_callbacks.append(unlock) config.start_callbacks.append(unlock) # make sure that default statements are modified after startup