Looking at creating a MMORPG

0 favourites
  • 8 posts
  • Hi I am looking at getting into game making as a hobby, would it be possible to create a MMORPG using this platform? I want to create a game like mafia wars / Light of nova

    thanks

    M

  • I wish I had a quarter for every hobby mmorpg I've made with C2.

  • mike2098

    Yes, your idea should be possible!

    Your best bet is to start off with some simple tutorials (tutorials section), and also check out the 'How do I', faq. These should be enough to get you started.

    After that you can always ask others for help in the forum (the C2 community are a really friendly and helpful bunch).

    Hope that helps, good luck!

    <img src="smileys/smiley1.gif" border="0" align="middle">

  • Thanks for the replies I have one more question, what is the difference between purchasing on steam or the website.

    Thanks

  • Thar be no official support with Online Multiplayer as of now, but possibly the future, hopefully the near future. If you're new to game making, you should probably learn a bit of game logic before diving into a project the size of an MMORPG, though I'm not stopping you!

  • Jase00, well there is the WebSocket plugin, which can be used to make turn based games, or games where player vs server is mainly happening and people chat, so a very basic MMORPG would be possible https://www.scirra.com/manual/153/websocket

    Edit: Still needs a websocket server, which can be made with node.js, or http://superwebsocket.codeplex.com/

  • Jayjay I've seen this mentioned alot lol, but never experimented with it, I guess due to lack of me knowing what to do with "node.js". I'm aware it only transmits via TCP and not UDP but I literally just don't understand how to setup and use node.js. Do you know of any guides that could be handy?

    EDIT: My first google search of looking into "Node.js" and turns out it's software...I never knew this. I genuinely thought it was a Javascript file that you're supposed to modify and stuff due to it's name haha. This might be a lot easier than I thought..

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Jase00 Yeah, I had always thought it was a file too <img src="smileys/smiley17.gif" border="0" align="middle">

    Here's a code example for a server that echos/forwards messages sent to it back to everyone else from the Node.JS page:

    var net = require('net');
    
    var server = net.createServer(function (socket) {
      socket.write('Echo server\r\n');
      socket.pipe(socket);
    });
    
    server.listen(1337, '127.0.0.1');

    I made the server for Pixel People Online in Construct Classic do pretty much the same thing, so an echo server should make basic chat MMO's work well <img src="smileys/smiley4.gif" border="0" align="middle">

    Edit: This is an echo server example: http://www.websocket.org/echo.html

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)