erafal Posted September 8, 2014 Share Posted September 8, 2014 Hi, is there any server framework for RPG games? I just create a basic non-real time RPG game. I would like to place game on the server, and only save the results, experience, etc.. It's possible? I dont' need a framework for real-time games. Thanks. Link to comment Share on other sites More sharing options...
Cudabear Posted September 8, 2014 Share Posted September 8, 2014 If you don't want real time, it would probably be easiest just to make your own database and write controllers in the language of your choice. Easiest would probably be PHP or ruby, but there are other alternatives as well. You could even write your own servlets if you really wanted to, but that seems like a lot of unnecessary work for this. You can then use jQuery or vanilla JavaScript to make POST and GET requests to your controllers while the game is running. Oh, and if you are interested in a real-time multiplayer gaming at all, I found great success writing my own simple NodeJS server to track player coordinates on the back end, and using Phaser to render on the front end. Link to comment Share on other sites More sharing options...
Nepoxx Posted September 8, 2014 Share Posted September 8, 2014 You'll most likely have to write your own server code. Non-real-time is trivial to do, however. You can communicate from Phaser using simple AJAX to a NodeJS server. That should be more than enough for your needs. lewster32 1 Link to comment Share on other sites More sharing options...
Laurent Sigal Posted September 15, 2014 Share Posted September 15, 2014 It really depends what you are trying to do. Are you willing to have your own backend infrastructure?Do you want to handle authentication for your players? I am not sure I totally agree with the fact that non-realtime is trivial, there is still a lot of work to do in order to get to the situation where a game is setup between several persons. I'd be really interested in your needs actually because I am working on something that could solve your problems, but again the excat scope is interesting :-) Link to comment Share on other sites More sharing options...
Recommended Posts