Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
2answers
3k views

How to implement an achievement system in RoR

I'm attempting, poorly, to implement an achievement system into my Ruby on Rails application. I have a long list of achievements I'd like to check for. All are triggered by some create action in ...
9
votes
1answer
567 views

Badge achievement system like SO: Data being used + Criteria(instant awarding & cron jobs)

I've been looking at an open source clone of SO, http://github.com/cnprog/CNPROG I don't know Python/Django but I can still read whats going on, The developers, seem to only be awarding badges with ...
8
votes
2answers
762 views

Implementation of achievement systems in modern, complex games

Many games that are created these days come with their own achievement system that rewards players/users for accomplishing certain tasks. The badges system here on stackoverflow is exactly the same. ...
5
votes
3answers
1k views

An achievement system like here on stackoverflow in php?

Conceptually speaking how would one go about writing an achievement system for a website using PHP and MySQL? Is the only real way of doing it is to constantly do MySQL queries to test for ...
4
votes
1answer
205 views

How did Valve build their real-time achievement engine in Team Fortress 2?

The complexity of achievements I've noticed while playing Team Fortress 2 on Steam is amazing. Are there any resources that describe how they architected their achievement engine? There is a lot of ...
4
votes
1answer
117 views

Multiple Achievements Earned at Once with Openfeint

I have a scenario where it's possible to earn > 1 achievement at the same time. Has anyone come across a good solution for displaying them using OpenFeint? Right now OpenFeint shows 2 overlapping ...
4
votes
2answers
473 views

How to recommend the next achievement

Short version: I have a similar setup to StackOverflow. Users get Achievements. I have many more achievements than SO, lets say on the order of 10k, and each user has in the 100s of achievements. ...
3
votes
2answers
107 views

how to architect achievements and badging with nosql

I currently have an social game app using mongodb for it's database. My question is what are some suggestions if I want to create a points and badging system. The business logic for ...
3
votes
1answer
104 views

iPhone Game Dev : Achievement Framework?

I have written a simple game and am looking to integrate GameCenter Achievements with it. I would like to try to do this in a clean and neat way which is easy to add extra achievements to. As I see ...
3
votes
1answer
136 views

How to handle achievments/badges/awards for your APP with minimum hit to system?

I like the concept of badges and achievements for a website I am designing. They have been proven to improve ussage/utilization rates and I think could be a large motivator for an app I'd like to ...
3
votes
2answers
556 views

How to save and retry reporting GKAchievement's after network failure?

Apple states that if you want to report a GKAchievement but you get a network error, the best way to handle this is to save the GKAchievement (possibly adding it to an array), then periodically ...
3
votes
1answer
532 views

RoR Achievement System - Polymorphic Association & Design Issues

I'm attempting to design an achievement system in Ruby on Rails and have run into a snag with my design/code. Attempting to use polymorphic associations: class Achievement < ActiveRecord::Base ...
2
votes
1answer
209 views

Monotouch Achievements and leaderboard viewcontrollers

Im having an odd issue with dismissing my achievements and leaderboard viewcontrollers. The viewcontrollers display correctly and can be dismissed using the done button but only if you press it within ...
2
votes
5answers
281 views

Recommendations for user 'levelling' system

I am looking for a, preferably open-source, user levelling/ranking system. By this I mean, similar to Xbox Live Achievements, users can complete a certain task, get awarded 'points' and then progress ...
2
votes
3answers
1k views

What is the size of GameCenter achievement images?

So I want to incorporate GameCenter achievements in my game, but I have to supply images for each achievement for display in the GameCenter app. Apple isn't really clear about the required size. I've ...
2
votes
2answers
1k views

Get a users Xbox Achievements list?

Is there a way to get a user's achievements list from Xbox without dealing with screen scraping etc.? How do sites like http://www.trueachievements.com do it? (they're definitely not screen scraping ...
2
votes
3answers
342 views

Normalizing achievements with multiple sources

I'm looking for a good algorithm recommendation. I have Users and Achievements. Users create Achievements and then give them to other Users. Associated with each Achievement is the point value that ...
2
votes
3answers
1k views

Rails “Badge” type plugin / tutorial?

Does anyone know if there is a Rails gem/plugin/tutorial that shows how to create a Badge/Achievement system similar to what stackoverflow uses. Thanks.
2
votes
14answers
309 views

which were your achievements in programming in 2008?

which were your achievements in programming in 2008? what technologies surprise you or learn this year and what do you expect in programming terms in 2009 Edit: Changed to Wiki
1
vote
1answer
47 views

Graph API response with “Bad request - protocol error” on earned achievements instead of #3501

I'm using C# with ASP.NET to make a game. I have a method to send post request and it's working fine in all request ( i.e. loging, scores ) exept when I try to give an earned achievement. In this case ...
1
vote
1answer
108 views

FB believes I'm granting an achievement when I'm registering one

I'm having a problem where my achievement code, which worked perfectly in my staging (sandboxed) environment, is failing in my production environment. When I HTTP POST to [my app id]/achievements ...
1
vote
1answer
514 views

Registering achievements: Object Base Domain Not Allowed, even when domain IS allowed

I have an Open Graph achievement at the following URL: http://rinth.bucket1.s3.amazonaws.com/Achievements_LOCAL/Achievement1.html When I attempt to register it, I get a response of: status code 400: ...
1
vote
1answer
283 views

Scores and Achievemnts, understanding the process

I am a bit confused when it comes to Scores and Achievements. I am currently registering Achievements 1 - 1000 assigned to points 1 - 1000, where each point is an achievement. I know each ...
1
vote
2answers
493 views

Unlocking achievement in OpenFeint

I'm very new to OpenFeint, actually started integrating it into my game today. I can't understand one simple thing that every OpenFeint using developer should probably know. Here's the example of ...
1
vote
2answers
371 views

OpenFeint achievement percentage increment

I'm making an iOS app which is OpenFeint enabled. I have managed to get all but one achievement to work. This one achievement is a partially completed one. My specific problem is that I haven't found ...
1
vote
2answers
714 views

Check if you've already unlocked an achievement in Game Center/GameKit

I've been stumped on this for quite a long time. I understand how to unlock an achievement in Game Center and I even got a whole messaging system working. But I can't figure out how to check if an ...
1
vote
2answers
182 views

What are some methods of dynamic validation for a generic class?

So basically the title sounds way fancier than the actual question. I am writing an application in which I would like to implement an achievement system. If I have all of my achievements created as ...
1
vote
1answer
119 views

iPhone OS: Is there a way to set up KVO between two ManagedObject Entities?

I have 2 entities I want to link with KVO, one a single statTracker class that keeps track of different stats and the other an achievement class that contains information about achievements. Ideally ...
1
vote
2answers
337 views

Possible Data Schemes for Achievements on Google App Engine

I'm building a flash game website using Google App Engine. I'm going to put achievements on it, and am scratching my head on how exactly to store this data. I have a (non-google) user model. I need to ...
0
votes
0answers
44 views

Would you use a task manager with RPG elements like experience, levels and achievements? [closed]

I guess you heard about Visual Studio Achievements extension. It adds funny achievements to development process. There's also Jira plugin called Jira Hero which adds some RPG elements to your task ...
0
votes
0answers
18 views

Internationalizations for achievements

Trying to internationalize some open graph's achievements, i tried to put alternate og:locale as described in http://developers.facebook.com/docs/beta/opengraph/internationalization/. When doing so, ...
0
votes
0answers
22 views

Achievement order in default game center view controller

Is there a way to control the order achievements are shown in the Game Center achievement view controller (GKAchievementViewController)? Currently they are showing up in the order I created them in ...
0
votes
1answer
41 views

Openfeint Achievment Progress on Android

My team has decided to integrate OpenFeint into the app we are developing to leverage the achievements API.. We currently track the achievement progress locally on the phone, and submit the ...
0
votes
1answer
23 views

registering achievements for facebook game

I have registered one achievement for my app. Everything is fine, but the problem is that, when user clicks on the achievement on the ticker, he gets redirected to a not existing page in my app. This ...
0
votes
0answers
57 views

Using the Facebook scores and achievements API with test or insight users

I'm developing an application for a University study, in which I'm posting scores and achievements to the API, I was wondering if it's possible to compare scores among the test or insight users using ...
0
votes
1answer
47 views

Registering fb achievements

When registering fb achievements, do I have to register them every time a new player hits the app or just once while developing? In examples they always show you registering the achievement directly ...
0
votes
0answers
60 views

Can get Facebook Achievements with user access token but not with app access token

I'm trying to create an app which can view achievements earnt by it's players/users. If I try to do the graph call to get a player's achievements using the app access token, for some players this ...
0
votes
1answer
26 views

Achievements / Reset

We're implementing some achievements for our game so we're working on our QA app. How can I reset (if at all) all the achievements in the app ?
0
votes
1answer
99 views

Setting Facebook Achievement from Flash

I'm setting up achievements for a game I'm working on. Flash sends the command to unlock the achievement, as well as the url to the achievement. On my server, I have the code that passes the display ...
0
votes
0answers
34 views

Receive 3403 error when try to register a new achievement

When I post to https://graph.facebook.com/134446769971758/achievements with the following parameter: ...
0
votes
0answers
21 views

Can I use the high/low byte-trick with the scores API?

I'm currently developing the concept of a simple game on Facebook. I would like to store to kinds of scores and because for organizational reason have to limit my persistent storage needs, I'm ...
0
votes
1answer
59 views

Game Center achievements when not signed in to it

I am building a game which uses achievements currently. Let's imagine the following situation: The user starts the app the first time, does not sign in to GameCenter and gets a few achievements. But ...
0
votes
0answers
158 views

Facebook achievements registration is failing - url is not of type game.achievement

I'm trying to register an achievement on Facebook. I'm registering: url: http://mydomain.com/achievement.php?gca=gc2 display_order: 300 But I get error: (#3502) Object at achievement URL is not of ...
0
votes
0answers
36 views

Is there a public iOS Game Center Xml feed?

I would like to be able to read a user's achievements and a game's leaderboard from Game Center through an external application not necessarily on iOS. Is there a publicly available xml feed or a feed ...
0
votes
1answer
99 views

How to Change the App Image in Facebook Games Ticker

I have not yet started adding achievements to Games Ticker for my game app, but by default when someone starts my app, a new post is there saying "X is playing the Appname". The bookmark image is ...
0
votes
1answer
165 views

Difference between the old game.achievement / new open graph

I'm confused about the new version of the Open Graph (beta). I'm currently implementing the achievements functionality into a facebook app'. I'd like to know if there's a difference between : Old ...
0
votes
2answers
216 views

Facebook Achievement URL

I tried creating an achievement and saw myself having to create a new page with the open graph tags describing the achievements and left the content of the page empty. I was able to register and ...
0
votes
2answers
116 views

Can't read achievements for certain users

I'm experiencing some inconsistent behaviour when trying to read achievements from my app. I have 3 tests accounts, 2 of which I can read achievements. However the 3rd account always returns an empty ...
0
votes
1answer
110 views

Facebook achievement does not show image in the ticker

I have added some achievemets to my fb app. Everything works fine, but the images of the achievements are not shown in the ticker. I checked the achievemts with the url linter and the image property ...
0
votes
0answers
125 views

Facebook achievements

How to select achievements only for application that user currently use ? Is there any way to get it via FQL ? https://developers.facebook.com/docs/achievements/#manage - this doesn't fit because it ...

1 2