Reputation: 578
I am working on an android game(which is created using Unity3d engine) and I was trying to use google game service features when I stumbled upon a question implementing leaderboards.
Is there any way to sort player scores based on their location?
I want players to know their rank in their country, continent, etc. Something like google's time based leaderboards(daily, weekly and monthly)
Do I have to implement this feature myself? If so leave your thoughts and ideas.
Upvotes: 3
Views: 391
Reputation: 272
Creating your own leaderboard means you have to write a Server (i.e. a HTTP Server) that can store the players, the scores and the locations (preferably in a database). Getting the location of your users depends on the final build (browser, app, windows exe, etc.)
Upvotes: 1