CryoFall/Server/Setup: Difference between revisions

From AtomicTorchWiki
Line 16: Line 16:
==== How to host your own server: ====
==== How to host your own server: ====
# Make sure to read server requirements section above and install the required software before attempting to run the server.
# Make sure to read server requirements section above and install the required software before attempting to run the server.
# Download the game server runtime from [https://atomictorch.com/Files/CryoFall_Server_v0.21.0.9_NetCore.zip this url] and extract it.
# Download the game server runtime from [https://atomictorch.com/Files/CryoFall_Server_v0.21.0.12_NetCore.zip this url] and extract it.
# IMPORTANT: please ensure there are no space chars in the path to the extracted server location.
# IMPORTANT: please ensure there are no space chars in the path to the extracted server location.
# The server executable is located in the subfolder: "Binaries/Server". Launch the command line (or PowerShell in Windows) and navigate to this folder (hint: in Windows you can simply '''SHIFT + Right-click''' on the "Server" folder in Explorer and select "Open PowerShell window here").
# The server executable is located in the subfolder: "Binaries/Server". Launch the command line (or PowerShell in Windows) and navigate to this folder (hint: in Windows you can simply '''SHIFT + Right-click''' on the "Server" folder in Explorer and select "Open PowerShell window here").

Revision as of 20:52, 26 April 2019

Requirements

Hardware requirements:
(for up to about 100 players online) 2-core CPU 1.6-2 GHz, 1-1.5 GB RAM, 5-10 Mbit/s connection.
(for up to about 200 players online) 2-core CPU 2-2.4 GHz, 1.5-2 GB RAM, 10-20 Mbit/s connection.
Usually, VPS (virtual machines) hosting such as Vultr (this is our referral link as we're using this company services to host our own servers) is sufficient for hosting a game server. Using 1-core machines is not recommended as the game requires a secondary CPU to ensure smooth performance without hiccups during intensive background operations (such as world snapshot saving). Using more than a 2-core machine for a single game server hosting is redundant as the game cannot utilize more than two cores due to sequential execution of the game simulation (except physics and networking).

To launch a multiplayer server on any system (including Windows, Linux and Mac), you need to have .NET Core 2.1 Runtime installed. It's supported for the many operating systems and installation is very quick. To install .NET Core 2.1 Runtime please visit Microsoft .NET Core Downloads and select Runtime Installer for your operating system. Follow the installation steps to setup the game server.

Docker Image

The docker server image is coming soon. It will make it much easier to install and update the game on Linux. Currently, only the .NET Core executable is distributed (which is cross-platform but requires .NET Core 2.1 to be installed as described above).

Installation

How to host your own server:

  1. Make sure to read server requirements section above and install the required software before attempting to run the server.
  2. Download the game server runtime from this url and extract it.
  3. IMPORTANT: please ensure there are no space chars in the path to the extracted server location.
  4. The server executable is located in the subfolder: "Binaries/Server". Launch the command line (or PowerShell in Windows) and navigate to this folder (hint: in Windows you can simply SHIFT + Right-click on the "Server" folder in Explorer and select "Open PowerShell window here").
  5. Start the server executable first time with loadOrNew flag. The server will start and create the game world.
    dotnet CryoFall_Server.dll loadOrNew
  6. Stop the server. To do so enter command below and press Enter key.
    stop 0
  7. The server will save and quit. Now you have the "SettingsServer.xml" and "ModsConfig.xml" files.
  8. Now you need to navigate to the game subfolder "Data" (which is in the root of the game folder, not in the "Binaries/Server") and modify "SettingsServer.xml" to set the unique server name, description, welcome_message, make it public if needed, set other settings, etc (there are XML comments explaining every setting so it should be straightforward).

In SettingsServer.xml, do not modify misc and network parts! It may cause malfunction if something is set in a way it is not intended to be.

You may, however, modify <server> part at your own risk. There you can set up some server configurations that would affect gameplay.

Note: if you are interested in hosting public server make sure to edit <is_public_server> and set the value from 0 to 1. This will make your server accessible publicly. Also make sure your router is configured correctly (port forwarding) to enable other people to connect to your machine from outside. But ideally you should use dedicated server hardware to host public servers.

Important (for Windows): you need to allow the dotnet process in the Windows Firewall settings - if the Firewall access request was not shown automatically by Windows you can add the C:\Program Files\dotnet\dotnet.exe file into Firewall whitelist. To to this, open Windows Start menu and search for "Allow an app through Windows Firewall" -> button "Allow another app".

Starting the server:

  1. Launch the command line (we recommending PowerShell in Windows) and navigate to this folder (hint: in Windows you can simply SHIFT + Right-click on the "Server" folder in Explorer and select "Open PowerShell window here").
  2. Start the server executable with load flag.
    dotnet CryoFall_Server.dll load
  3. Stop your server by typing command below and pressing Enter key (it will save the world before stopping).
    stop 60 The shutdown message text goes here

(Where 60 is the shutdown delay (in seconds) so the connected players will have some time to find a safe location)

Please note that typing this message is really hard as the console is updating regularly! The best way is to simply copy-paste from the text editor the whole command text into the game console window (hint: you can paste in PowerShell by simply pressing the right mouse button) and pressing Enter key.

You can always wipe the world by launching the game with new flag:

dotnet CryoFall_Server.dll new

Currently, we don't support the savegame migration between the major game versions (if there are changes to the game data serialization scheme). We plan to implement the proper data migration feature ASAP.

Connecting to the server:

If you want to connect to your local game server, simply add SERVERS->Custom list as localhost

To connect to the public server you need to navigate to SERVERS->Community servers list (please note that this might not work if you host this server on the same PC as the client, read below).

If you're attempting to host your server on a home computer and other players cannot connect to it, you need to manually forward the port UDP 6000 on your home router to your local IP address (the game has the auto port forwarding feature but it often fails due to the difference in UPnP implementation on many routers).

Please note that if you're running a game server on the same PC as the game client, you might be unable to connect to the game server from the Community servers list on that PC due to NAT routing even with the proper port forwarding. In that case, simply add a Custom game server as localhost:6000 and connect to it directly.

Connecting to the private servers requires adding it via the Custom servers menu.

6000 is the default port but you can change it in the Data/SettingsServer.xml file.

Server commands

The server commands list coming soon. Most of them require the server operator access.

To give yourself a server operator access (OP), please copy-paste this command right in the running server console: opadd yourUsername Don't forget to replace yourUsername with your actual username which you're using on AtomicTorch.com (not an e-mail). In Windows, you can simply press the right mouse button to paste the text from clipboard into the command line window.

For the time being you can use /help in the game console to get a full list of console commands available in the game. To enable the console, you need to enable the Developer Mode first in the General Options. The game console can be toggled by pressing ~ like in old-school games.

Moderation (whitelist, blacklist, kicking, muting)

Server operator can access special moderation commands. To invoke these commands, please enable Developer mode, connect to your game server, open the console (~ key) and then you can use these commands: (replace username with the actual player nickname)

Whitelist management:

/mod.whiteList.add username

/mod.whiteList.remove username

/mod.whiteList.print

To enable whitelist:

/mod.whiteList.enabled 1

Blacklist management:

/mod.blackList.add username

/mod.blackList.remove username

/mod.blackList.print

Kicking players (temporary removing from server and blocking from connecting):

/mod.kickList.add username durationInMinutes

/mod.kickList.remove username

/mod.kickList.print

Muting players (temporary removing their ability to send messages to chat):

/mod.muteList.add username durationInMinutes

/mod.muteList.remove username

/mod.muteList.print

Server rates adjusting and modding

Server rates have now exposed in a separate config file with 16 rates available for customization. You can quickly change things like LP gain rate, increase item drops, reduce player to player damage to zero or even increase the damage from creatures and make it really tough for the players!

To adjust the server rates, stop the server and check the file <game server>/Data/ServerRates.config

For modding please read modding prerequisites.