First of all, I rarely make new threads, so sorry if this is the wrong sub-forum.
I’m doing a small Location-Based Game for my research (Master’s) and I’m looking for free solutions that enable me to do simple data management such as:
- Player Level, stats, items they have, among other info that may be text-based
- Info about number of km walked, achievements/quests completed, etc
- “Asynchronous” chat, as in, players may leave messages and items in Points of Interest around the map for a limited amount of time (which would also need to be saved in the DB so it can disappear after a while) for other players to see/collect
- If possible, a synchronous chat system (optional but desired)
Each player will be given their own ID prior to game start (again, it’s research, so no real need to worry about security or passwords), which is how I’ll connect them to their save data in the DB.
Players won’t really be able to see each other, so I don’t need synchronous player positioning in the world. I think the most synchronous thing would be the chat feature.
Not sure if Photon is easy enough to implement, and if it covers all of the above without too much overhead.
Thanks in advance for the suggestions!