Questions tagged [mmo]

A massively multiplayer online game (also called MMO and MMOG) is a multiplayer video game which is capable of supporting hundreds or thousands of players simultaneously. By necessity, they are played on the Internet, and usually feature at least one persistent world.

A massively multiplayer online game (also called MMO and MMOG) is a multiplayer video game which is capable of supporting hundreds or thousands of players simultaneously. By necessity, they are played on the Internet, and usually feature at least one persistent world.

96 questions
0
votes
0 answers

How to best handle an MMO for android

I'm looking to create a simple MMO in android. I'm wondering what the best course of action would be in terms of sending/receiving data. There would be no rendering of graphics, it's all text-based. How would I send/receive data? Would I just have…
Gentatsu
  • 696
  • 1
  • 6
  • 26
0
votes
2 answers

ConcurrentDict doesnt prevent items to be null inside an loop

foreach (KeyValuePair kvp in World.AllChars) { Character Charr = kvp.Value; Charr.Do(); <-- NullrefException: Charr is null } Code with the check: foreach (KeyValuePair kvp in World.AllChars) { …
Yuki
  • 25
  • 5
0
votes
2 answers

OOP C# - Design pattern for MMO mechanics simulator

I've been working on a simulator for FFXIV; I keep getting really close to finishing, then I get walled into an object access issue that doesn't let me access the stats of the main player. My project can be found at:…
0
votes
1 answer

Myth of Soma MMO game Bot - Memory Address for Items on floor contains garbage and constantly changing info

I've been coding a bot for a relatively small MMO, mainly as a hobby to challenge my own skills and learn something new. I've overcome many challenges and have successfully built a bot which hunts monsters in the game and manages itself. However…
0
votes
3 answers

C# MMO server structure

I am at the beginning of writing an simple mmo server for demo game. I am using UDP protocol (UdpClient) but I wonder, how other servers are working?: only 1 UDP client that process all connected clients and messages and responds to them server…
Nikola R.
  • 1,173
  • 6
  • 23
0
votes
1 answer

MMORPG's and Game Clients

I want to know how to make a client like some of those MMORPG's you see out there that they have a client that reads the game files then launches the game. I already know that most those clients are written in C++, but unfortunately i don't that…
Blaze
  • 7
  • 4
0
votes
1 answer

TCP Socket Data Send/Recv Operation

I'm working on a MMO game server. I have to understand TCP data send/recv operations (not usage, detail). I want to ask this: If I send a 5kb data from a .net socket client, may server socket handle this data send operation one more time? Namely can…
0
votes
0 answers

Socket server multi-threading

I have 3 main threads in my server project. (TCP) Socket accept and client setup operations Incoming data handler (TCP&UDP) and processor (maybe login, lobby etc.) Outgoing data handler (TCP&UDP) and processor (sends data via UDP or TCP to…
0
votes
1 answer

Bachelor thesis - Distributed Systems Video Coding Cloud Computing

I would like to begin my thesis(Computer Science/Computer Engineering uni) soon and I would appreciate it if you threw some ideas. I'm interested in Distributed Systems. I find the MMOG architecture quite interesting. Also Object Migration seems…
adkalkan
  • 69
  • 1
  • 7
0
votes
2 answers

php - how to make event queue working in offline mode in browser games

While thinking about making browser games i met a disturbing trouble. Many games has something called 'event queue' that works like this. I have an "army" and send it to my opponent. I takes some amount of time. When my "army" gets oponent "army's"…
Kalreg
  • 931
  • 3
  • 12
  • 31
0
votes
0 answers

mmo database connectivity / security concerns

How secure or unsecure would it be to develop an MMO that makes ADO calls? If decompiled, the connection string would be exposed. What is the best way method of tracking a users position, etc.
Isabelle Harms
  • 375
  • 3
  • 9
0
votes
2 answers

2d android mmorpg game

I want to make an mmorpg game and i wanted to know some things before i start, well, first of all, I know how to make games for android and i have been using canvas, opengl es 1.0/1.1 and some andengine(also opengl es 1.0/1.1). I wanted to know what…
Baruch
  • 1,618
  • 5
  • 23
  • 42
0
votes
1 answer

AS3: Changing children MovieClip of an animated movieclip through AS3

I have a character with different body parts: Hair, Head, Body, Arms, Legs. I animated the character with a walk animation and stand animation. I have given the character's hair an instance name of hair in each of these animations so I can access it…
-1
votes
1 answer

MMO Currency - Making 493205 be 49g 32s 5c

Stackoverflow This is most likely a very, very simple solution but my tired brain simply can't come up with it. As the title suggests, I'd like to write a function that's able to convert a number like: 493205 Into a string of: "49g 32s 5c" What…
Dennis A
  • 71
  • 7
-1
votes
1 answer

Shout box in MMO make new button and timers to limit shouts

I would like to know how I could code in new buttons in my shout box menu in a mmo so that certain shouts can be turned off Here is a list of the chat system General General chat is in white. It is at times also referred to as White Chat. This is…