• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Network Replication & online gaming

Got link to an article that defines or explains the type of network replication you are talking about ?

Networking code in games tries to do a lot of neat tricks. It tries to predict where people are moving, so it seems on your screen that everything is fluent. This can cause small inconsistencies. But there is no real solution. In a distributed system, with noticeable transmission delays, you can't make everything act as if it is happening simultaneously.

Even if a game would try to make sure that everything happens at the same time for every player (and thus keeping ping in account), there is still a difference between the guy who presses a button and fires a shot, and everybody else in the game. So "every connection being as slow as the highest ping player" still isn't a solution.
 
Back
Top