Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Ren'Py Achievements Framework

A (hopefully) easy way to add achievements to your Ren'Py game · By bobcgames

Resetting achievements

A topic by Brand New Whatever created Jan 03, 2024 Views: 86 Replies: 2
Viewing posts 1 to 3

Hi!

First of all, thanks for developing this awesome solution. I have a noob-ish question for you.

What's the easiest way to reset the achievement tracking? Even if it's doable by renaming the IDs, I was wondering if there is a way of deleting its progress.

cheers!

Developer(+1)

From the Ren'Py Launcher, you can use "Delete Persistent" to delete all persistent data for your game, including the achievements. (I believe this will also delete save files.)

Alternately, you can add a button like this to any screen, which will clear all achievements when clicked:

textbutton _("Clear Achivements") action Function(achievement.clear_all)

Awesome, thank you.