Thread: Online Game

  1. #1
    Confused
    Join Date
    Nov 2002
    Location
    Warwick, UK
    Posts
    209

    Online Game

    I'd like to know if it would be possible to create a game like Ultima Online, where the user downloads the exe, creates a username and password, and can download data from a database, perhaps stored in an SQL database, and follow a gameplay with other members ?

  2. #2
    Registered User codingmaster's Avatar
    Join Date
    Sep 2002
    Posts
    309
    Yeah. It's possible......

    Install a database on the server (e.g.: mysql).........

    Write your game and access the database to get or store data on the net....

    e.g.: you can use Mysql++ (it's a C++ API for MySQL)

    http://www.mysql.com/documentation/mysql++/index.html

    All the things u wanna create or develop are possible. If there are no tools (APIs, progs....) you have to write them.

  3. #3
    You could also just make the server make a file for each user. This is how a lot of game servers work. I never thought of using SQL for a game though. Both ways would achieve the same effect, the SQL way would probably be better.

  4. #4
    Registered User
    Join Date
    Sep 2001
    Posts
    305
    there are so many mmorpgs(massively multiplayer online rpg) out there like ultima online and a lot of them are written in c/c++. indie developer mmorpg projects have a failure rate of like 99% though.

  5. #5
    Registered User
    Join Date
    Feb 2005
    Posts
    13
    not really, ever heard of www.eternallands.com?

  6. #6
    Registered User
    Join Date
    Sep 2004
    Posts
    197
    Most MMOs take alot of money due to the amount of power you need to handle the numbers. I mean try tracking 1000 different player entities alone on a server, it a statefull fashion, isn't easy, but then you add in NPCs (enimies, friendly, etc) and you have alot of work. Also many of the larger ones are using SQL backends (World of Warcraft uses Oracle specificly), and tend to use some form of clustering in order to distrobute the weight of all the clients and what not. It can (and has been) done though, but the hard part is probably alot less in developing it, and more in actually running it.
    If any part of my post is incorrect, please correct me.

    This post is not guarantied to be correct, and is not to be taken as a matter of fact, but of opinion or a guess, unless otherwise noted.

  7. #7
    email for MystWind avatar MystWind's Avatar
    Join Date
    Feb 2005
    Location
    Holland , The Hague
    Posts
    88

    Post some MMORPG's

    this one is writtin in java . but its a real good one.

    Runescape

    this one is writtin in C++ .

    Tibia

    this one is written in C ( almost sure ) , but the server is most of the time down.

    rpg world

    this one is written in MacroMedia. funny for a week then you get bored.

    Battle-on

    so... yes its possible :P and think of world of war craft.. man , those guys got rich.
    PLay MystWind beta , within two years

  8. #8
    & the hat of GPL slaying Thantos's Avatar
    Join Date
    Sep 2001
    Posts
    5,681
    Closed due to the 2 year bump.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Looking for major help on hacking a online game
    By bergerman123 in forum C++ Programming
    Replies: 5
    Last Post: 12-09-2008, 10:27 PM
  2. New Project, text game, design stage.
    By Shamino in forum Game Programming
    Replies: 9
    Last Post: 05-23-2007, 06:39 AM
  3. game engine advice?
    By stien in forum Game Programming
    Replies: 0
    Last Post: 01-23-2007, 03:46 PM
  4. PC Game project requires c++ programmers
    By drallstars in forum Projects and Job Recruitment
    Replies: 2
    Last Post: 02-22-2006, 12:23 AM
  5. Try my game
    By LuckY in forum A Brief History of Cprogramming.com
    Replies: 14
    Last Post: 09-15-2004, 11:58 AM