forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro-colonyconfig.json
172 lines (172 loc) · 5.96 KB
/
astro-colonyconfig.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
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
167
168
169
170
171
172
[
{
"DisplayName":"Server Name",
"Category":"Server Settings",
"Description":"Sets the name of the server to be displayed in the server list. Maximum 45 characters, no more than 30 recommended. If the maximum is exceeded, the server password will be disabled",
"Keywords":"server,name,ServerName",
"FieldName":"ServerName",
"InputType":"text",
"ParamFieldName":"ServerName",
"DefaultValue":"AMP Powered Astro Colony Server",
"Placeholder":"AMP Powered Astro Colony Server",
"EnumValues":{}
},
{
"DisplayName":"Server Name",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"ServerName",
"InputType":"text",
"Hidden":true,
"ParamFieldName":"SteamServerName",
"IncludeInCommandLine":true,
"EnumValues":{}
},
{
"DisplayName":"Server Password",
"Category":"Server Settings",
"Description":"Sets the password required to connect to the server. Default is no password",
"Keywords":"server,password,ServerPassword",
"FieldName":"ServerPassword",
"InputType":"password",
"ParamFieldName":"ServerPassword",
"SkipIfEmpty":true,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Map Name",
"Category":"Server Settings",
"Description":"Sets the map name to be displayed in the server list",
"Keywords":"map,name,MapName",
"FieldName":"MapName",
"InputType":"text",
"ParamFieldName":"MapName",
"DefaultValue":"MyAstroColony",
"Placeholder":"MyAstroColony",
"EnumValues":{}
},
{
"DisplayName":"Player Limit",
"Category":"Server Settings",
"Description":"Sets the maximum number of players that may connect to the server at one time",
"Keywords":"maximum,players,clients,limit,MaxPlayers",
"FieldName":"$MaxUsers",
"InputType":"number",
"MinValue":"1",
"ParamFieldName":"MaxPlayers",
"DefaultValue":"5",
"Placeholder":"5",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Server Admins",
"Category":"Server Settings",
"Description":"Comma separated list of [Steam64 IDs](https://www.steamidfinder.com/) of server admins",
"Keywords":"server,admins,ServerAdminAccounts",
"FieldName":"AdminList",
"InputType":"text",
"ParamFieldName":"AdminList",
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Seed",
"Category":"Server Settings",
"Description":"Sets a seed to create a new savegame with. Default is a random seed",
"Keywords":"seed",
"FieldName":"Seed",
"InputType":"number",
"MinValue":"1",
"MaxValue":"2147483647",
"ParamFieldName":"Seed",
"DefaultValue":"{{randomdigits(8)}}",
"EnumValues":{}
},
{
"DisplayName":"Load Latest Savegame",
"Category":"Server Settings",
"Description":"If enabled, the latest savegame will be loaded on server start",
"Keywords":"load,latest,savegame,ShouldLoadLatestSavegame",
"FieldName":"ShouldLoadLatestSavegame",
"InputType":"checkbox",
"ParamFieldName":"ShouldLoadLatestSavegame",
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Enable Shared Technologies",
"Category":"Server Settings",
"Description":"If enabled, technologies will be shared between players, so that research is not duplicated",
"Keywords":"shared,technologies,research,SharedTechnologies",
"FieldName":"SharedTechnologies",
"InputType":"checkbox",
"ParamFieldName":"SharedTechnologies",
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Enable Oxygen Consumption",
"Category":"Server Settings",
"Description":"If enabled, players will consume oxygen. If disabled, oxygen will not be required by players",
"Keywords":"oxygen,consumption,OxygenConsumption",
"FieldName":"OxygenConsumption",
"InputType":"checkbox",
"ParamFieldName":"OxygenConsumption",
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Enable Free Construction",
"Category":"Server Settings",
"Description":"If enabled, construction will be allowed without cost or spending of resources",
"Keywords":"free,construction,cost,resources,FreeConstruction",
"FieldName":"FreeConstruction",
"InputType":"checkbox",
"ParamFieldName":"FreeConstruction",
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Autosave Interval",
"Category":"Server Settings",
"Description":"Sets the server autosave interval. 0 = disabled",
"Keywords":"server,autosave,interval,AutosaveInterval",
"FieldName":"AutosaveInterval",
"InputType":"number",
"MinValue":"0",
"ParamFieldName":"AutosaveInterval",
"DefaultValue":"5.0",
"Placeholder":"5.0",
"Suffix":"minutes",
"EnumValues":{}
},
{
"DisplayName":"Autosave Count",
"Category":"Server Settings",
"Description":"Sets the limit on the number of autosaves that are retained",
"Keywords":"server,save,autosave,limit,count,AutosavesCount",
"FieldName":"AutosavesCount",
"InputType":"number",
"MinValue":"0",
"ParamFieldName":"AutosavesCount",
"DefaultValue":"10",
"Placeholder":"10",
"Suffix":"autosaves",
"EnumValues":{}
}
]