Questions tagged [leaderboard]
616 questions
3
votes
1 answer
Google Play Leaderboard not showing up after posting score to leaderboard in Unity3d
I have enabled google play games plugin in my Unity Project. The Unity version is 5.3.4f1. The google play games plugin version is 0.9.32. I have successfully logged in to the google play games service in my project. After submitting the score,and…

njnjnj
- 978
- 4
- 23
- 58
3
votes
1 answer
Launch Count on iPhone App
Ok I want to keep track of how many times my iPhone App has been launched. I will be using this number for a "leader board" for our most active user. I figured the code needs to be in the -DidBecomeActive method being that in iOS4 the app may remain…

Adam Nieto
- 35
- 3
3
votes
1 answer
Android Leaderboard will not display
I do not have any errors when submitting my scores using:
public void submitScore(int score)
{
Games.Leaderboards.submitScore(mGoogleApiClient, "leaderboard_easy_leaderboard", score);
}
but when I run my display leaderboard code:
public void…

pdonlon
- 53
- 7
3
votes
1 answer
Displaying google play game services player image using imageview
I'm working with Google play game services and I'm using this code to get player detail.
if (gamesClient != null) {
Games.Leaderboards.loadCurrentPlayerLeaderboardScore(gamesClient,
…

Suresh
- 427
- 1
- 6
- 22
3
votes
0 answers
Google play game has stopped after update score to leaderboard
When I update my score to the leaderboard, and then I open the leaderboard, Google play game has stopped. Can anyone help me with this?
I update the score with this code:
Games.Leaderboards.submitScore(myclient,
…

thanhcs94
- 61
- 1
- 6
3
votes
4 answers
Application is missing a default group leaderboard (ItunesConnect error)
I am trying to update my game from 1.0 to 1.1 but get this error:
"Application is missing a default group leaderboard (ItunesConnect error)"
image:
I also can't save anything, when I try to i Get this error:
There was an error saving changes.…

sdd
- 889
- 8
- 29
3
votes
0 answers
Android Leaderboards - How to disable option for "Today", "This Week" and "All Time"
I have built an incremental leaderboard as specified in this question
Problem is that android leaderboard shows options for "Today", "This Week" and "All Time". Since my leaderboard is incremental, it doesn't make any sense for me to have these…

Nilesh Rajani
- 538
- 6
- 16
3
votes
2 answers
Google Play Leaderboard UI Color Change
In the game I just developed, the Leaderboard UI color was dark translucent green until a week ago. This was feel-good looking(at least non-irritant to eyes). All of a sudden it changed to bright translucent red and is staying in that color since…

DroidHeaven
- 2,414
- 3
- 25
- 31
3
votes
0 answers
Can i decrease leaderboard score?
I'd like to decrease the score when player loses.
Since leaderboard automatically ignores lower score than it has,
I wonder there are anys way to do this. thanks!

Youngsu Choi
- 31
- 1
3
votes
2 answers
Done button in game center leader-board doesn't work
When i press done button in leaderboard view, it doesn't do anything and leaderboard is still visible.
here is code:
GKGameCenterViewController *gcViewController = [[GKGameCenterViewController alloc] init];
gcViewController.gameCenterDelegate =…

user3695947
- 91
- 6
3
votes
2 answers
How to show first Public Leaderboards instead of Circles Leaderboards?
when you are showing a Google Play Game Services LeaderBoard with this code:
startActivityForResult(Games.Leaderboards.getLeaderboardIntent(getApiClient(), "333333assad87asd"), 1);
It's first showed the "circles" leaderboard. I want to show first…

NullPointerException
- 36,107
- 79
- 222
- 382
3
votes
3 answers
Global leaderboard in Google App Engine
I want to build a backend for a mobile game that includes a "real-time" global leaderboard for all players, for events that last a certain number of days, using Google App Engine (Python).
A typical usage would be as follows:
- User starts and…

user3345143
- 55
- 4
3
votes
3 answers
Game Center iOS 7 not working
Followed the Ray Wenderlich tutorial on implementing the Game Center with iOS 7
http://www.raywenderlich.com/3276/game-center-tutorial-for-ios-how-to-make-a-simple-multiplayer-game-part-12
However I am not getting a prompt to sign in nor is the…

Sami
- 1,374
- 1
- 16
- 43
3
votes
0 answers
GameCenter leaderboards - why am I only getting my own scores back?
Trying to test out a leaderboard. I do this:
GKLeaderboard *leaderboardRequest = [[GKLeaderboard alloc] init];
if (leaderboardRequest != nil)
{
leaderboardRequest.playerScope = GKLeaderboardPlayerScopeGlobal;
…

soleil
- 12,133
- 33
- 112
- 183
3
votes
2 answers
PHP Reward points to leaderboard and account for ties
Okay I've been beating my head over this one for a while and google searching trying to find anything to lead me in the right direction to no avail.
So I have a ranked leaderboard array like so:
[1] = array('points' => '99', 'rank' => '1');
[2] =…

Al Bundy
- 43
- 4