Hey all,
We’re currently in the development stages of making a web-based RPG that will query a SQL Database or read from a server and search for [an undetermined number of] new missions/quests.
Has anybody had experience in adding new content for a game from a server/database in unity? Should I use a WWW object to get/post data to PHP scripts which talk to the SQL server? What about taking the data from the server/database and turning them into in-game missions?
Can I create new scripts while in a unity web player, and add those scripts into the world? Or would I need to create a cache on the user’s computer, then access them via the .NET System.IO classes? Or should I use PlayerPrefs? Would that be too much data? Should I just host the files on the server and read from them?
Any comments or concerns would be appreciated.