• Register

The game you are trying to view has ceased development and consequently been archived. If you are a member of this game, can demonstrate that it is being actively developed and will be able to keep this profile up to date with the latest news, images, videos and downloads, please contact us with all details and we will consider its re-activation.

Trial of the Elements is a Battle Arena game based on chemistry. ​ Work as a team, and combine different elements to enhance your abilities! Customize your characters with a wide range of skins,  more coming soon.

Report RSS Behind the Scenes: Programming

This is the first "Behind the Scenes" for our game Reaction! I, Niklas, will explain you the coding process in this project and how we manage the gameplay and network stuff.

Posted by on

Behind the Scenes: Programming


Hey guys, I am Niklas, the lead programmer of our game “Reaction” and I will explain you the steps and mechanics that will power the gameplay and multiplayer of this project.

A typical problem that arises of such security critical games is the cheating aspect. Through memory manipulation, packet sniffing and scamming, users can highly affect the game flow and fun. There are several ways to eliminate these problems, mostly through shifting game logic to the backend of the servers. Because of this, I decided to leave out existing libraries including Photon and the build-in Unity networking. The current client frontend runs on the Unity game engine whereat the server that controls the gameplay is constructed in a .NET application. This backend construction allows us to bundle both the simulation of all objects and their behavior.

Behind the Scenes Programming Ne

Structure of the game network

As you can see the game client is not sending commands or actions, just requests. The network of Reaction is authoritative which means that players cannot influence the world directly. They send requests when something happens, for example they activated a spell which then gets wrapped into a request, is sent to the server and processed. The server sends events whenever something happened, for example a player casted a spell. This technique is used by many games that put an eye on any aspect of cheating, including Counter Strike, DotA and League of Legends.

In the picture above you can also see a square called “Game Data”, which contains all resources you can interact with. Spells, buffs and element or map information are stored in these databases and grabbed by the game servers. This bundle of data is then spread to the clients which makes patching and updating game content a matter of seconds for us, the developers as much as you because no new versions need to be downloaded for such fixes.

In the current state of development I created the game server and simulation, including the connections and basic game client. In the next months I will finish up the game data and resource management, which means that we also already ran first stability tests.

This was it with the first behind the scenes with me, if you have questions feel free to ask me.

Post a comment

Your comment will be anonymous unless you join the community. Or sign in with your social account: