Add Risk of Rain 2

This commit enables the use of Risk of Rain 2 servers on Windows only. There is no officially supported way to run on Linux. I'm attempting to solve this through Proton eventually, but it isn't currently an option.
This commit is contained in:
IceOfWraith
2021-12-22 18:09:48 -06:00
parent 948b1b7b3e
commit 13a1dcd0fa
3 changed files with 119 additions and 0 deletions

57
risk-of-rain-2config.json Normal file
View File

@@ -0,0 +1,57 @@
[
{
"DisplayName": "Host name",
"Category": "Server Settings",
"Description": "Display name of the host",
"Keywords": "host name server",
"FieldName": "sv_hostname",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "sv_hostname",
"IncludeInCommandLine": false,
"DefaultValue": "Powered by AMP",
"EnumValues": {}
},
{
"DisplayName": "Password",
"Category": "Server Settings",
"Description": "Server password for users to join",
"Keywords": "server password users",
"FieldName": "sv_password",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "sv_password",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Max Players",
"Category": "Server Settings",
"Description": "The maximum number of players",
"Keywords": "max players",
"FieldName": "sv_maxplayers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "sv_maxplayers",
"IncludeInCommandLine": false,
"DefaultValue": "4",
"EnumValues": {}
},
{
"DisplayName": "Steam Heartbeat",
"Category": "Server Settings",
"Description": "Advertise on the server list",
"Keywords": "advertise server list steam heartbeat",
"FieldName": "steam_server_heartbeat_enabled",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "steam_server_heartbeat_enabled",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"0": "False",
"1": "True"
}
}
]