The parent computer responsible for handling interactions with multiple client connections, as generally encountered with online games.
0
votes
1answer
20 views
Server Side : How to manage “delay” action/event like attacking?
at the moment I'm writing a game server, so I made an event "handler". I mean, if a player send to the server "I move" it fire a function, so I think I'm doing well at the moment.
But there's a ...
0
votes
1answer
232 views
Basic Connections Through Socket Server
I'm designing a simple 2 player RTS with Stencyl, a program that uses blocks for coding. The current code updates lists whenever an actor moves (new X and Y), and I'd want the server to update the ...
-3
votes
1answer
330 views
UDK dedicated server project. How to create user information files
Now I know how to launch my dedicated server in udk.
But now I need to know, that how can I put the server to make a information file for every registered user in my server(whitch stores information ...
1
vote
0answers
481 views
How to implement the server-side game loop?
The server needs to handle the physics, because all the movement will be handled by it. So for that I need a game loop. The thing is that the server doesn't have the render part, it's just a console. ...
0
votes
0answers
25 views
how to guarantee the order of response in a service-oriented mmo server cluster
i'm working on a mmo server these days. it's a service-oriented architecture, every service is one process which processes a specific type of request, and i have inventory service, battle service, ...