-
Notifications
You must be signed in to change notification settings - Fork 0
/
stationeersconfig.json
184 lines (184 loc) · 6.11 KB
/
stationeersconfig.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
173
174
175
176
177
178
179
180
181
182
183
184
[
{
"DisplayName": "Server Name",
"Category": "Server Settings",
"Description": "Display name of the server.",
"Keywords": "server,name",
"FieldName": "SERVERNAME",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "SERVER.SERVERNAME",
"IncludeInCommandLine": false,
"DefaultValue": "AMP Powered Stationeers Server",
"EnumValues": {}
},
{
"DisplayName": "Server Password",
"Category": "Server Settings",
"Description": "Password that clients must supply to join.",
"Keywords": "password",
"FieldName": "PASSWORD",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "SERVER.PASSWORD",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "RCON Password",
"Category": "Server Settings",
"Description": "Password to access RCON using http://YOURIP:GAMEPORT. You should change after install.",
"Keywords": "RCON,password",
"FieldName": "RCONPASSWORD",
"InputType": "RandomPassword",
"IsFlagArgument": false,
"ParamFieldName": "RCON.RCONPASSWORD",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Admin Password",
"Category": "Server Settings",
"Description": "Password to become the in-game admin. You should change after install.",
"Keywords": "admin,password",
"FieldName": "ADMINPASSWORD",
"InputType": "RandomPassword",
"IsFlagArgument": false,
"ParamFieldName": "SERVER.ADMINPASSWORD",
"IncludeInCommandLine": false,
"DefaultValue": "Password123",
"EnumValues": {}
},
{
"DisplayName": "Max Players",
"Category": "Server Settings",
"Description": "The maximum number of players allowed on the server.",
"Keywords": "max,players",
"FieldName": "$MaxUsers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "SERVER.MAXPLAYER",
"IncludeInCommandLine": false,
"DefaultValue": "20",
"EnumValues": {}
},
{
"DisplayName": "Creator",
"Category": "Server Settings",
"Description": "Set creator's [Steam64 ID](https://steamidfinder.com/) as gamedata and key-value. This is for future integration of server instancing.",
"Keywords": "creator",
"FieldName": "creator",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "creator",
"IncludeInCommandLine": true,
"DefaultValue": "",
"SkipIfEmpty": true,
"EnumValues": {}
},
{
"DisplayName": "World Name",
"Category": "Server Settings",
"Description": "Name of the world directory to load.",
"Keywords": "world,name",
"FieldName": "worldname",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "worldname",
"IncludeInCommandLine": true,
"DefaultValue": "world",
"EnumValues": {}
},
{
"DisplayName": "Map",
"Category": "Server Settings",
"Description": "Default Moon. Will create a world of this type or display this world type in the server browser if loading a save.",
"Keywords": "world,type",
"FieldName": "worldtype",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "worldtype",
"IncludeInCommandLine": true,
"DefaultValue": "",
"SkipIfEmpty": true,
"EnumValues": {
"": "Default",
"Europa2": "Europa2",
"Loulan": "Loulan",
"Mars": "Mars",
"Mimas": "Mimas",
"Moon": "Moon",
"Space": "Space",
"Vulcan2": "Vulcan2"
}
},
{
"DisplayName": "Auto Save Interval",
"Category": "Server Settings",
"Description": "How frequently the server will save the world.",
"Keywords": "",
"FieldName": "autosaveinterval",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "autosaveinterval",
"IncludeInCommandLine": true,
"DefaultValue": "60",
"EnumValues": {},
"Suffix": "sec"
},
{
"DisplayName": "Clear All Interval",
"Category": "Server Settings",
"Description": "The interval to run \"clearall\" command. Minimum is 60 seconds. clearall will delete all disconnected characters. Set to a very high number. 0 to disable. ",
"Keywords": "clear,all,interval",
"FieldName": "clearallinterval",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "clearallinterval",
"IncludeInCommandLine": true,
"DefaultValue": "60",
"EnumValues": {},
"Suffix": "sec"
},
{
"DisplayName": "Mod Path",
"Category": "Server Settings",
"Description": "Where mods are located inside the datastore.",
"Keywords": "mod,path",
"FieldName": "modpath",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "modpath",
"IncludeInCommandLine": false,
"DefaultValue": "Mods",
"EnumValues": {}
},
{
"DisplayName": "GAMEPORT",
"Category": "Server Settings",
"Description": "",
"Keywords": "",
"FieldName": "$ApplicationPort1",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "SERVER.GAMEPORT",
"IncludeInCommandLine": false,
"DefaultValue": "27500",
"Hidden": true
},
{
"DisplayName": "UPDATERPORT",
"Category": "Server Settings",
"Description": "",
"Keywords": "",
"FieldName": "$ApplicationPort2",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "SERVER.UPDATERPORT",
"IncludeInCommandLine": false,
"DefaultValue": "27015",
"Hidden": true
}
]