Questions tagged [leaderboard]
616 questions
7
votes
0 answers
Android - Google play service : Leaderboard, limited number of requests
It's new and it's sad. Since last Friday, it appears that Google have decided to limit the numbers of queries to the Leaderboard via loadCurrentPlayerLeaderboardScore.
I have a game that requests the access to 4 Leaderboards simultaneously, and…

Greelings
- 4,964
- 7
- 34
- 70
7
votes
5 answers
How to remove a Google Play Leaderboard highscore
I've just published my game and I see that the high score from testing is still present as the high-score. How do I remove it/reset the leaderboard?

Tickled Pink
- 969
- 2
- 14
- 26
7
votes
2 answers
How to cap a leaderboard in Redis to only N elements?
I need to create a leaderboard with maximum number of elements, say N ? I know how to use LPUSH + LTRIM to cap a list size to N elements. How to implement this for leaderboard using a Redis sortedset
So far my approach is to do this in 3…

user193116
- 3,498
- 6
- 39
- 58
6
votes
1 answer
Google Leaderbord ApiException
My leaderboard doesn't work properly. I am able to show my leaderboard, but submitting score isn't working with the following code I tried to find out what is the problem, I get a APiException Message: 26502:…

aulc
- 61
- 1
6
votes
1 answer
Game Center custom leaderboard - Do I really need to make 2 calls to get a player's alias?
I'm using game center to set up a custom leaderboard, when it comes to retrieving the data for my UITableView, I only get the playerID property for each entry, but not a much more useful alias property which I want to use to display who got each…

x0b
- 129
- 1
- 10
6
votes
1 answer
How to do leaderboards in Steamworks.NET?
I am trying to include leaderboards in my application (a game written in C#, using SteamWorks.NET and based on XNA).
Steam is initialized properly.
On gamestart I call:
SteamAPICall_t hSteamAPICall = SteamUserStats.FindLeaderboard("Most active beta…

ares_games
- 1,019
- 2
- 15
- 32
6
votes
1 answer
Android leaderboard not working after publish shows RESULT_APP_MISCONFIGURED error
I have added leaderboard to my application(game). It works fine while I run the application directly in my phone from Android studio . But after downloading the app from alpha testing in googleplay, the leaderboard is not working.
It shows app…

Tamal
- 200
- 1
- 11
6
votes
1 answer
SwarmConnect Facebook login
Hello I am using the SwarmConnect Social feutures for my Game to have a leaderboard.
Besides that i don't know yet how to costumize...their Documentation is very poor...
I have also trouble to connect to Swarm via the Facebook log in...maybe the…

Ilja KO
- 1,272
- 12
- 26
6
votes
2 answers
Google Play Store: My app page does not show the leaderboard and achievements icons/badges
I launched an app on google play store this week. The app uses Google Play Games Leaderboard and Achievements APIs. Should the app page in play store app not show these icons/badges like it does in other apps that use these APIs? Do i need to enable…

Viral Patel
- 32,418
- 18
- 82
- 110
6
votes
4 answers
Can I have android games using the same leaderboards and achievements in google play games
I have two games free one (with ads) and paid.
On iOS they share leader boards and achievements that are in one group.
Is it possible to have single leader board for those two apps in Google Play Games service to share. Shall I link to signle GPG…

michael
- 3,250
- 10
- 43
- 58
6
votes
1 answer
Game Center sandbox leaderboards wont show scores other than local score
I've been trying to get Game Center leaderboards working in a new iOS project for 3 days now.
The sandbox leaderboard only shows the user's local score, and not "all scores".
I can successfully post scores to leaderboards, and have done so from 4…

ch3rryc0ke
- 2,793
- 1
- 22
- 28
6
votes
2 answers
Leaderboards based on facebook
I am working on developing a game on iOS platform, integrated with Facebook.
I searched google and found a lot of different, confusing and outdated tutorials. That's why I decided to ask here.
I would like to show player actual ranks and player…

user1674978
- 61
- 1
- 2
5
votes
1 answer
Is it possible to have a Game Center "LowestScore" Leaderboard?
I've read that Game Center Leaderboard scores are only updated when the newly posted score is greater than the already existing score.
This made me wonder if it is possible at all to have a Game Center Leaderboard that stores scores counting down,…

CodeSmile
- 64,284
- 20
- 132
- 217
5
votes
0 answers
iOS show specific leaderboard Game Center
How can I display an specific leaderboard in Game Center?
My code is:
GKGameCenterViewController *gameCenterController = [[GKGameCenterViewController alloc] init];
if (gameCenterController != nil)
{
…

Jose19589
- 81
- 3
5
votes
2 answers
How to fetch top 10 scores from a specific gamecenter leaderboard with swift (iOS)
How to fetch top 10 scores from a specific gamecenter leaderboard in swift (iOS)?
I'd like to fetch top 10 scores and players from leaderbaord and build a custom "HALL OF FAMES" in game.
How to fetch datas from leaderbaord?

Fred The Dev
- 163
- 8