-
Notifications
You must be signed in to change notification settings - Fork 343
/
Copy pathsunkenlandconfig.json
112 lines (112 loc) · 4.27 KB
/
sunkenlandconfig.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[
{
"DisplayName": "World GUID",
"Category": "Sunkenland:stadia_controller",
"Subcategory": "Server:dns:1",
"Description": "Sets the GUID of the world save to load (the part of the world save name after the ~ symbol). The save must be in the Worlds directory. Default = world supplied by AMP",
"Keywords": "world,save,guid,worldGuid",
"FieldName": "worldGuid",
"InputType": "text",
"ParamFieldName": "worldGuid",
"IncludeInCommandLine": true,
"DefaultValue": "9280d1af-d354-4b43-adae-901a15bd5ec7",
"Placeholder": "9280d1af-d354-4b43-adae-901a15bd5ec7",
"Required": true,
"EnumValues": {}
},
{
"DisplayName": "Server Password",
"Category": "Sunkenland:stadia_controller",
"Subcategory": "Server:dns:1",
"Description": "Sets the password required for players to join the server. Default is no password. Maximum 8 characters",
"Keywords": "password,server",
"FieldName": "password",
"InputType": "password",
"ParamFieldName": "password",
"IncludeInCommandLine": true,
"SkipIfEmpty": true,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Server Region",
"Category": "Sunkenland:stadia_controller",
"Subcategory": "Server:dns:1",
"Description": "Sets the region for the server. The game client must have the same region selected to join correctly",
"Keywords": "server,region",
"FieldName": "region",
"InputType": "enum",
"ParamFieldName": "region",
"IncludeInCommandLine": true,
"DefaultValue": "asia",
"EnumValues": {
"asia": "Asia",
"cn": "Chinese Mainland",
"jp": "Japan",
"eu": "Europe",
"sa": "South America",
"kr": "South Korea",
"us": "USA, East",
"usw": "USA, West"
}
},
{
"DisplayName": "Make Server Invisible",
"Category": "Sunkenland:stadia_controller",
"Subcategory": "Server:dns:1",
"Description": "If enabled, the server will not appear in other players' session list and can only be joined by manually entering the Server ID or via Steam Friend Invite",
"Keywords": "hide,session,list,invisible,makeSessionInvisible",
"FieldName": "makeSessionInvisible",
"InputType": "checkbox",
"ParamFieldName": "makeSessionInvisible",
"DefaultValue": "",
"EnumValues": {
"False": "",
"True": "-makeSessionInvisible "
}
},
{
"DisplayName": "Player Limit",
"Category": "Sunkenland:stadia_controller",
"Subcategory": "Server:dns:1",
"Description": "Sets the maximum number of players allowed on the server at one time",
"Keywords": "max,players,slots,limit,maxPlayerCapacity",
"FieldName": "$MaxUsers",
"InputType": "number",
"MinValue": "3",
"MaxValue": "15",
"ParamFieldName": "maxPlayerCapacity",
"IncludeInCommandLine": true,
"DefaultValue": "3",
"Placeholder": "3",
"Suffix": "players",
"EnumValues": {}
},
{
"DisplayName": "Custom Command Line Arguments",
"Category": "Sunkenland:stadia_controller",
"Subcategory": "Server:dns:1",
"Description": "Sets custom command line arguments to start the server with. Format: -<key> \"<value>\". Don't use options already in AMP's settings!",
"Keywords": "custom,command,line,arguments",
"FieldName": "CustomArgs",
"InputType": "text",
"ParamFieldName": "CustomArgs",
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Server Branch",
"Category": "Updates",
"Subcategory": "Steam Download:download",
"Description": "Sets the server branch to install. Update the server after switching branches",
"Keywords": "server,branch,depot,public,public-test",
"FieldName": "ServerBranch",
"InputType": "enum",
"ParamFieldName": "ServerBranch",
"DefaultValue": "public",
"EnumValues": {
"public": "Public (default)",
"public-test": "Public test build"
}
}
]