-
Notifications
You must be signed in to change notification settings - Fork 343
/
Copy pathpuckconfig.json
77 lines (77 loc) · 2.57 KB
/
puckconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[
{
"DisplayName": "Server Name",
"Category": "Puck:stadia_controller",
"Subcategory": "Server:dns:1",
"Description": "Sets the server name shown in the server browser",
"Keywords": "display,server,name",
"FieldName": "name",
"InputType": "text",
"ParamFieldName": "name",
"IncludeInCommandLine": true,
"DefaultValue": "AMP Powered Puck Server",
"Required": true,
"EnumValues": {}
},
{
"DisplayName": "Server Password",
"Category": "Puck:stadia_controller",
"Subcategory": "Server:dns:1",
"Description": "Sets the password required to connect to the server. Default is no password",
"Keywords": "server,password",
"FieldName": "password",
"InputType": "password",
"ParamFieldName": "password",
"IncludeInCommandLine": true,
"SkipIfEmpty": true,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Player Limit",
"Category": "Puck:stadia_controller",
"Subcategory": "Server:dns:1",
"Description": "Sets the maximum number of players allowed on the server at one time",
"Keywords": "maximum,players,clients,limit,max_players",
"FieldName": "$MaxUsers",
"InputType": "number",
"MinValue": "1",
"ParamFieldName": "max_players",
"IncludeInCommandLine": true,
"DefaultValue": "12",
"Placeholder": "12",
"Suffix": "players",
"EnumValues": {}
},
{
"DisplayName": "Enable VOIP",
"Category": "Puck:stadia_controller",
"Subcategory": "Server:dns:1",
"Description": "If set, VOIP will be enabled on the server. Default bind is C",
"Keywords": "enable,voip",
"FieldName": "voip",
"InputType": "checkbox",
"ParamFieldName": "voip",
"IncludeInCommandLine": true,
"DefaultValue": "false",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Server Branch",
"Category": "Updates",
"Subcategory": "Steam Downloads:download",
"Description": "Sets the server branch to install. Update the server after switching branches",
"Keywords": "server,branch,depot",
"FieldName": "ServerBranch",
"InputType": "enum",
"ParamFieldName": "ServerBranch",
"DefaultValue": "public",
"EnumValues": {
"public": "Public (default)",
"pre-release": "Pre-release"
}
}
]