Questions tagged [leaderboard]
616 questions
3
votes
1 answer
Integrating Leaderboarad Heyzap with sample app
Hi I am integrating Heyzap Leaderboard with my app for the first time. I have gone through this document on the official website of Heyzap. But I feel they have guided only on the check-in Heyzap.
I downloaded sdk for leaderboard Heyzap and made…

nidhi
- 763
- 5
- 17
3
votes
2 answers
Centralized leaderboard for Android
Does Android provide a centralized leaderboard feature like Apple's Game Center leaderboard? (so that there is no need to use 3rd party services like OpenFeint)

Jonny
- 15,955
- 18
- 111
- 232
3
votes
3 answers
Redis zrevrangebyscore, sorting other than lexicographical order
I have implemented a leader board using sorted sets in redis. I want users with same scores to be ordered in chronological order, i.e., user who came first should be ranked higher. Currently redis supports lexicographical order. Is there a way to…

goyalankit
- 843
- 8
- 23
3
votes
1 answer
Is there an equivalent to Game Center for Windows 8 Store applications?
I've found ScoreLoop for WP7 but can't find anything for Windows 8 games. Ideally I want something that manages leaderboards, awards, badges, etc.
Does such a thing exist for Windows 8 Store apps?

Faster Solutions
- 7,005
- 3
- 29
- 45
3
votes
1 answer
IOS Gamecenter Leaderboard : Multiple score entries for single player
I have a simple query about Apple's gamecenter leaderboards.
Is there a possibility of making multiple score entries for a single player?? Example, I have a score of 100 first and then i score 200, I need both the scores to be displayed for me on…

Flamy
- 313
- 3
- 14
2
votes
1 answer
Leaderboards giving no scores
I have an iPhone application with leaderboards. The submission of scores work successfully and at the leaderboards page show "1 of 1 player" and "1 of 1 friend" under/above the leaderboard. But when I click on the leaderboard, I get "No Scores". Is…

Sami
- 1,369
- 14
- 35
2
votes
0 answers
Is there any way to customize Google Play services Leaderboard on Android(Kotlin)?
I'm wondering if there is a way to customize the Default leaderboard UI of Google Play.
Can we for example get a list of users and all attributes (Score, ID, name, icon, etc...) and make our own UI with Google Play game service leaderboard?
Thank…

Loïc Jackotin
- 563
- 3
- 12
2
votes
0 answers
In Unity when should Social.localUser.Authenticate be called?
In native iOS, to authenticate a GameCenter player we call this just once:
GKLocalPlayer.LocalPlayer.AuthenticateHandler = delegate (UIViewController authenticationViewController, NSError error) // error is just to assist with debugging, eg error…

Bbx
- 3,184
- 3
- 22
- 33
2
votes
4 answers
Creating a leaderboards, how would I go about displaying rank/position?
I am creating a leaderboards which will display the following: Rank, Username, Score
I currently have the table to it will display Username and Score from the data in a mysql table, I am just wondering how would I go about displaying a rank for each…

Daniel
- 55
- 2
- 11
2
votes
1 answer
Leaderboard from database using MongoDB/Mongoose
In each document there is a level field with a Number value and a twitch_username with a String value. I want to return these values like so:
1. Twitch: Level:
2. Twitch: Level:
3. Twitch:…

kal
- 39
- 4
2
votes
1 answer
Monotouch Achievements and leaderboard viewcontrollers
Im having an odd issue with dismissing my achievements and leaderboard viewcontrollers.
The viewcontrollers display correctly and can be dismissed using the done button but only if you press it within about 15 secs of it being displayed, if you…

JonBull2013
- 315
- 1
- 3
- 9
2
votes
1 answer
App does not support leaderboards - iMessage App
I have an iMessage app, and trying to get Leaderboard scores. I am getting error:
Error Domain=GKErrorDomain Code=3 "The requested operation could not
be completed due to an error communicating with the server."
…

NightFury
- 13,436
- 6
- 71
- 120
2
votes
0 answers
How to build a leaderboard in Django that allows for arbitrary querying and slicing?
I have a basic leaderboard in Django 2 that looks like this:
from django.db import models
class Leaderboard(models.Model):
username = models.CharField(max_length=200)
score = models.PositiveIntegerField()
class Meta:
indexes…

Ben Wilber
- 843
- 8
- 15
2
votes
1 answer
Mongodb : how to use aggregate to build standings on nested fields
This is my collection :
[
{userId: "u1", data: { score1: 1, score2: 2, score3: 3 }, day: 1},
{userId: "u1", data: { score1: 1, score2: 0, score3: 0 }, day: 2},
{userId: "u1", data: { score1: 5, score2: 3, score3: 2 }, day: 3},
{userId:…

obo
- 1,652
- 2
- 26
- 50
2
votes
1 answer
Elasticsearch leaderboard with player ranking
I'm trying to find the best solution to implement a leaderboard with Elasticsearch.
I store the following data in elastic: playerId, challengeId and score.
Now I want to add "position" column (based on score) but cannot find which is the most…

Sb Lon
- 111
- 2
- 6