hot questions tagged highscore - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T11:12:43Zhttp://stackoverflow.com/feeds/tag?tagnames=highscore&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1395334/best-highscores-framework-iphone2Best Highscores Framework - iPhoneBryan2009-09-08T17:50:03Z2009-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-framework5iPhone High Scores Framework?sil3ntmac2008-12-15T00:21:39Z2009-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-system1How to solve this complex recursive problem, pyramid point systemEspen Christensen2009-07-23T13:55:35Z2009-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) > 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-games5Secure Online Highscore Lists for Non-Web GamesLKM2008-08-25T13:10:37Z2008-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>