About Store Forum Documentation Contact



Post Reply 
keeping Game::World in sync [MMO]
Author Message
mongots Offline
Member

Post: #1
keeping Game::World in sync [MMO]
I've been doing some work with the MMO code and have come across a problem.

When I dynamically add objects to the game world (same as in the 'Dynamically Created Objects' tutorial) They only appear in the client that created them.

Is there a method already baked in to get the areas to update themselves between the server and clients, or will I have to override the Game::Area struct to include dynamic objects in the updates?
08-24-2011 03:03 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: keeping Game::World in sync [MMO]
Typically you shouldn't create objects on the client side, but send a request to the server, to create that object, and then the server should notify all clients that an object should be created
This is available (source code) in Ineisis Lite package
08-28-2011 11:31 AM
Find all posts by this user Quote this message in a reply
dragonfly3 Offline
Member

Post: #3
RE: keeping Game::World in sync [MMO]
Sorry for the off-subject post. What is the "Ineisis Lite package" and what features are included? I don't see it on the purchase options page.
08-29-2011 04:05 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #4
RE: keeping Game::World in sync [MMO]
Company license+ source code for a lite version of Inesis.
.es MMO package basically with alot neater code structure included.
08-29-2011 04:15 AM
Find all posts by this user Quote this message in a reply
dragonfly3 Offline
Member

Post: #5
RE: keeping Game::World in sync [MMO]
How much is it?
08-29-2011 04:50 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #6
RE: keeping Game::World in sync [MMO]
look for "Source Codes: Ineisis Lite (simplified version of Ineisis Online)" in http://www.esenthel.com/?id=buy

If you have Personal License, you'd need to upgrade to Company License (pay the difference in prices)

Ineisis documentation available here:
http://www.esenthel.com/wiki/index.php?title=Main_Page
08-29-2011 02:11 PM
Find all posts by this user Quote this message in a reply
mongots Offline
Member

Post: #7
RE: keeping Game::World in sync [MMO]
Ahh, I'll have to build all the updates and such myself if I don't get the upgraded license.

Thanks for the reply Esenthel!
08-29-2011 04:08 PM
Find all posts by this user Quote this message in a reply
Post Reply