active questions tagged highscore - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T07:28:28Z http://stackoverflow.com/feeds/tag/highscore http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1395334/best-highscores-framework-iphone 2 Best Highscores Framework - iPhone Bryan 2009-09-08T17:50:03Z 2009-09-24T15:54:09Z <p>I am trying to decide between:</p> <p>OpenFeint - <a href="http://www.openfeint.com/developers" rel="nofollow">http://www.openfeint.com/developers</a></p> <p>Agon - <a href="http://developer.agon-online.com" rel="nofollow">http://developer.agon-online.com</a></p> <p>ScoreLoop - <a href="http://corporate.scoreloop.com/features" rel="nofollow">http://corporate.scoreloop.com/features</a></p> <p>All of the websites look clean. I don't know how many users they have but ScoreLoop has some recognizable games using the service.</p> <p>Have you tried any of these platforms? Which is best?</p> 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/1171926/how-to-solve-this-complex-recursive-problem-pyramid-point-system 1 How to solve this complex recursive problem, pyramid point system Espen Christensen 2009-07-23T13:55:35Z 2009-07-23T15:15:32Z <p>Hi,</p> <p>I'm trying to program a pyramid like score system for an ARG game and have come up with a problem. When users get into the game they start a new "pyramid" but if one start the game with a referer code from another player they become a child of this user and then kick points up the ladder.</p> <p>The issue here is not the point calculation, I've gotten that right with some good help from you guys, but if a user gets more point that it parent, they should switch places in the ladder. So that a users parent becomes it's child and so on.</p> <p>The python code I have now doesnt work proper, and I dont really know why.</p> <pre><code>def verify_parents(user): """ This is a recursive function that checks to see if any of the parents should bump up because they got more points than its parent. """ from rottenetter.accounts.models import get_score try: parent = user.parent except: return False else: # If this players score is greater than its parent if get_score(user) &gt; get_score(parent): # change parent user.parent = parent.parent user.save() # change parent's parent to current profile parent.parent = user parent.save() verify_parents(parent) </code></pre> <p>In my mind this should work, if a user has a parent, check to see if the user got more points than its parent, if so, set the users parent to be the parents parent, and set the parents parent to be the user, and then they have switched places. And after that, call the same function with the parent as a target so that it can check it self, and then continue up the ladder.</p> <p>But this doesnt always work, in some cases people aren't bumbed to the right position of some reason.</p> <p>Edit:</p> <p>When one users steps up or down a step in the ladder, it's childs move with him so they still relate to the same parent, unless they to get more points and step up. So it should be unecessary to anything with the parents shouldn't it?</p> http://stackoverflow.com/questions/25999/secure-online-highscore-lists-for-non-web-games 5 Secure Online Highscore Lists for Non-Web Games LKM 2008-08-25T13:10:37Z 2008-09-28T08:15:04Z <p>I'm playing around with a native (non-web) single-player game I'm writing, and it occured to me that having a daily/weekly/all-time <strong>online highscore list</strong> (think Xbox Live Leaderboard) would make the game much more interesting, adding some (small) amount of community and competition. However, I'm afraid people would see such a feature as an invitation to hacking, which would discourage regular players due to impossibly high scores.</p> <p>I thought about the obvious ways of preventing such attempts (public/private key encryption, for example), but I've figured out reasonably simple ways hackers could circumvent all of my ideas (extracting the public key from the binary and thus sending fake encrypted scores, for example).</p> <p>Have you ever implemented an online highscore list or leaderboard? Did you find a reasonably hacker-proof way of implementing this? If so, how did you do it? What are your experiences with hacking attempts?</p>