iPhone High Scores Framework? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:34:25Z http://stackoverflow.com/feeds/question/367198 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/367198/iphone-high-scores-framework 5 iPhone High Scores Framework? sil3ntmac 2008-12-15T00:21:39Z 2009-09-11T11:36:53Z <p>I remember reading about a high scores framework for the iphone a while back. You could embed it into your app for easy high score management. Anyone know what I'm talking about?</p> http://stackoverflow.com/questions/367198/iphone-high-scores-framework/367553#367553 2 Answer by Lounges for iPhone High Scores Framework? Lounges 2008-12-15T05:31:14Z 2008-12-15T05:31:14Z <p>I think your asking about Onyx Online. It's from the developer of the popular Trism game and aims to be something akin to Xbox Live for the iPhone.</p> <p>More deets here: <a href="http://onyx.demiforce.com/" rel="nofollow">http://onyx.demiforce.com/</a></p> http://stackoverflow.com/questions/367198/iphone-high-scores-framework/377091#377091 0 Answer by sil3ntmac for iPhone High Scores Framework? sil3ntmac 2008-12-18T07:08:31Z 2008-12-18T07:08:31Z <p>Very nice, that was precisely what I was looking for. Thanks :)</p> http://stackoverflow.com/questions/367198/iphone-high-scores-framework/388286#388286 0 Answer by Fielder for iPhone High Scores Framework? Fielder 2008-12-23T06:03:50Z 2008-12-23T06:03:50Z <p>there is another one that just went live called geocade.com. They do high score leaderboards based on location.</p> http://stackoverflow.com/questions/367198/iphone-high-scores-framework/675344#675344 1 Answer by Marigo PR for iPhone High Scores Framework? Marigo PR 2009-03-23T21:38:36Z 2009-03-23T21:38:36Z <p>Check out our hosted highscores service for iPhone Game Developers: <a href="http://highscores.marigoholdings.com/" rel="nofollow">http://highscores.marigoholdings.com/</a></p> http://stackoverflow.com/questions/367198/iphone-high-scores-framework/675790#675790 1 Answer by qrunchmonkey for iPhone High Scores Framework? qrunchmonkey 2009-03-24T00:54:55Z 2009-03-24T00:54:55Z <p>There is a service <a href="http://www.openfeint.com/" rel="nofollow">http://www.openfeint.com/</a> that appears to be both open to the public and very feature rich. </p> <p>I haven't used it yet, but apparently they have leaderboards as well as a number of other features, like chat, news feeds, messageboards, social network integration, etc.</p> http://stackoverflow.com/questions/367198/iphone-high-scores-framework/760255#760255 1 Answer by unknown (google) for iPhone High Scores Framework? unknown (google) 2009-04-17T12:41:38Z 2009-04-17T12:41:38Z <p>I just saw this system on <a href="http://www.iphonegamenetwork.com/social-gaming-platform-agon" rel="nofollow">http://www.iphonegamenetwork.com/social-gaming-platform-agon</a> Looks realy cool.</p> <p>I've posted the direct link here for a closer look <a href="http://developer.agon-online.com" rel="nofollow">http://developer.agon-online.com</a></p> <p>This integrates social networking, persistant profiles across games and location based leaderboards.</p> http://stackoverflow.com/questions/367198/iphone-high-scores-framework/1062521#1062521 0 Answer by Taras for iPhone High Scores Framework? Taras 2009-06-30T08:49:28Z 2009-06-30T08:49:28Z <p>Also you might want to check our iGetScores system - it's free and open source:</p> <p><a href="http://code.google.com/p/igetscores/" rel="nofollow">http://code.google.com/p/igetscores/</a></p> http://stackoverflow.com/questions/367198/iphone-high-scores-framework/1184898#1184898 0 Answer by NikWest for iPhone High Scores Framework? NikWest 2009-07-26T15:56:38Z 2009-07-26T15:56:38Z <p>There is also Scoreloop which can be found at <a href="http://www.scoreloop.com" rel="nofollow">http://www.scoreloop.com</a>. It's free and in addition to high scores it also offers challenges and a web community.</p> http://stackoverflow.com/questions/367198/iphone-high-scores-framework/1410392#1410392 0 Answer by Chris Garrett for iPhone High Scores Framework? Chris Garrett 2009-09-11T11:36:53Z 2009-09-11T11:36:53Z <p>As you can see from the numerous answers here, there are a number of providers of high score servers. Here's my issue with them:</p> <p>1) Many are brand new, fledgling companies. While I certainly hope they are successful, I'm not willing take the risk that my hard work will be ruined because a game server startup closes up shop just as my app hits the top 10.</p> <p>2) Many of the larger providers require you to use their user interface unaltered. I have special requirements that I want to be able to embed the high score list directly into my game play.</p> <p>3) Along the same lines as #1 and #2, the established players are not open source, so it's hard to know the quality of what they've built. If there's a bug, you're stuck with it until they release an update.</p> <p>4) I haven't seen a good way to prevent cheating using the established solutions. (See other questions here on StackOverflow about high score lists and cheating). I'm not sure an out-of-the-box solution would be able to prevent cheating, because as far as I can tell, the only way to prevent it is by including some sort of server-side check to ensure that a human has created the high score. (e.g. a game replay checker). Digital signatures, encryption, etc. can prevent some cheating but at the end of the day someone can retrieve the encryption key from your device. My first thoughts on cheating were that I would just create my game, and worry about it if it became popular. However, the more I read it looks like there are just too many people who try to crack high score servers just for the fun of it.</p>