forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
craftopiaconfig.json
392 lines (392 loc) · 12.4 KB
/
craftopiaconfig.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
[
{
"DisplayName": "World Name",
"Description": "World name",
"Category": "Server Settings",
"Keywords": "world name",
"FieldName": "name",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "GameWorld.name",
"IncludeInCommandLine": false,
"DefaultValue": "AMP World",
"EnumValues": {}
},
{
"DisplayName": "Difficulty",
"Category": "Server Settings",
"Description": "Difficulty",
"Keywords": "Difficulty",
"FieldName": "difficulty",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "GameWorld.difficulty",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"0": "Easy",
"1": "Normal",
"2": "Hard",
"3": "Very Hard"
}
},
{
"DisplayName": "Game Mode",
"Category": "Server Settings",
"Description": "Game mode",
"Keywords": "gameMode",
"FieldName": "gameMode",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "GameWorld.gameMode",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"1": "Normal World",
"2": "Creative World - Build",
"3": "Creative World - Play"
}
},
{
"DisplayName": "Port",
"Description": "This setting is managed under the Edit Ports button in ADS.",
"Category": "Server Settings",
"Keywords": "port",
"FieldName": "$ApplicationPort1",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "Host.port",
"IncludeInCommandLine": true,
"DefaultValue": "6587",
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "Max Players",
"Description": "Maximum number of player can join into the server.",
"Category": "Server Settings",
"Keywords": "max players",
"FieldName": "$MaxUsers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "Host.maxPlayerNumber",
"IncludeInCommandLine": true,
"DefaultValue": "7",
"EnumValues": {},
"suffix": "1-127"
},
{
"DisplayName": "Enable Password",
"Description": "Enable the server password.",
"Category": "Server Settings",
"Keywords": "enable password",
"FieldName": "usePassword",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "Host.usePassword",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "Server Password",
"Category": "Server Settings",
"Description": "Set the server password, up to 8 digit number pin.",
"Keywords": "server password",
"FieldName": "serverPassword",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "Host.serverPassword",
"IncludeInCommandLine": false,
"DefaultValue": "00000000",
"EnumValues": {}
},
{
"DisplayName": "Auto Save Interval",
"Description": "Seconds between each save. Set to -1 to disable.",
"Category": "Server Settings",
"Keywords": "auto save interval",
"FieldName": "autoSaveSec",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "Save.autoSaveSec",
"IncludeInCommandLine": false,
"DefaultValue": "300",
"EnumValues": {},
"suffix": "sec"
},
{
"DisplayName": "Auto Save Per Hour",
"Description": "Auto save every hour.",
"Category": "Server Settings",
"Keywords": "auto save per hour",
"FieldName": "autoSavePerHour",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "Save.autoSavePerHour",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "Save Path",
"Description": "Path to save the server in.",
"Category": "Server Settings",
"Keywords": "save Path",
"FieldName": "savePath",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "Save.savePath",
"IncludeInCommandLine": false,
"DefaultValue": "DedicatedServerSave/",
"EnumValues": {}
},
{
"DisplayName": "Quick Craft",
"Description": "Crafting without checking item cost.",
"Category": "Server Settings",
"Keywords": "quick craft",
"FieldName": "quickCraft",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "quickCraft",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "Age Level",
"Description": "Age Level of the game world, effects crafting recipes.",
"Category": "Server Settings",
"Keywords": "age level",
"FieldName": "ageLevel",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModeSetting.ageLevel",
"IncludeInCommandLine": false,
"DefaultValue": "7",
"EnumValues": {}
},
{
"DisplayName": "Island Level",
"Description": "Island level override, effects monster and dungeon levels. Set to -1 to disable override.",
"Category": "Server Settings",
"Keywords": "island level",
"FieldName": "islandLevel",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModeSetting.islandLevel",
"IncludeInCommandLine": false,
"DefaultValue": "-1",
"EnumValues": {}
},
{
"DisplayName": "No Death",
"Description": "Player character would not die.",
"Category": "Server Settings",
"Keywords": "no death",
"FieldName": "noDeath",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModeSetting.noDeath",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "No Damage",
"Description": "Player character would not take damage.",
"Category": "Server Settings",
"Keywords": "no Damage",
"FieldName": "noDamage",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModeSetting.noDamage",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "No Hunger",
"Description": "Player character would not be hungry.",
"Category": "Server Settings",
"Keywords": "no Hunger",
"FieldName": "noHunger",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModeSetting.noHunger",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "Infinite Stamina",
"Description": "Player character has infinite stamina.",
"Category": "Server Settings",
"Keywords": "infinite stamina",
"FieldName": "infinitStamina",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModeSetting.infinitStamina",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "Force Day Time",
"Description": "Game world day time override, 0 to 24, set to -1 to disable.",
"Category": "Server Settings",
"Keywords": "force Day Time",
"FieldName": "forceDayTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModeSetting.forceDayTime",
"IncludeInCommandLine": false,
"DefaultValue": "-1",
"EnumValues": {}
},
{
"DisplayName": "Building Ignore Damage",
"Description": "Building would not take damage.",
"Category": "Server Settings",
"Keywords": "building Ignore Damage",
"FieldName": "buildingIgnoreDamage",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModeSetting.buildingIgnoreDamage",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "No Build",
"Description": "Player can not place new building.",
"Category": "Server Settings",
"Keywords": "no Build",
"FieldName": "noBuild",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModeSetting.noBuild",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {
"True": "1",
"False": "0"
}
},
{
"DisplayName": "Level",
"Description": "Override character level, set to 0 to disable.",
"Category": "Server Settings",
"Keywords": "Level",
"FieldName": "Level",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModePlStatus.Level",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {}
},
{
"DisplayName": "Health",
"Description": "Override character health, set to 0 to disable.",
"Category": "Server Settings",
"Keywords": "Health",
"FieldName": "Health",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModePlStatus.Health",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {}
},
{
"DisplayName": "Mana",
"Description": "Override character mana, set to 0 to disable.",
"Category": "Server Settings",
"Keywords": "Mana",
"FieldName": "Mana",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModePlStatus.Mana",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {}
},
{
"DisplayName": "Stamina",
"Description": "Override character stamia, set to 0 to disable.",
"Category": "Server Settings",
"Keywords": "Stamina",
"FieldName": "Stamina",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModePlStatus.Stamina",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {}
},
{
"DisplayName": "Money",
"Description": "Override character money.",
"Category": "Server Settings",
"Keywords": "Money",
"FieldName": "Money",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModePlStatus.Money",
"IncludeInCommandLine": false,
"DefaultValue": "1000",
"EnumValues": {}
},
{
"DisplayName": "Skill Point",
"Description": "Override character skill point.",
"Category": "Server Settings",
"Keywords": "SkillPoint",
"FieldName": "SkillPoint",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModePlStatus.SkillPoint",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {}
},
{
"DisplayName": "Enchant Point",
"Description": "Override character enchant point.",
"Category": "Server Settings",
"Keywords": "EnchantPoint",
"FieldName": "EnchantPoint",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "CreativeModePlStatus.EnchantPoint",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {}
}
]