Questions tagged [game-center-leaderboard]

The game-center-leaderboard tag is used for questions on Apple's Game Centre service that use the leaderboard function. DO NOT use this tag for android questions.

The game-center-leaderboard tag is used for questions on Apple's Game Centre service that use the leaderboard function. DO NOT use this tag for android questions.

167 questions
1
vote
1 answer

Implement a Game Center leaderboard (iOS 7)

I need help with developing Game Center! I found this developer web page http://blog.lucaslouca.com/game-center-leaderboard-ios-7-app/#comment-3761 and need some help with it Here are my questions! Hi, my name is David! I have developed game, it is…
1
vote
1 answer

Calling method from viewcontroller to class xcode

I don't know if it is possible, but I would like to call a view controller's method in a class object. I have method like this in my view controller's .m file: -(void)showLeaderBoard { GKLeaderboardViewController *leaderboardController =…
1
vote
1 answer

How to load the default leaderboard in iOS 7

Goal: Show the local user the default leaderboard when he/she clicks the leaderboard button in the app on their ios 7 device. [[GKLocalPlayer localPlayer] loadDefaultLeaderboardIdentifierWithCompletionHandler:(void(^)(NSString…
1
vote
0 answers

Only my own score is showing on leaderboard on my released iOS app

I released my app yesterday and few units were sold so far. But I figured out that the leaderboard doesn't work properly. I can only see my own score when I'm done with my game. Is there some kind of delay until the leaderboard is updated or is it a…
slow
  • 805
  • 3
  • 13
  • 27
1
vote
0 answers

Global Leaderboards for Windows Phone 8 XAML games

How to implement Leader Boards in Windows Phone 8 games developed in XAML and C#. Apple has a game center. Is there anything available for Windows Phone 8 like that? Users should be able to submit their scores using their live account.
Jawahar
  • 4,775
  • 1
  • 24
  • 47
1
vote
1 answer

Open single leaderboard

I have a problem with the GameKit, I already have two leaderboards integrated into my app. When I open the leaderboard always appears just one leaderboard, but I have 2 I want to open the second leaderboard, how can I do that? Here is my code to…
1
vote
1 answer

Coding a Second Leaderboard

I am making a game in which the player can achieve a positive high score or a negative low score depending on the choices they make. The code that I've been using works great if there is only one leaderboard, but I'm having trouble when I try to add…
1
vote
1 answer

Game Center leaderboard shows one result

I've sent scores to the leaderboard with different test accounts but when I try to see the leaderboard I can only see the score from the account that I'm logged in. I used this code to send the scores : - (void)reportScore:(int64_t)score…
1
vote
1 answer

Setup Game Center Leaderboard so it's a counter

Is it possible to set up a Game Center leaderboard so it the "score" is persistent ? I want to use leaderboards to show the number of wins a player has, but I don't see how it's possible to just increase a counter with a leaderboard, is that…
Phil
  • 2,995
  • 6
  • 40
  • 67
1
vote
0 answers

Game Center Leaderboard says "No Leaderboards"

I try to show the leaderboard for my game with Game Center. When I click on the Game Center Button in my game the following is called: - (void)showGameCenterButtonPressed:(id)sender { { if ([GKLocalPlayer localPlayer].authenticated == NO) { …
Elio_
  • 398
  • 4
  • 13
1
vote
0 answers

GameCenter Leaderboard in SpriteKit causing error

I finished my game in Sprite Kit and am now trying to store the highscore in GameCenter's Leaderboards. I followed some tutorials that worked great for none-spritekit-projects. Steps to my error: I debug my app without any errors, some warnings but…
0
votes
0 answers

Unreal Engine 5.1.1 Not writing to IOS Apple Game Center Leaderboards anymore

Leaderboards in unreal engine 5.1.1+ seem to no longer work. Last known working in 4.27.2. Has any one experienced the same issue or have a workaround. I cannot seem to write to leaderboard anymore. Unreal Engine 5.1.1 Not writing to IOS Apple Game…
0
votes
0 answers

User Rank from sorted set using dense ranking method

I am trying to build leaderboard for which I am using redis sorted set. I need to return user rank who is invoking api /getMyRank?uid=55 I need to return users rank using dense ranking method. For those who are unaware of dense ranking here is the…
0
votes
1 answer

Best practices: How to synchronize local and remote high scores in iOS Game Center with switching users?

I have published an iOS game with a high score list. This list is stored locally on the device. The game is not user-aware, i.e. all scores achieved on a given device go to the same list. The upcoming game version will add Apple Game Center support.…
fieres
  • 736
  • 7
  • 10
0
votes
0 answers

How to create leaderboard with data sorted by my game type not by player in game center?

I have lot of type of one single game in my ios app. Every type has a separate leaderboard in game center. And it works. Every leaderboard has its own table sorted by players from highest score. Now I need another leaderboard where I would like to…