Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
14answers
1k views

Can it be morally defensible to release a program which games an MMORPG? [closed]

I have written presumably some of the first code to modify the memory of a popular new MMORPG in such a way as to create a macro framework, allowing for advanced automated reactions, skill/level gain, ...
14
votes
3answers
339 views

What are some best practices for making sure your .NET code will scale well?

Last week I interviewed for a position at a TripleA MMORPG game company here in NE. I didn't get the job but one of the areas that came up during the interview was the about the scalability of the ...
10
votes
5answers
3k views

Algorithm for Client-Server Games

For stand alone games, the basic game loop is (source: wikipedia) while( user doesn't exit ) check for user input run AI move enemies resolve collisions draw graphics play sounds end ...
10
votes
4answers
6k views

Multi-client, async sockets in c#, best practices?

I am trying to gain a better understanding of tcp/ip sockets in c#, as i want to challenge myself to see if i can create a working MMO infrastructure (game world, map, players, etc) purely for ...
8
votes
7answers
578 views

Self-regulation of a mini economy

At first: I'm not sure if it's an adequate question for Stack Overflow. It's not just about programming, it's about game design. But I'll try it ... I would like to deal with "Possibilities for ...
7
votes
7answers
2k views

MMORPG protocol encryption

Anyone know what the trend is with MMORPG developers encryption their client/server protocols these days? The pro's and con's are as follows. Encrypting protocol: protects trade secrets regarding ...
6
votes
3answers
408 views

What technology should I use to write my game?

I have a great idea for a 3D network game, and I've concluded that it is possible to write it in Java as an applet which will live under the web browser, just like a full software in C++. And it will ...
6
votes
1answer
462 views

What's an extensible way of implementing server-side command processing in an MMORPG?

Update: I'm sorry if maybe my question isn't clear enough. I've read about the command pattern, but unfortunately have not used it myself. I'm trying to figure out how I could use it (or some other ...
6
votes
1answer
4k views

What is the best java RPG (Role Playing Game) engine for an experienced programmer?

I am looking into building a smallish Java rpg. I haven't found any good examples of a RPG engine that would be the most powerful yet most stable for an experienced Java programmer. Any and all ...
6
votes
4answers
2k views

MMORPG / VR Architecture

Could anyone provide a link to the article / blog discussing architecture of the MMORPG or Virtual Reality Server or other system with rich 3D client.
5
votes
2answers
379 views

What's your perspective on Monopoly City Streets as a programmer/dba?

Monopoly City Streets is the latest MMORPG by Hasbro. If someone asks you to build a similar game, how would you go about it? What technology/language Hardware specs and scaling Database and its ...
5
votes
9answers
3k views

MMORPG Client/Server Coding

How are the UDP and TCP protocols used in MMORPG client/server communication? For example: Does the client broadcast (player position, etc) via UDP to the server? or vice versa? Or is it more like ...
5
votes
10answers
2k views

Online game: Macromedia Flash or Microsoft Silverlight and why?

Which technology stack is best for the creation of a two dimensional MMORPG and why? This question is loaded, so which are the major factors would you consider for development in such a domain?
4
votes
6answers
385 views

Should a MMORPG use encryption?

First of all, do those successful commercial MMORPGs use encryption for game data transmission? I got an impression that many developers tend to not use encryption, because it can not prevent reverse ...
3
votes
3answers
195 views

Is this the right architecture for our MMORPG mobile game?

These days I am trying to design architecture of a new MMORPG mobile game for my company. This game is similar to Mafia Wars, iMobsters, or RISK. Basic idea is to prepare an army to battle your ...
3
votes
2answers
252 views

NoSql option for MMORPGs

I was wondering what sort of benefits a nosql option might have either in lieu of, or in conjunction with a rdbms for a typical MMORPG. In particular, I'm curious as to how data integrity is ...
3
votes
2answers
276 views

How should I handle persistence in a Java MUD? OptimisticLockException handling

I'm re-implementing a old BBS MUD game in Java with permission from the original developers. Currently I'm using Java EE 6 with EJB Session facades for the game logic and JPA for the persistence. A ...
3
votes
5answers
436 views

Multiplayer UDP networking strategy, advice needed

I'm attempting to create a C++ plugin for a realtime 3D game. Although I believe to have a firm grasp on the theory of UDP, how it works, what its strengths and weaknesses are, my primary matter of ...
3
votes
5answers
2k views

TCL vs Lua - scripting a mmo server

I have a c++ server side project that I need to embed some sort of scripting into. It is part of an online MMO type of server. I have significant experience using TCL, and it seems like the natural ...
3
votes
5answers
680 views

C++ AI Design Question

I am currently writing a bot for a MMORPG. Though, currently I am stuck at trying to figure out how to nicely implement this. The design problem is related to casting the character spells in the ...
2
votes
2answers
125 views

Need suggestion about MMORPG data model design, database access and stackless python

I'm engaged in developing a turn-based casual MMORPG game server. The low level engine(NOT written by us) which handle networking, multi-threading, timer, inter-server communication, main game loop ...
2
votes
0answers
77 views

Client / server message rates in MMORPG

I've created a client/server based game in which the server collects requests through TCP sockets and sends back the movement information and such through UDP without any ack (I really have no ...
2
votes
2answers
73 views

How to create a function like 'build building' like in Ikariam (MMORPGs), that keeps counting when the user isn't on the website

I've been developing games and websites for the past two years, and really love it. Some time ago I started playing Ikariam (and OGame). These are MMORPGs. You can create your own city by building ...
2
votes
5answers
246 views

Cross-platform game development: ease of development vs security

I'm a member and contributor of the Argentum Online (AO) community, the first MMORPG from Argentina, which is Free Software; which, although it's not 3D, it's really addictive and has some dozens of ...
2
votes
4answers
2k views

Good book(s) for MMORPG design & implementation?

I am a long time professional C/C++ programmer (mostly embedded systems) and a hobbyist windows & php hacker. Can anyone recommend a book(s) specifically aimed at designing and (hopefully) ...
1
vote
1answer
54 views

App Engine: Memcache design to ensure fast read and high write throughput

I'm currently using App Engine with Python. My application looks like a massive multiplayer game. I would like to improve the time necessary to fetch the latest actions published in a "room". I ...
1
vote
0answers
34 views

MMORPG game balancing [closed]

I've seen a couple of examples of some game balancing techniques in books yet they are not comprehensive and not particularly aimed at MMORPGs but I'm looking for practical examples of game balancing ...
1
vote
2answers
58 views

How can I add networking to the game I made in GridWorld?

(GridWorld as in Collegeboard's AP exam case study thing) So, I've been working on this game during my free time for a few years now, and it's coming along pretty nicely. I have a nice lil' stick ...
1
vote
1answer
140 views

C++ Autopatcher GUI (With a unique skin)

Can you please take a look at this picture of a game launcher: How can I create something identical? (using my own art) Everything about the design I just love, I downloaded qt, wxWidgets, nuilib ...
1
vote
1answer
404 views

What is the most popular MMO game that has an out-of-game API [closed]

World of Warcraft is off the table, because of the "WOW Glider Lawsuit" of 2008. Also see: Where is Blizzards official World of Warcraft API? But, what is the most popular (in terms of usership) MMO ...
1
vote
1answer
134 views

List of delegates and invoking

I am creating a smaller RPG game in ASP.NET. In this game I have an items architecture, where each item has some methods. For instance, all items should share a method like "Drop", "Examine" and ...
1
vote
2answers
780 views

An MMORPG using AJAX

I want to start making an MMORPG which would run on the browser using JavaScript, AJAX and / or PHP. Of course it will use MySQL as storage for the user's data (position, items, etc.). It needs to be ...
1
vote
3answers
716 views

Artificial Intelligence in online game using Google App Engine

I am currently in the planning stages of a game for google app engine, but cannot wrap my head around how I am going to handle AI. I intend to have persistant NPCs that will move about the map, but ...
1
vote
4answers
1k views

PHP + MySQL iPhone MMORPG

Is it possible to make a mmorpg for the iPhone using PHP and MySQL(1,000+ players)? I was thinking of using MySQL to store all of the player information (name,username,pass,location,position). Then I ...
1
vote
0answers
370 views

Flash MMO for facebook Architecture

Can someone please help in the architecture of the social multiplayer browser game with flash. I would thankful if there is detailed process for developing these games and guidance. thanks in advance ...
1
vote
3answers
1k views

What is a good game engine with solid network support?

I do not want to beat around the bush so getting right into it no I'm really not one of those people asking how to make an mmorpg, haha (was about 6 years ago until someone told me to learn ...
0
votes
0answers
34 views

Realtime PHP,Javascript,MySQL MMORPG Optimization Tips [closed]

Hi i want to create a realtime mmorpg where i can see other players moving and things like that, using javascript (AJAX/JSON), php and mysql. i already made an engine like that a while ago, but when ...
0
votes
3answers
72 views

Message rate between clients/server in MMORPG [closed]

How often should the clients send requests to the server? And how often should the server send updates to the clients? Are there any recommendations?
0
votes
2answers
122 views

Java SSLSocket for mmorpg game server

I'm writing a thread/connection mmorpg server in Java, and I was wondering, should I use the normal Socket class and add security to the connection by myself(exchanging keys with a certain handshake ...
0
votes
0answers
25 views

Complex expressions from different SQL tables using C# and ASP.NET

I'm writing a browser RPG game, where character traits are stored in different tables. for example I have a Character table for basic data, but I have a CharacterSkills table for skills, and this has ...
0
votes
3answers
411 views

Javascript browser MMORPG [closed]

How do you think - is it possible to make (in HTML5 canvas) MMORPG game ? If yes - what technologies on server-side whould you use? How would you manage high loads?
0
votes
1answer
161 views

I Have a PHP MMORPG running on an Xampp Server, and i`d like to benchmark it

Thats it I Have a PHP MMORPG running on an Xampp Server, and i`d like to benchmark it to know if its to Bandwidth consuming or if takes heavy load on server Can someone tell me how to do it? which ...
0
votes
2answers
337 views

Socket server for 2D MMORPG

I'm starting a 2D browser multiplayer game consisting of a city with many kinds of transports (metro, buses, tunnels), players using those transports and having some interaction between them. I have ...
0
votes
1answer
483 views

C# AS3 MMO Socket Server/Client

I'm making a micro-mmorpg as a project. I'm making the server using c#, and the client is Flash AS3. How should I organize the client-server messaging system? I want a client to be able to send a ...
0
votes
2answers
129 views

ORPG Engine Development, structuring the code (C++, 2D)

I've been working on a game 2d ORPG Engine with a friend of mine, however we're having some troubles organizing and structuring the code. I could use some pointers, guides, tutorials, etc. on how to ...
0
votes
2answers
723 views

Code Own Socket Server or Use Red5/ElectroServer on Amazon EC2?

I've been thinking for a long time about working on a multiplayer game in Flash. I need updates frequently enough that ajax requests won't work so I need to use a socket server. The system will ...
0
votes
3answers
98 views

Virtual world help

I want to start writing a multiplayer 3D game. It will be a virtual world, that user are represented as players. Every player, is a 3D model. I'm going to write this in Java and JOGL, so it will be ...
0
votes
4answers
790 views

Comment my MMO client<>server movement handling

I'm working on a basic 2D flash MMO. The first alpha will contain the basics: players can move around. This is, I think, also the most important part to be highly optimized. As movement happens all ...