Trying a leaderboard.
I've never thought about this before for some reason, but for this LD I plan on having an online leaderboard that any player can submit their score and name to, I've found https://silentwolf.com which is a free backend for small Godot games (by one goated dev) and spent some time getting familiar with their API.
Since this is my first time doing this I'd appreciate any tips on what makes an engaging leaderboard, I have some questions like: - Should I keep all entries by each player or only keep one entry and replace it whenever the player gets a higher score? - Should I limit the amount of characters in a player name like old arcade games or allow any length? - Should I implement anti-profanity or just manually delete bad words in the database? - How many scores should I display before older entries are ignored? etc...