-
Notifications
You must be signed in to change notification settings - Fork 551
Expand file tree
/
Copy patharcheanconfig.json
More file actions
166 lines (165 loc) · 5.11 KB
/
archeanconfig.json
File metadata and controls
166 lines (165 loc) · 5.11 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
[
{
"DisplayName": "Server Name",
"Description": "The public name of the server shown in the server list.",
"Category": "Archean:rocket_launch",
"FieldName": "ServerName",
"InputType": "text",
"ParamFieldName": "server.server_public_name",
"DefaultValue": "My Archean Server"
},
{
"DisplayName": "Game Mode",
"Description": "The game mode for the server.",
"Category": "Archean:rocket_launch",
"FieldName": "GameMode",
"InputType": "enum",
"ParamFieldName": "server.game_mode",
"DefaultValue": "0",
"EnumValues": {
"0": "Creative",
"1": "Adventure"
}
},
{
"DisplayName": "Max Players",
"Description": "Maximum number of players that can be connected at the same time.",
"Category": "Archean:rocket_launch",
"FieldName": "$MaxUsers",
"InputType": "number",
"ParamFieldName": "server.max_simultaneous_players",
"DefaultValue": "16",
"minValue": "1",
"maxValue": "64"
},
{
"DisplayName": "Password",
"Description": "Leave empty for no password protection.",
"Category": "Archean:rocket_launch",
"FieldName": "ServerPassword",
"InputType": "password",
"ParamFieldName": "server.password",
"DefaultValue": ""
},
{
"DisplayName": "Server Online",
"Description": "Whether the server should appear in the public server list.",
"Category": "Archean:rocket_launch",
"FieldName": "ServerOnline",
"InputType": "checkbox",
"ParamFieldName": "server.server_online",
"EnumValues": { "False": "no", "True": "yes" },
"DefaultValue": "True"
},
{
"DisplayName": "Accept Remote Connections",
"Description": "Allow external players to connect to the server.",
"Category": "Archean:rocket_launch",
"FieldName": "AcceptRemoteConnections",
"InputType": "checkbox",
"ParamFieldName": "server.accept_remote_connections",
"EnumValues": { "False": "no", "True": "yes" },
"DefaultValue": "True"
},
{
"DisplayName": "External Mods Dir",
"Description": "Optional path to an external mods directory.",
"Category": "Archean:rocket_launch",
"FieldName": "ExternalModsDir",
"InputType": "text",
"ParamFieldName": "server.external_mods_dir",
"DefaultValue": ""
},
{
"DisplayName": "Spawn Megalodon",
"Description": "Allow the April Fool's Megalodon spawn at all time ",
"Category": "Archean:rocket_launch",
"FieldName": "SpawnMegalodon",
"InputType": "checkbox",
"ParamFieldName": "game.megalodon",
"EnumValues": { "false": "no", "true": "yes" },
"DefaultValue": "false"
},
{
"DisplayName": "Listen Port",
"Description": "The UDP/TCP port the server listens on.",
"Category": "Networking",
"FieldName": "$MainGamePort",
"InputType": "number",
"Hidden": true,
"ParamFieldName": "networking.listen_port"
},
{
"DisplayName": "Automatic Blacklist",
"Description": "Automatically blacklist players with bad behavior.",
"Category": "Archean:rocket_launch",
"FieldName": "AutoBlacklist",
"InputType": "checkbox",
"ParamFieldName": "networking.automatic_blacklist",
"EnumValues": { "False": "no", "True": "yes" },
"DefaultValue": "False"
},
{
"DisplayName": "Spawn",
"Description": "Spawn location for new players (e.g. 'earth').",
"Category": "Archean:rocket_launch",
"FieldName": "Spawn",
"InputType": "text",
"ParamFieldName": "game.spawn",
"DefaultValue": "earth"
},
{
"DisplayName": "World",
"Description": "Name of the world to load. Optional, leave empty for default.",
"Category": "Archean:rocket_launch",
"FieldName": "World",
"InputType": "text",
"ParamFieldName": "game.world",
"DefaultValue": ""
},
{
"DisplayName": "Auto Save Interval",
"Description": "How often the world is automatically saved.",
"Category": "Archean:rocket_launch",
"FieldName": "AutoSaveInterval",
"InputType": "number",
"ParamFieldName": "performance.auto_save_interval_seconds",
"DefaultValue": "30",
"minValue": "10",
"maxValue": "3600",
"Suffix": "s"
},
{
"DisplayName": "Updates Per Second",
"Description": "Number of server ticks per second.",
"Category": "Archean:rocket_launch",
"FieldName": "UpdatesPerSecond",
"InputType": "number",
"ParamFieldName": "performance.updates_per_second",
"DefaultValue": "25",
"minValue": "1",
"maxValue": "64"
},
{
"DisplayName": "Physics Steps Per Update",
"Description": "Number of physics simulation steps per server tick.",
"Category": "Archean:rocket_launch",
"FieldName": "PhysicsSteps",
"InputType": "number",
"ParamFieldName": "performance.physics_steps_per_update",
"DefaultValue": "8",
"minValue": "1",
"maxValue": "32"
},
{
"DisplayName": "Screens Compression Level",
"Description": "Compression level for screen streaming (0 = off).",
"Category": "Archean:rocket_launch",
"FieldName": "ScreensCompression",
"InputType": "number",
"ParamFieldName": "performance.screens_compression_level",
"DefaultValue": "2",
"minValue": "0",
"maxValue": "9"
}
]