Skip to main content

Questions tagged [server]

The parent computer responsible for handling interactions with multiple client connections, as generally encountered with online games.

Filter by
Sorted by
Tagged with
5 votes
4 answers
5k views

I'm wondering why there aren't any tools to automate the generation of an authoritative game server? It appears to be a simple task. However I've only worked in simple 2d games so I'm not ...
JobHunter69's user avatar
2 votes
1 answer
701 views

So I'm trying to understand how multiplayer works in Godot and the docs are very clear when one application is the host and the other applications join the host. Now i want to have a dedicated server ...
LoonPie's user avatar
  • 96
2 votes
0 answers
110 views

In https://developer.android.com/google/play/licensing/server-side-verification it was said that it is possible to perform license verification check on a server. The step for server-side license ...
pi squared's user avatar
1 vote
0 answers
110 views

I'm building a Server-side engine for 2D sandbox game similar to Terraria or Starbound. The language I use is Dart (similar to JavaScript or C#). Currently I'm trying to figure out how to make a good ...
Zekfad's user avatar
  • 11
0 votes
0 answers
37 views

Starting with the fact that my background is non-technical, I have used a keystore with my Unity game build that is for Oculus, Rift, etc. Now I want to verify the authenticity of incoming client ...
SKB_BGPL's user avatar
0 votes
1 answer
613 views

I apologize if this is not the proper place to ask this question but I am hoping that if you folks cannot help then you would know of someone or somewhere to send me to get the answers that I have ...
Eroded Gaming's user avatar
0 votes
0 answers
131 views

I want to create a Unity WebGL application, that will run in a browser. I want to allow this application to "listen" for messages, so it needs to be a server. What could be the developing ...
stighy's user avatar
  • 477
1 vote
1 answer
253 views

Vast majority of modern network games use "lobby" conception: when limited amount of players connect to a single lobby server and play the game in isolation from everyone else who is not in ...
AseN's user avatar
  • 113
0 votes
1 answer
147 views

I'm creating an online game (2d platformer) and I'm having some trouble understanding what to send clients. I'm sampling each player's input and sending it to the server after a set amount of time. ...
Kaeru's user avatar
  • 3
0 votes
0 answers
266 views

How do games handle arrays/objects of billions of lines to load every gameobject/players positions of big maps for example (server side, for authoritative servers)? I understand it could be split ...
Owow's user avatar
  • 101
0 votes
0 answers
902 views

How to check if the sender of a udp packet is authenticated? I think sending an authorization token in each packet is slow. So my second implementation is this: the network part will consist of one ...
olegshmel's user avatar
1 vote
0 answers
800 views

I'm making a multiplayer game with a Node.js server, and I'm searching for how to write the game loop. I'm currently using a setinterval every 15ms, but someone ...
Wild Royal's user avatar
0 votes
1 answer
3k views

I'm trying to make a multiplayer game where there are multiple levels. All these levels will have different rooms, each with a max player count of 4. Basically, player selects a level check if there ...
UserUser's user avatar
  • 171
0 votes
0 answers
87 views

I have multiplayer server written in C that handles various tasks like user sessions, game states and database. The server communicates with clients via TCP sockets. There are multiple threads each ...
user159155's user avatar
0 votes
1 answer
582 views

I am relatively new to how asset bundle works in Unity. Based on my learning, it seems one uses UnityWebRequest.GetAssetBundle to download an asset from a specified ...
cr001's user avatar
  • 153
0 votes
1 answer
1k views

I don't need an exact number but I want to know roughly how many MySQL servers do I need to rent if I were to develop an online RPG game that has roughly 100000 users per day (assuming on average 1 ...
cr001's user avatar
  • 153
0 votes
0 answers
281 views

A quick note about my server is that it executes game logic in 250ms intervals. I am trying to wrap my head around how to do this. The main issue I have is currently that I have the map of entityIds ...
Althaen's user avatar
  • 103
1 vote
4 answers
998 views

As with the title, are they usually developed together in a custom engine, or are they mostly developed independantly of each other? e.g. the server and client as completely different projects that ...
Grant Upson's user avatar
1 vote
1 answer
222 views

I'm creating an online arena game server (moba) that players can play together. 2v2 or 3v3. The game is similar to Battlerite. I chose client/server architecture with deterministic server that tells ...
Mamad R's user avatar
  • 113
0 votes
1 answer
3k views

So I'm currently learning more about game networking and how clients and servers work, and something that I have a hard time wrapping my head around is how game servers works in terms of ticks. Why do ...
RileyDan's user avatar
  • 101
2 votes
0 answers
86 views

I have a system where clients are connected to one of many servers sitting behind a loadbalancer with WebSockets. No matter which backend server clients are connected to, I am using a messaging ...
user482594's user avatar
0 votes
1 answer
289 views

I'm working on a real time multiplayer browser-based game. The game is top down on variable size tile based maps. There is no central map where all players come together, the entire game plays out in ...
sushibrain's user avatar
0 votes
0 answers
64 views

I built a multiplayer game with the Unity UNET. For doing this I bought a VPS server. Everything works fine. But sometimes when players want to quit the game, the servers do not destroy him from the ...
iman_sh's user avatar
  • 175
1 vote
1 answer
333 views

I’ve written a few games in Xcode before and would like to turn one into the simplest possible 2D top-down RPG multiplayer game. Essentially just needing movements around a big tiled map (I love ...
Donny7's user avatar
  • 11
0 votes
0 answers
98 views

When developers plan and decide on new buffs and nerfs, do they gather information from online game matches, recorded secretly from their servers' data feeds and reconstructed / analyzed offline - for ...
ivan866's user avatar
  • 141
0 votes
2 answers
623 views

I want to use a vps/dedicated server for game hosting. I expect hosting a lot of servers on that. For the connection, should I assign a unique port for every server or change IPs for every server. And ...
CoolingJam19341's user avatar
0 votes
0 answers
70 views

I am developing a top down shooter and my singleplayer is pratically finished so now I want to move on to develop multiplayer but I have some questions and I am seeking for some advices. In my game a ...
Fábio Pires's user avatar
0 votes
1 answer
196 views

In an authoritative game server working with websockets, should you store every action to the database before sending the response to the client? The risk is the slow response time. Or should the ...
Arty's user avatar
  • 103
0 votes
0 answers
32 views

Is it possible to build a websocket client (eg using blueprints) and then package this into an EU4 server (like suggested here). If so, would this mean that the EU4 server's websocket client could ...
Shasaur's user avatar
4 votes
1 answer
4k views

I'm making a multiplayer 2d shooter platformer in unity. And after studying the different options to program an authoritarian server and with the great help that many of you have already provided me ...
coantia's user avatar
  • 57
1 vote
0 answers
135 views

I'm working on a turn-based game with CRPG (Computer RPG) elements in HTML5. It has to support 10K+ CCUs (Concurrently Connected Users). The CRPG elements in the game are item and character systems: ...
Alexander Gladysh's user avatar
1 vote
0 answers
2k views

I've made a multiplayer game with Unity and Mirror networking, and it all works perfectly when just running it on my own computer. However, I am trying to host on a dedicated server so that I can put ...
xcrypt's user avatar
  • 498
0 votes
1 answer
83 views

Background I've read up a little on the concept of splitting the world into regions which in turn can each be run on a node within a cluster. However my game concept revolves less around zones but ...
Flosculus's user avatar
  • 103
0 votes
0 answers
324 views

My team and I are working on an upcoming online fighting game using ENet-CSharp (A C# ENet implementation created by nxrighthere), and we're currently designing the architecture of the server. We ...
Ido Sofi's user avatar
1 vote
0 answers
376 views

I am looking to stress test my server for the game Rust and monitor CPU, RAM and FPS. I could not find much around. I general I think I will need a good amount of compute power, bunch of cloud based ...
Madeo's user avatar
  • 111
1 vote
2 answers
719 views

I was developing an game. I using single threaded nodejs(socket.io) server. It is good for simple games or games like basic 3d world? Usually game will have 10-20 players(clients). Also is single ...
ihatemyself's user avatar
0 votes
0 answers
257 views

I made a server for a 3D multiplayer game I'm working on. The game is currently functional to a point where I know multiplayer gameplay is possible locally on Windows. IDE: Visual Studio 2019 Target ...
Mithrandir's user avatar
0 votes
2 answers
168 views

I developed a playing cards web app using HTML/JS/CSS. Communication with the server is performed using WebSocket. The server is developed in Java Spring. The game proposes to join one of the many ...
Mehdi B's user avatar
0 votes
0 answers
573 views

we are developing a mmorpg with a small team. There are 2 structures we can create on the server side for managing clients and processing packages. I wonder what structure is better. I would be very ...
Apabos's user avatar
  • 1
0 votes
1 answer
1k views

The game I'm building allows users to create their own tile maps essentially, so I want the server to respond with tilemap coordinates if / when a user enters their custom world.
James Nixon's user avatar
2 votes
1 answer
3k views

I would like to start developing my own game. Basically, the game has a "world" that players can travel around and modify. Think of it as a much more realistic version of Minecraft or an open world ...
Java Developer's user avatar
0 votes
0 answers
53 views

I'm currently developing a 2D game in the browser with Nodejs and Canvas. Im simulating the world state in the server side with a timestep of 60 frames per second. Im only sending a snapshot of the ...
Paco S's user avatar
  • 1
0 votes
0 answers
119 views

Let's say we have a 2d map 500*500 tiles in size. And each tile is editable by players and has many states. So it's 250k tiles. The game is multiplayer online game. What would be the best approach ...
lxknvlk's user avatar
  • 236
0 votes
1 answer
749 views

I'm building a game server for a turn-based RPG game, where the players control their characters through a web interface ( think kind of like a Jackbox Party Pack game, where there's a screen that ...
Sean Hagen's user avatar
0 votes
1 answer
373 views

I am working on my custom server for my online game and I was wondering if there is any way to accomplish this in a more performant way. Basically I will be spawning and despawning objects (such as ...
Exrotz's user avatar
  • 3
0 votes
1 answer
849 views

I wonder how idle games, games where players only make a few clicks to get a game progress, work. These games appear to be running in the background, even when the app is closed. Therefore these games ...
IdleGameFan's user avatar
0 votes
1 answer
155 views

I'm currently working on a minor multiplayer project which is made like a hacking simulator where your character can login to a "console"-like interface to permanently manipulate the system with ...
Poul A. M. Poulsen's user avatar
0 votes
0 answers
557 views

I would like to know how to create simple launcher for FiveM server. I don't need help about UI, design, etc. only script when someone clicks 'Play' it connects him to server. Thank you very much!
DonIvanda's user avatar
8 votes
4 answers
6k views

I'm working on a server for a little mobile MMORPG. This consists mainly of two important features: mobs and environment resources like trees, rocks etc. The world is randomly generated and each time ...
genaray's user avatar
  • 517
0 votes
1 answer
156 views

I´m kinda new to these networking stuff, but basically managed to finish server to handle client requests(wan´t it to handle connections to game and help the clients update the game and stuff). I got ...
Pins's user avatar
  • 589

1
2 3 4 5
7