This write-up covers the system, a security feature introduced in Ren’Py 8.1 to protect users from malicious save files . What is a Save Token?
If you try to load a save file that doesn't have a matching token (like one downloaded from a forum or transferred from another PC), the game will display a warning asking for your permission to load it. How to Bypass "Save Protection"
# Register token when player finishes ending A label ending_a: $ renpy.register_save_token("ending_a_seen", True) return savetoken renpy
screen save_game_menu: add "bg" text "Save Game": xalign 0.5 yalign 0.5 imagebutton: pos (0.5, 0.6) idle "button_idle" hover "button_hover" action Call(label="save_game")
Save tokens are useful for several reasons: This write-up covers the system, a security feature
Are you looking to this for a game you're developing, or are you trying to bypass it to use a specific save file?
# Define multiple save tokens define e_save_token1 = "my_save_token1" define e_save_token2 = "my_save_token2" How to Bypass "Save Protection" # Register token
Find the file named savetoken.py within the renpy/ folder of your game directory. Modify the line: Look for the line: if token_dir is None: . The fix: Change it to if True: .