Social Game Mechanics in Django

Posted by oliland on Stack Overflow See other posts from Stack Overflow or by oliland
Published on 2010-03-28T22:14:27Z Indexed on 2010/03/28 22:43 UTC
Read the original article Hit count: 674

I want users to receive 'points' for completing various tasks in my application - ranging from tasks such as tagging objects to making friends. I havn't yet found a Django application that simplifies this.

At the moment I'm thinking that the best way to accumulate points is that each user action creates the equivalent of a "stream item", and the points are calculated through counting the value of each action published to their stream.

Obviously social game mechanics is a huge area with a lot of research going on at the moment. But from a development perspective what's the easiest way to get started? Am I on the wrong track or are there better / simpler ways?

© Stack Overflow or respective owner

Related posts about django

Related posts about social-networking