Questions tagged [leaderboard]

616 questions
0
votes
0 answers

iOS : Simulate errors on Game Center Sandbox report

i'm about to finish my update on a game called WarpOut (available on App Store, check it out); this update includes Game Center functionalities. I'm reporting high scores as well as achievements. For now, it works on a Game Center Sandbox (as it is…
Bruce BENAMRAN
  • 448
  • 4
  • 10
0
votes
1 answer

How to get total No. of players from Leaderboard

Is there any way I can get how many player has played my game and successfully reported the score on Leaderboard? I am currently working on Marmalade for iOS, so I'd prefer if you can let me know the solution in Marmalade. But if not possible,…
0xC0DED00D
  • 19,522
  • 20
  • 117
  • 184
0
votes
1 answer

is it possible to use same scoreloop leaderboard for two applications

In my Android application, I'm using the scoreloop leader board, but the thing is that I want to use same leader board for another application. I want that the score of these two application should be submitted at same leader board. How can I do…
0
votes
1 answer

iOS leaderBoard score not updated issue ios?

Now i have the leader board task in that i have submited my score through my sandbox account, the but my score updated after 18 hours and some delays only others can saw my score .... i have implemented all the delegates... but still i am having the…
Arun
  • 3,406
  • 4
  • 30
  • 55
0
votes
2 answers

iTunesConnect GameCenter LeaderBoard new feature move to group

There is a new feature in game center, iTunes Connect.It says: To share leaderboards and achievements of this app with other apps you have provided, move this app to a Game Center group My question is about datas. I have an app in app store. I…
mhunturk
  • 296
  • 2
  • 12
0
votes
1 answer

Game Center View on iPAD (GRAY SCREEN)

I am using this code to show leader boards: -(void)viewscores:(SPEvent*)event { tempVC = [[UIViewController alloc] init]; GKLeaderboardViewController* leaderboardController = [[[GKLeaderboardViewController alloc] init] autorelease]; …
Raoul
  • 85
  • 2
  • 10
0
votes
5 answers

Meteor Leaderboard app

I am a newbie trying to learn and Love the leaderboard app. How do I find resources to learn how to do the suggestions: Make a button that toggles between sorting by score and sorting by name. Hint: use a Session variable to hold the current sort…
user1359267
  • 11
  • 1
  • 1
-1
votes
1 answer

Why does my C# bubble sort implementation randomly insert blank statements in my leaderboard?

So im trying to write a program in c# that reads two files that have 11 names in one and 11 numbers in the other, they're supposed to correspond to a high-score leader board and the users name, i have already got the read and write files part of the…
-1
votes
2 answers

How to request data in leaderboard format from Sequelize-Sqlite Database?

I am trying to pull users and catches from a Sqlite database through Sequelize and display in a message reply a leaderboard ranked by the amount of catches. My Sequelize Sqlite database looks like this const Tags = sequelize.define('tags', { user:…
parker
  • 1
  • 2
-1
votes
2 answers

sorting a text file and inputting into a listbox c#

I'm trying to make a leader board that sorts each participant by the score they get. Each user will say whether they have one or lost then the code gives the win or loss a number. This then gets added to a listbox and is saved in a .txt file. My…
-1
votes
1 answer

How to display a leaderboard of variables JS

so I made variables with the value 0 and whenever an event is triggered it adds 1 to the variable, I was wondering if theres any way to show a leaderboard of the variables in order (from biggest to smallest), If you know a way please let me know and…
-1
votes
1 answer

Json Filter Objects Into Different Array

Let's Say I Have This user data under { "asdfasdf": { "user": "asdfasdf", "skillpoints": 0, "acc": 0, "sessions": 0, "wpm": 0 }, "matthewproskils": { "user": "matthewproskils", "skillpoints": 0, "acc": 0, …
MatthewProSkils
  • 364
  • 2
  • 13
-1
votes
1 answer

How to add titles in the leaderboard? ROBLOX LUA

So in the leaderboard I have cash, exp, etc. But I also want to have a "Title" option, the thing is that if I want to change the stat, I dont know how to change it to words instead of numbers, can anyone help me?
-1
votes
1 answer

Simple Leaderboard rankings from mysql database

I'm making a simple game, and I want to make a mini-leaderboard the user can view. The leaderboard would consist of the user, the 5 players above him in point total, and the 5 players below him in point total. How would I make a MySQL query to…
-1
votes
1 answer

I want to write the data in text file and overwrite again if the existing file is over 20 lines

Keep track of high score for each round the player plays the game. If the high score is higher than one of the entries in the high score list, update the high score list. The high score list should track up to 20 high scores. Here is the coding I…
Mr Bee
  • 19
  • 4