post one score for each game level - facebook

there are in some place of documentation any information about multiple scores (one for each game level)?
I know how to do a leaderboard using score API, and how to publish a achievement, but I'd like know how to do a leaderboard for each level like angry birds friends.
There is some way?
Thanks.

Related

What is Activity Score in MIKROS?

I'm currently checking out the MIKROS documentation and have trouble understanding what the Activity Score is. I understand that people who spend more time on your games are ranked higher, but what do the associated categories mean?
Players are ranked into three categories based on the Activity Score they have.
Players with an Activity Score of 8-10 are classified as "Legendary" players. They spend a great majority of their free time playing games, and thus, are a highly sought-after type of player.
Players with an Activity Score of 5-7 are classified as "Core" players. While not as dedicated as the "Legendary" players, these players still enjoy playing games. They just prefer to play games from varying genres.
Players with an Activity Score less than 5 are classified as "Casual" players. These players don't invest significant time into a certain game, and just play whenever they feel like it.

My game is not listed on profile's game tab

Here is my problem. I have developed a game for Facebook but it is not appearing on profile of players like these two games on the image below
If anyone knows what to do about this please respond.
Best regards

Cocos2D HighScore framework

i'm a new developer working on a game project using Cocos2D, I need help in integrating HighScore in my game, is there a good framework for this? or should i do it from scratch using TableView? i tried to find something related to this using google but all the topics were from 2009/10.
Please help!
If you don't want to reinvent the wheel and cross-platform is not a concern, you can add a simple GameCenter leaderboard first (Apple provides a standard leaderboard view which your apps can use, you have to create the leaderboard on iTunes connect before implementing it).
Later, when you have the default version running, you can customize it to make it look like your game. You can read more about all this in the Game Center Programming Guide.
If on the other hand you want to avoid using Apple provided classes, see this thread on the Unity forums where some alternatives are mentioned.
I have recently done high score implementation in Cocos2D game and i did something like following. Hope this helps.
(I have stored only top 5 high scores.)
Created HighScore.plist file with empty array (HighScoreArray) inside that.
In AppDelegate.m Copy HighScore.plist if its not in User Documents Directory.
When game is over you need to calculate and update HighScore.plist.
First of all check if current Score is not 0 (Zero).
Check if HighScore Array contains 5 scores.
YES then insert current score. Sort array and remove last object update plist.
NO then insert current score. Sort array and update plist file.

GameCenter- Posting multiple achievements

I am developing game with GameCenter. In which after finishing a level player can complete more than one achievement. I would like to know can I post multiple achievements at the same time? If not what is the best practice to post achievements one after another.
This document will be helpful.
http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/GameKit_Guide/Introduction/Introduction.html

Turn based multiplayer game with Game center

I would like to know if game center supports online turn based multiplayer game through 3G network or different wifi access. From what I have been reading so far, game center supports bluetooth and local wifi.
In addition, since I would like to implement a turn based multiplayer game, does game center support active running games such that I can play the same game with several friends at the same time like how the app Words with Friends does.
Thank you for your assistance.
If you can wait for iOS 5, it looks like Apple will be adding this feature to Game Center!
You would need a server to play games like words with friends..
And you can only do a one-time connection per game.. Up to 4 players each time, unless you have a server then up to 16 players..
online turn based games is possible but not games like words with friends..