Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hi, is it possible to use a function to delete the persistent data for achievement? When I use the "Delete Persistent" option in renpy dev mode, all the achievements got reset to the initial stage, but when I use $ persistent._clear(progress=True) ingame, it doesn't do anything to the achievement (other persistent value got cleared, though).

Or is there another way to do it?

You can run achievement.clear_all() (https://www.renpy.org/doc/html/achievement.html#achievement.clear_all) to clear all achievements.

Thank you!