Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently playing around with NSNotification (or local notifications in general terms) for a product management game which relies heavily upon the user's NSDate/Time and then use local notifications to give an alert for when a product is ready.

However, in my experiments with similar games one can beat this system by simply moving the system clock forward and thus speed up the game.

I've noticed some games have stopped this, but I think thy did it by having an internal clock which syncs with an online clock and never uses the iPhone's clock, but this is just a guess as obviousily such a system doesn't work if you have no internet access.

Anyway, and am hopeful someone who has gone down this road can clarify;

  • Whether local notifications (or push notifications) are mature enough by themselves for games that rely on a users NSDate/Time?

  • How to prevent users/cheaters beating NSNotification/NSDates for games?

Is there an article or framework, or something that can explain the best methodologies on this subject?

I found Similar question for Virtual Pet Games, but I am still interested in other suggestions.

Many thanks.

share|improve this question

1 Answer

up vote 5 down vote accepted

Local notification will rely on the user's clock to be set accurately. You could compare the user's clock with a server time before delivering any rewards. If the user's clock is off by more than a few minutes, you could alert the user and not allow the reward until it is fixed.

share|improve this answer
Yes, I believe this is the solution used by various games; however if you don't have Internet connection or simply switch wireless off it prevents the gamer from playing the game. I'm wondering if there are different, or better solutions. The Virtual Pet post talks about storing events and then checking/decrementing it, but I am not sure if it accounts for the amount of time an app is left idle and not played. One would require any time-based app to calculate the time passed since last play and make the necessary adjustments to stock, etc. – zardon Sep 2 '11 at 7:03
I think I may just use another metric, like "turns" rather than time. But maybe there's a solution out there. For now I will accept your answer. – zardon Sep 4 '11 at 16:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.