server config: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
Line 6: | Line 6: | ||
|- | |- | ||
|servername | |servername | ||
|The hostname of your server. Markup for colors and UTF8 icons require a subscription. | |The hostname of your server (220 max. chars including markup). Markup for colors and UTF8 icons require a subscription. | ||
|- | |||
|servername_short | |||
|The short version of the hostname (128 max. chars). Used for Discord/Steam Rich Presence. (Should not contain markup but can contain UTF8 icons) | |||
|- | |- | ||
|gamemode | |gamemode |
Revision as of 18:56, 9 November 2019
server_config.json | |||||
---|---|---|---|---|---|
Config | Description | ||||
servername | The hostname of your server (220 max. chars including markup). Markup for colors and UTF8 icons require a subscription. | ||||
servername_short | The short version of the hostname (128 max. chars). Used for Discord/Steam Rich Presence. (Should not contain markup but can contain UTF8 icons) | ||||
gamemode | A description what you can do on your server. | ||||
website_url | A link to your servers homepage. | ||||
ipaddress | Address to bind your server on. Use "localhost" to make it accessible from your computer only. Use "0.0.0.0" to bind on any address. | ||||
port | Main network port to connect to your server (UDP). Query port (UDP) is this port - 1. File port (TCP) is this port - 2. | ||||
password | Leave empty to disable. | ||||
timeout | Time in milliseconds after which an unresponsive player will be dropped. This should be between 10000 and 20000 milliseconds. | ||||
iplimit | Limit the amount of connections per IP. New connections exceeding that number are being dropped immediately. | ||||
masterlist | true to have your server made public in the server list. false otherwise. This only works if your server is reachable on the internet. | ||||
plugins | Array of plugins you want to load. These must be in the plugins folder. | ||||
packages | Array of packages you want to load. | ||||
voice | Enable VoIP system. | ||||
voice_sample_rate | VoIP sample rate, higher rates have better quality but also require more bandwidth. Valid rates are: 8000, 12000, 16000, 24000 and 48000. | ||||
voice_distance | Distance where you can hear other players talking. | ||||
voice_spatialization | Makes the VoIP sound 3D including spatialization and falloff. |
Example server_config.json
{
"servername": "[g]🌴 [c=#00ff00]Horizon[/c] [c=red]Prototype[/c] [c=yellow]Labs[/c] 🗽 [b]LIT AF[/b] 🚬🔥 [i]блять[/i] 🔫 + 💊 = 🚨 [u][b]NOICE[/b][/u] OK come on in 👀[/g]",
"gamemode": "GET THE EXPERIENCE ⛺ 💊",
"website_url": "https://playonset.com",
"ipaddress": "0.0.0.0",
"port": 7777,
"maxplayers": 25,
"password": "",
"timeout": 15000,
"iplimit": 5,
"masterserver": true,
"plugins": [
"mariadb"
],
"packages": [
"horizon"
],
"stream_distance": 12000.0,
"stream_update_rate": 0.05,
"voice": true,
"voice_sample_rate": 24000,
"voice_distance": 4000.0,
"voice_spatialization": true
}