Questions tagged [leaderboard]
616 questions
5
votes
0 answers
Google play services doesnt displays leaderboard after Auth
Its a very weird have invested a lot of time in this. So asking here.
I am using this plugin and followed the steps https://github.com/playgameservices/play-games-plugin-for-unity
I just want to use Google play services in release mode for…

Sumitiscreative
- 647
- 3
- 10
- 24
5
votes
1 answer
Can Aerospike's Large Ordered List match the Sorted Sets of Redis for Leaderboards?
I'm considering replacing Redis with Aerospike and I wanted to know if aerospike is capable of delivering the same capabilities and performance as Redis's sorted sets for Leaderboards within an application. I need to be able to quickly insert, read…

Johny Jose
- 533
- 4
- 11
5
votes
1 answer
Google Play Games Services Leaderboard API, can't see other players' scores
I am developing an Android app in which I use the Google Play Games Services API. I have successfully implemented leaderboards in every aspect except I can't see the scores of other players, only my own currently signed-in player score is shown.
It…

aez
- 2,406
- 2
- 26
- 46
5
votes
2 answers
Game Center / GameKit reporting score if network is not available
I'm creating game like application supporting Game Center. And I have a problem with reporting score to leaderboard when the player is authenticated to gamecenter correctly but the network (wifi or cellular) is not available in the time when I want…

D33
- 239
- 1
- 3
- 14
5
votes
1 answer
How to enable Facebook like button in game center for iOS 6?
I'm making an App which supports game center. Within the leaderboard page there's a facebook like button. However it's disabled. Will it be enabled when it's for sale in the Appstore or do I need to do additional configurations in code?

BarryK88
- 1,806
- 2
- 25
- 41
4
votes
2 answers
MySQL: Querying a leaderboard with ties
I know this is a popular topic, but I still haven't found quite what I'm looking for. I'd like to query one table
BOOKS_READ
id
user_id
book_id
to format a leaderboard of users who have listed the most books as having been read. When a user reads…

coopertroop
- 41
- 2
4
votes
1 answer
How to add custom GUI to Game Center to match the look and feel of the iphone game?
Does anyone has any idea how to create custom leaderboard and achievements view in game center
so that it matches the view of the original game..?

Tornado
- 1,069
- 12
- 28
4
votes
4 answers
Creating a basic HTML/Javascript Leaderboard
Whether or not it's easily possible and done with Javascript I'm not sure but..
As shown in the code below, I've 5 players, each with a different score. I'm looking to code it so that it will automatically relist the players based off how high their…

SteveyG
- 69
- 1
- 1
- 6
4
votes
1 answer
Leaderboard - No public scores for this game
I've setup google play game services to my app and added a leaderboard. I've added the game id and leaderboard id in code. And now both the application and game are published.
Code used to launch leaderboard
if(mclient.isConnected())
…

Divya
- 543
- 2
- 13
- 20
4
votes
2 answers
How to open "All" by default instead of "Social" in Google Leaderboard?
I have integrated Google Leaderboard in my android game app. When I open it, it goes to "Social" mode by default (aka my Google circle). I need to manually switch to "All" mode (players from all around the world). How can I make "All" mode default?

Trondro Mulligan
- 485
- 3
- 19
4
votes
3 answers
How to delete a hacked score from Google Play Game Services leaderboard?
I have a leaderboard with tamper protection ON since it's creation, but a player has added a hacked score of some millions of points (human reachable max of points is less than 1000)
How can I delete only that hacked score? It must be a way to do…

NullPointerException
- 36,107
- 79
- 222
- 382
4
votes
1 answer
Why are Google Play games icons not shown in Play Store?
I have made a small game just to test my development skills. I integrated Google Play Game Services, like leaderboards and achievements. Why are the logos for leaderboards and achievements not shown in the play store? I'm talking about the logos…

Kenyakorn Ketsombut
- 2,072
- 2
- 26
- 43
4
votes
0 answers
GKLeaderboard's timeScope does nothing?
I am trying to make a leaderboard using GameCenter on iOS7 that shows only scores submitted in the last week.
I am aware that with iOS7 the use of timescope when opening the gamecenter view controller has been deprecated, but every post I find on…

Chris Wallace
- 41
- 3
4
votes
4 answers
Top 5 scores from google leaderboard
My requirement is to get top 5 scores from leaderboard and display it in my app.
There is a method loadTopScores but it shows the scores in its own UI i guess.
mGamesClint.loadTopScores(new OnLeaderboardScoresLoadedListener() {
public…

Sandeep R
- 2,284
- 3
- 25
- 51
4
votes
1 answer
How Can I Display All Available Game Center Leaderboards, Rather Than Automatically Showing The Default Leaderboard?
To load the Game Center leaderboard, I currently call:
-(void) showLeaderboard:(NSString*)leaderboardId
{
GKLeaderboardViewController *viewController = [GKLeaderboardViewController new];
viewController.leaderboardDelegate = self;
if…

phpN00b
- 138
- 13