Hi! First of all.. thank you for this AMAZING system! I love it! Been using it in a few projects haha. Now for my question: Is there any implementation to have records based on lowest score by a player (such as a speedrun timer)? Or is the way to go right now simply checking whether the player has gone quicker than their previous time, and only THEN upload/update the result?
Thank you!
EDIT: Figured it out! In case anyone else needs something similar:
1. Upon entering wherever you would submit your new "high score", first check to see if a personal entry already exists.
2. If yes, check if your new score is lower than your personal entry.
3. If yes, and the user presses a submit button:
4. Delete current personal entry
5. In the "Success" callback, put the code to upload an entry.
Hope that helps!