2
votes
5answers
55 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 …
6
votes
6answers
287 views
Self-regulation of a mini economy
Hello!
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 w …
15
votes
14answers
873 views
Can it be morally defensible to release a program which games an MMORPG?
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 reaction …
1
vote
3answers
137 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 …
5
votes
7answers
892 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 trad …
2
votes
6answers
238 views
C++ AI Design Question
Hi,
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 char …
2
votes
5answers
418 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 …
2
votes
2answers
216 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 …
0
votes
3answers
368 views
Manager game: How to calculate market values?
Hello!
Usually players in a soccer manager game have market values. The managers sell their players in accordance with these market values. They think: "Oh, the player is worth 3, …
0
votes
4answers
143 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 mov …
7
votes
4answers
2k 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 …
4
votes
1answer
180 views
What’s an extensible way of implementing server-side command processing in an MMORPG?
Hey everyone,
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 h …
4
votes
5answers
393 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
…
5
votes
1answer
1k 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 …
2
votes
9answers
944 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?
…
