Yashko Posted June 11, 2015 Share Posted June 11, 2015 Hi, im new to Phaser.Looking for an GOOD example of simple MMO game.Do you know where i can find it?Thank you Link to comment Share on other sites More sharing options...
enpu Posted June 12, 2015 Share Posted June 12, 2015 Not exactly Phaser, but i think this is one of the best open source HTML5 multiplayer game:https://github.com/mozilla/BrowserQuest Link to comment Share on other sites More sharing options...
Yashko Posted June 12, 2015 Author Share Posted June 12, 2015 do you have some simpler? Link to comment Share on other sites More sharing options...
MichaelD Posted June 12, 2015 Share Posted June 12, 2015 Which part of an MMO are you looking for exactly: UI, Backend, Sockets, Graphics, Chat, Storytelling, Quest system, Battle System? As you see an MMO is quite complex by it self, maybe you could search/ask for some part of it that you are most interested on and go on from there. Link to comment Share on other sites More sharing options...
Yashko Posted June 13, 2015 Author Share Posted June 13, 2015 First im looking for client + server side with graphics engine. now im found:https://github.com/qkdreyer/codinweek-mmo - but this is not simple, a lot of bad code and i cant get logic of this code https://github.com/arcanous/phaser-mmorpg - this looks better, but i dont dive in code yet Link to comment Share on other sites More sharing options...
MichaelD Posted June 13, 2015 Share Posted June 13, 2015 You could decouple the client side with the server side. For example you could use socket.io and Node.js for client/server connection with events and socket support. This way you can setup event handlers for different events that happen and the UI can react to those. for example: socket.event("onDamage", function(id){ window.console.log("object with id: "+id+" was damaged");}); Link to comment Share on other sites More sharing options...
Yashko Posted June 13, 2015 Author Share Posted June 13, 2015 yes, i know that. main problem for me - draw graphics. Link to comment Share on other sites More sharing options...
MichaelD Posted June 14, 2015 Share Posted June 14, 2015 What is the problem with the drawing of the graphics exactly? Link to comment Share on other sites More sharing options...
Recommended Posts