Thank you!
shinytaro
Recent community posts
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?
Thank you! I do have that yoffset part in my code. When I toggle the achievements in the gallery, the multiple popups show stacking on each other just fine, but in the game, only one popup show up at a time .
Here is the code for granting two achievements at the same time, I think it works because the if A is unlocked and I have B, the C will get unlocked in the gallery, its just that C popup doesn't show in the game.
Currently, I'm using renpy 8.5.2
$ ending_A.grant() if ending_A.has() and ending_B.has(): $ ending_C.grant()