leaderboard

Facebook scores blocked by “only me” visibility

拥有回忆 提交于 2019-12-11 05:38:40
问题 I have a game with highscores and I use the fb-score api to generate a friend leaderboard. One problem though ... to save a score for a fb-user, the app has to "post data for the user" ... in this case, the score-data. But the user can choose to mark this "posting" permission as visible for "only me" instead of global or friends. Which is something a lot of users will do since it sounds like something that would aid their privacy. That however means that the score of ... lets say USER A ...

Why are Google Play games icons not shown in Play Store?

早过忘川 提交于 2019-12-11 04:02:48
问题 I have made a small game just to test my development skills. I integrated Google Play Game Services, like leaderboards and achievements. Why are the logos for leaderboards and achievements not shown in the play store? I'm talking about the logos that indicate, that this app supports the Google Game Services, so games know it. Where can I enable the setting for that? 回答1: There is a minimum number of players needed to have signed in and been playing your game before the logos will appear.

How to fetch top 10 scores from a specific gamecenter leaderboard with swift (iOS)

戏子无情 提交于 2019-12-10 19:20:27
问题 How to fetch top 10 scores from a specific gamecenter leaderboard in swift (iOS)? I'd like to fetch top 10 scores and players from leaderbaord and build a custom "HALL OF FAMES" in game. How to fetch datas from leaderbaord? 回答1: Meanwhile i found an answer: let leaderBoardRequest = GKLeaderboard() leaderBoardRequest.identifier = kGcIdHighScore // my GC Leaderboard ID leaderBoardRequest.playerScope = GKLeaderboardPlayerScope.Global leaderBoardRequest.timeScope = GKLeaderboardTimeScope.AllTime

Limit Meteor Vote Once Per Day

梦想与她 提交于 2019-12-10 12:12:50
问题 I'm following the MeteorJS example for a leaderboard here: https://www.meteor.com/examples/leaderboard I want to limit the votes to once per day (per IP address). What's the best way to do this? 回答1: The following solution assumes you are starting with a clean version of the leaderboard example. Step one: Declare a new collection to hold IP address and date information. This can be added just below the definition of Players . IPs = new Meteor.Collection('ips'); Step two: Replace the increment

How to get rank from Google Play game service's leaderboard?

早过忘川 提交于 2019-12-08 22:35:10
问题 I'm working on a big application and I have to take the player's rank from the Google Play services' leaderboard. The leaderboard works well. I've already found the right method but I don't know how I'm supposed to use it: private void loadRankOfLeaderBoard() { Games.Leaderboards.loadCurrentPlayerLeaderboardScore(mGoogleApiClient, getResources().getString(R.string.leaderboard_leaderboard), LeaderboardVariant.TIME_SPAN_ALL_TIME, LeaderboardVariant.COLLECTION_PUBLIC).setResultCallback(new

Google Game Service Leaderboard can't show after submit score on Cocos2d-x Android?

荒凉一梦 提交于 2019-12-08 13:33:06
问题 I implement Google Game Service for Android (Cocos2d-x) with Cocos Helper of Sonar System Team. Everything is OK: Sign-In Google Game Service. Show Achievement and increateAchievement very good. The first time, I sign-in to Google Game Service ==> show leaderboard is OK. However, I submit score to leaderboard then re-show leaderboard again it always close automatic and I get respondCode=RESULT_RECONNECT_REQUIRED . Can you give me some suggestion to fix it ? 回答1: I've found answer: Reason of

Get experience points and level from google plus profile or Get Data from google plus profile

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-08 13:16:53
问题 I am using google play game services in my game to get data and leaderboard scores from google leaderboard. I noticed this screen in the leaderboard profile. As you can see the name , and level and XP points. I was wondering is there a way to get these data so that I can show it in my custom leaderboard. I already got data like name and profile image. but I couldnt find a way to get this game data. Suggest me some ideas. 回答1: For getting player's experience points and level ,first you have to

Odd Game Center behavior?

空扰寡人 提交于 2019-12-07 14:16:40
问题 I'm trying to enable Game Center Leaderboard to my iPad game and I have learned that you need to post more than one score to a leaderboard for the scores to show in the default leaderboard UI. I have two separete accounts that I used to post two different scores to the same leaderboard, but when I call loadScoresWithCompletionHandler I only get one score back (the score for the user I currently are logged in with). Any ideas why? GKLeaderboard *myLB = [[GKLeaderboard alloc] init]; myLB

Google Play Store: My app page does not show the leaderboard and achievements icons/badges

雨燕双飞 提交于 2019-12-07 03:09:37
问题 I launched an app on google play store this week. The app uses Google Play Games Leaderboard and Achievements APIs. Should the app page in play store app not show these icons/badges like it does in other apps that use these APIs? Do i need to enable it anywhere? These are the icons/badges I'm referring to (image below). How do i add/enable these? Do i need to do anything in the app apk to get these? 回答1: Just had a chat with the Google Play support team. They said that it gets enabled

Any way to programmatically reset leaderboards?

家住魔仙堡 提交于 2019-12-07 01:36:52
问题 As I look into documentation of GKScore and GKLeaderboard, there is no way to reset scores reported by player to particular leaderboard in GameCenter. Am I right? This seems quite inconsistent, since it is possible to reset achievements: [GKAchievement resetAchievementsWithCompletionHandler:^(NSError *error) { ... }]; Any thoughts? 回答1: You are correct. There is no way to reset a Game Center leaderboard category or to remove a category once it's been launched in a live app. Apple did allow a