- Home /
storing user data about virtual currency or coins
Is it possible to store secure local user data about how many virtual coins a user owns in a unity iphone app, or does the information have to be stored in a database using php/mysql?
I've been reading a little about it in ios development forums but don't know if the advantages or disadvantages are the same with a unity ios app.
Answer by farhanblu · May 20, 2016 at 06:52 AM
You could go another route. Instead of PlayerPrefs, you could save them to a file, that inturn is kept inside a password-protected zip. To further make hacking difficult, you could even encrypt the content of the file. This has downside of being a "disk" operation, but should work nonetheless. Or you could save them to a cloud BaaS service like gamesparks, bolt, braincloud, etc.
Answer by Bulgroz · Oct 13, 2012 at 11:42 PM
Its certainly possible to store data about anything with Playerprefs
You could obtain some security by requirering a userid/pwd so you know you show your virtual currency elements to the authorized user.
But it may not satisfy your security requirements
I know anbsoft has a save game tool, that you may want to look into, its called EZ Game Saver, check it out at The middleware section
Regards Chris
Your answer
Follow this Question
Related Questions
Secure Virtual Currency System 1 Answer
Accessing local system ( File Browser ) 2 Answers
what is the best way for in app, including virtual currency, syncing over cross platform 0 Answers
Local Server and Client 1 Answer
Local vs. Global movement 5 Answers