Questions tagged [leaderboard]
616 questions
2
votes
1 answer
Stringify data in an array with local storage
I have tried several times to get this to work, I am making a leaderboard with a text function input that sets the local storage values. I can not get it to work with making my key an array ,so that i can have multiple values to the same key.
var…

Adam Klint
- 21
- 2
2
votes
2 answers
How to sort data stored in a text file by high score in c#
I am making a quiz game for my computing coursework and I have completed the quiz part of my application and I am currently moving on to my leader board but to do that I need to sort my scores text file which contains the users name, score and time…

joe
- 31
- 1
- 5
2
votes
2 answers
Creating a leaderboard in Java using primitive arrays
I'm creating a console game in Java. And I want to keep track of the scores and names.
I've already created two arrays.
String[] PlayerNames = {"Bob", "Rick", "Jack"}; // just an example
int[] PlayerScores = {40, 20, 60}; // just an example
I…

Lukas Méndez Duus
- 406
- 5
- 17
2
votes
0 answers
Achievements aren't updating with google play games
so i have made two games with unreal engine (BLUE PRINT ONLY) for android which are published and has already set achievements and leaderboard in google play.
Problem is when player unlocks achievement, it popups "unlocked achievement" and also it…

sky soft
- 21
- 3
2
votes
1 answer
How to show user position in a leaderboard with Firebase datas?
I have a leaderboard in my ionic app, where I show the position of each registered user, the usernames and the points that the users earned.
Usernames and points are stored into the database, instead, I define the position printing an index for…

JEricaM
- 794
- 2
- 15
- 37
2
votes
2 answers
Delete GameCenter Leaderboard - iTunes Connect
My game currently has four leaderboards for differently difficulties, however this is going to change in a new update.
I no longer want to make use of all of these, but only one. How can I setup the new version to only use this new leaderboard and…

Josh Kahane
- 16,765
- 45
- 140
- 253
2
votes
0 answers
Rank and Total Number of players
I'm going to use iOS Leaderboard (GameCenter) to store the player scores.
In my game, I need to display the message like 'You are in TOP XX% players'. To do that I need to know the total number of players and the rank of current player.
1) Is there…

Anton
- 2,846
- 1
- 10
- 15
2
votes
1 answer
google play services, resultcode 0 onactivityresult
I've been trying to connect up to google play services without any success. I've been checking that all the keys and id's are correct.
But I'm not getting any traffic on my API manager.
What on earth could be the problem?
protected void…

Rickard Fager
- 21
- 1
2
votes
0 answers
Leaderboard Facebook Score Api Swift
I'm a new developer and have been trying to find a swift 3 tutorial for how to create a leaderboard based on Facebook's Score API - without any result.
I only find their own documentation, not in swift and I can't understand any of the process.…

Mate
- 99
- 10
2
votes
2 answers
Is BaseGameUtils still necessary? (Implementing Android leaderboards)
I'm porting to AndroidStudio format an old game project which is using using old BaseGameUtils Eclipse style Android library project, which must be imported as a library to the game project.
Is there a gradle dependence alternative to BaseGameUtils…

NullPointerException
- 36,107
- 79
- 222
- 382
2
votes
1 answer
Photon Unity Leaderboard sorting
I am trying to get the scores of the players in multiplayer mode using Photon Unity Networking.
PhotonNetwork.playerList[i].GetScore();
I use the above line to get the scores of all the players in the room currently.
I added the Player Name and…

Geniuz
- 39
- 4
2
votes
1 answer
Leaderboard Ranking in MySQL with viewer in middle of resultset
I have a Leaderboard that looks like this:
|--------------------------------------|
| userId | allTimePoints | allTimeRank |
|--------------------------------------|
| .. | ... | ... |
| xx | 5555555 | ? |
|…

DTs
- 1,196
- 1
- 11
- 28
2
votes
1 answer
user can't log into google play services
User authentication doesn't work in my app that I'm making for android. This is the script that is attached to an empty game object in my main menu.
void Start()
{
PlayGamesPlatform.Activate();
PlayGamesPlatform.DebugLogEnabled =…

sakurashards
- 37
- 1
- 6
2
votes
1 answer
Is Google Play multiplayer p2p only?
I am implementing multiplayer android game. I am considering using some API to handle multiplayer. I decided to AppWarp and actually it works but I am afraid that game won't earn fo itself as this is paid service.
I've read about google multiplayer…

Mateusz Gaweł
- 673
- 1
- 8
- 22
2
votes
0 answers
Game Center Leaderboard is only showing current player's score
I tried posting this on the Apple Dev Forums, but I get an error message there.
I have a game up on the App Store that I developed:
https://itunes.apple.com/us/app/trading-day/id973564365?mt=8
Players are reporting that they can only see their…

Matt Brand
- 346
- 1
- 4
- 17