4
votes
Game communicates with MongoDB in the Editor but not in WebGL build
What you are trying to do here unfortunately can not work. The MongoDB protocol is based directly on TCP/IP. But a web application running in a web browser can not create raw TCP/IP connections. There ...
1
vote
Turning a simple HTML5/JS single-player game into a multi-player one
Turning a game developed for singleplayer into a multiplayer game when it was not designed for that from the start can be extremely difficult, both regarding software architecture and regarding game ...
1
vote
How to Structure my Database for a HTML turn-based strategy game?
It really doesn't matter which database you use for this. You can use pretty much any.
The sql-by-the-book solution for storing the current state of all games would be to create a table with these ...
Only top scored, non community-wiki answers of a minimum length are eligible