forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abiotic-factorconfig.json
516 lines (516 loc) · 21.8 KB
/
abiotic-factorconfig.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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
[
{
"DisplayName":"Server Name",
"Category":"AF Server Settings",
"Description":"Sets the name of the server as shown in the Steam server browser",
"Keywords":"name,ServerName",
"FieldName":"ServerName",
"InputType":"text",
"ParamFieldName":"ServerName",
"DefaultValue":"AMP Powered Abiotic Factor Server",
"EnumValues":{}
},
{
"DisplayName":"World Save Name",
"Category":"AF Server Settings",
"Description":"Sets the name of the world save folder to load, or to create if it does not exist",
"Keywords":"world,save,name,WorldSaveName",
"FieldName":"WorldSaveName",
"InputType":"text",
"ParamFieldName":"WorldSaveName",
"IncludeInCommandLine":true,
"SkipIfEmpty":true,
"DefaultValue":"Cascade",
"Placeholder":"Cascade",
"Required":true,
"EnumValues":{}
},
{
"DisplayName":"Server Password",
"Category":"AF Server Settings",
"Description":"Sets the password for players to join the server. Default is no password",
"Keywords":"server,password,ServerPassword",
"FieldName":"ServerPassword",
"InputType":"password",
"ParamFieldName":"ServerPassword",
"IncludeInCommandLine":true,
"SkipIfEmpty":true,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Player Limit",
"Category":"AF Server Settings",
"Description":"Sets the maximum number of players that may connect to the server at one time",
"Keywords":"maximum,players,limit,MaxServerPlayers",
"FieldName":"$MaxUsers",
"InputType":"number",
"MinValue":"1",
"MaxValue":"24",
"ParamFieldName":"MaxServerPlayers",
"IncludeInCommandLine":true,
"SkipIfEmpty":true,
"DefaultValue":"6",
"Placeholder":"6",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Use CPU Performance Threads",
"Category":"AF Server Settings",
"Description":"If set, the server will be forced to use performance threads on the CPU. Recommended",
"Keywords":"force,use,performance,threads,cpu,useperfthreads",
"FieldName":"useperfthreads",
"InputType":"checkbox",
"ParamFieldName":"useperfthreads",
"DefaultValue":"-useperfthreads ",
"EnumValues":{
"False":"",
"True":"-useperfthreads "
}
},
{
"DisplayName":"Pause To Load Assets",
"Category":"AF Server Settings",
"Description":"If set, the server will be forced to pause to load new assets/level sectors instead of slowly loading them. Recommended",
"Keywords":"force,pause,load,assets,sectors,NoAsyncLoadingThread",
"FieldName":"NoAsyncLoadingThread",
"InputType":"checkbox",
"ParamFieldName":"NoAsyncLoadingThread",
"DefaultValue":"-NoAsyncLoadingThread ",
"EnumValues":{
"False":"",
"True":"-NoAsyncLoadingThread "
}
},
{
"DisplayName":"Enable Loot Respawn",
"Category":"AF Sandbox Settings",
"Description":"If set, resources (other than furniture) will spontaneously respawn around the Facility. Good for public servers, but can cause objects to intersect or float, and will make some resource gathering very unbalanced",
"Keywords":"loot,respawn,resources,LootRespawnEnabled",
"FieldName":"LootRespawnEnabled",
"InputType":"checkbox",
"ParamFieldName":"SandboxSettings.LootRespawnEnabled",
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Shut Off Power Sockets At Night",
"Category":"AF Sandbox Settings",
"Description":"If set, power in the Facility will be shut off at night, including power sockets. Disabling this setting will make the game easier as things like Batteries will not be required. Disabling may also be required if the Day-Night Cycle State is set to 'Always night'",
"Keywords":"power,sockets,night,game,batteries,PowerSocketsOffAtNight",
"FieldName":"PowerSocketsOffAtNight",
"InputType":"checkbox",
"ParamFieldName":"SandboxSettings.PowerSocketsOffAtNight",
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Day-Night Cycle State",
"Category":"AF Sandbox Settings",
"Description":"Sets whether to disable the day-night cycle. If 'Always day' or 'Always night', time will pass as normal, but there will be no day-night transition. Change from 'Normal' at your own risk, as that may affect things that can only happen during day or night",
"Keywords":"day,night,cycle,transition,DayNightCycleState",
"FieldName":"DayNightCycleState",
"InputType":"enum",
"ParamFieldName":"SandboxSettings.DayNightCycleState",
"DefaultValue":"0",
"EnumValues":{
"0":"Normal",
"1":"Always day",
"2":"Always night"
}
},
{
"DisplayName":"Day-Night Cycle Speed Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets the speed multiplier for the day-night cycle. Higher will make clock time pass faster. This will NOT affect the speed of other cooldowns, respawn times, and so on",
"Keywords":"day,night,cycle,speed,multiplier,time,DayNightCycleSpeedMultiplier",
"FieldName":"DayNightCycleSpeedMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"3",
"ParamFieldName":"SandboxSettings.DayNightCycleSpeedMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Sink Refill Rate",
"Category":"AF Sandbox Settings",
"Description":"Sets how quickly sinks will passively refill over time. Higher will mean sinks refill more quickly, and a lower value will make them refill more slowly. 0 = disable sink refill, making the game much more challenging",
"Keywords":"sink,refill,rate,drinking,SinkRefillRate",
"FieldName":"SinkRefillRate",
"InputType":"number",
"MinValue":"0",
"MaxValue":"10",
"ParamFieldName":"SandboxSettings.SinkRefillRate",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Food Spoil Speed Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets how fast food spoils. By default, most food will eventually decay and turn into rotten food. Higher will mean faster decay, lower means slower. 0 = decay disabled",
"Keywords":"food,spoil,speed,multiplier,decay,FoodSpoilSpeedMultiplier",
"FieldName":"FoodSpoilSpeedMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"2",
"ParamFieldName":"SandboxSettings.FoodSpoilSpeedMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Refrigeration Effectiveness Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets how effective it is to refrigerate items. Also affects how effective hot items maintain their heat if they prefer staying warm and are kept in a warm location",
"Keywords":"refrigeration,effectiveness,multiplier,hot,items,RefrigerationEffectivenessMultiplier",
"FieldName":"RefrigerationEffectivenessMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"2",
"ParamFieldName":"SandboxSettings.RefrigerationEffectivenessMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Enemy Spawn Rate",
"Category":"AF Sandbox Settings",
"Description":"Sets how frequently enemies respawn. Lower will increase enemy respawn timers, higher will cause enemies to respawn more quickly than normal. Minimum 0.5",
"Keywords":"enemy,spawn rate,respawn,timers,EnemySpawnRate",
"FieldName":"EnemySpawnRate",
"InputType":"number",
"MinValue":"0",
"MaxValue":"3",
"ParamFieldName":"SandboxSettings.EnemySpawnRate",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Enemy Health Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets themu ltiplier for enemy health. Lower will make enemies easier to kill, higher will mean enemies will take more damage to kill. Minimum 0.75",
"Keywords":"enemy,health,multiplier,damage,EnemyHealthMultiplier",
"FieldName":"EnemyHealthMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"3",
"ParamFieldName":"SandboxSettings.EnemyHealthMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Enemy Player Damage Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets how damaging enemies are, as a multiplier of their damage. Default value is tuned for a fair and balanced experience. Lower will make survivability easier, higher will make combat more challenging and enemies more lethal. Minimum 0.25",
"Keywords":"enemy,player,damage,multiplier,survivability,combat,EnemyPlayerDamageMultiplier",
"FieldName":"EnemyPlayerDamageMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"3",
"ParamFieldName":"SandboxSettings.EnemyPlayerDamageMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Enemy Deployable Damage Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets how much damage enemies do to deployables, as a multiplier of their damage. Lower will make bases more impervious to enemy attacks. 0 = enemies may get stuck or be unable to threaten player bases properly. Minimum 0.1",
"Keywords":"enemy,deployable,damage,multiplier,bases,threaten,EnemyDeployableDamageMultiplier",
"FieldName":"EnemyDeployableDamageMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"5",
"ParamFieldName":"SandboxSettings.EnemyDeployableDamageMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Detection Speed Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets how fast enemies detect players. Above 1 will mean enemies will detect players faster than normal. Minimum 0.1",
"Keywords":"detection,speed,multiplier,enemies,players,DetectionSpeedMultiplier",
"FieldName":"DetectionSpeedMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"3",
"ParamFieldName":"SandboxSettings.DetectionSpeedMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Damage To Allies Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets how much damage players do to other players, as a proportion of normal damage. To allow players to engage in PvP combat, set to 1.0 (100%) or higher",
"Keywords":"damage,allies,multiplier,pvp,combat,DamageToAlliesMultiplier",
"FieldName":"DamageToAlliesMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"3",
"ParamFieldName":"SandboxSettings.DamageToAlliesMultiplier",
"DefaultValue":"0.5",
"Placeholder":"0.5",
"EnumValues":{}
},
{
"DisplayName":"Hunger Speed Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets the multiplier for how fast Hunger increases. Higher will mean players need to eat more often",
"Keywords":"hunger,speed,multiplier,food,HungerSpeedMultiplier",
"FieldName":"HungerSpeedMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"2",
"ParamFieldName":"SandboxSettings.HungerSpeedMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Thirst Speed Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets the multiplier for how fast Thirst increases. Higher will mean players need to drink more often",
"Keywords":"thirst,speed,multiplier,drink,ThirstSpeedMultiplier",
"FieldName":"ThirstSpeedMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"2",
"ParamFieldName":"SandboxSettings.ThirstSpeedMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Fatigue Speed Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets the multiplier for how fast Fatigue increases. Higher will mean players get sleepier more quickly",
"Keywords":"fatigue,speed,multiplier,sleep,FatigueSpeedMultiplier",
"FieldName":"FatigueSpeedMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"2",
"ParamFieldName":"SandboxSettings.FatigueSpeedMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Continence Speed Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets the multiplier for how fast Continence drains. Higher will mean players have to use the toilet more often",
"Keywords":"continence,speed,multiplier,toilet,ContinenceSpeedMultiplier",
"FieldName":"ContinenceSpeedMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"2",
"ParamFieldName":"SandboxSettings.ContinenceSpeedMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Player XP Gain Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets the multiplier for how fast XP is gained by players. Above 1 will mean XP is gained at a higher rate, below 1 will mean XP is gained slower. 0 = disable ability to level up skills",
"Keywords":"player,xp,gain,multiplier,level,skills,PlayerXPGainMultiplier",
"FieldName":"PlayerXPGainMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"3",
"ParamFieldName":"SandboxSettings.PlayerXPGainMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Item Stack Size Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets the multiplier for how many times items can be stacked in an inventory slot. For example, 2 = double stack height. Non-stackable items are excluded",
"Keywords":"item,stack,size,multiplier,inventory,slot,ItemStackSizeMultiplier",
"FieldName":"ItemStackSizeMultiplier",
"InputType":"number",
"MinValue":"1",
"MaxValue":"30",
"ParamFieldName":"SandboxSettings.ItemStackSizeMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Item Weight Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets the multiplier affecting how heavy items are in a player's inventory. For example, 2 = twice as heavy. For items to be lighter, set this value lower than 1",
"Keywords":"item,weight,multiplier,inventory,ItemWeightMultiplier",
"FieldName":"ItemWeightMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"5",
"ParamFieldName":"SandboxSettings.ItemWeightMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Item Durability Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets the multiplier for item durability. For example, 2 = double durability. To break items faster, set this value below 1",
"Keywords":"item,durability,multiplier,ItemDurabilityMultiplier",
"FieldName":"ItemDurabilityMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"10",
"ParamFieldName":"SandboxSettings.ItemDurabilityMultiplier",
"DefaultValue":"1.0",
"Placeholder":"1.0",
"EnumValues":{}
},
{
"DisplayName":"Durability Loss On Death Multiplier",
"Category":"AF Sandbox Settings",
"Description":"Sets how much durability is lost on weapons and items in a player's inventory when respawning",
"Keywords":"durability,loss,death,multiplier,inventory,DurabilityLossOnDeathMultiplier",
"FieldName":"DurabilityLossOnDeathMultiplier",
"InputType":"number",
"MinValue":"0",
"MaxValue":"1",
"ParamFieldName":"SandboxSettings.DurabilityLossOnDeathMultiplier",
"DefaultValue":"0.1",
"Placeholder":"0.1",
"EnumValues":{}
},
{
"DisplayName":"Show Death Messages",
"Category":"AF Sandbox Settings",
"Description":"If sets, players will be notified when someone is killed by something",
"Keywords":"show,death,messages,notifications,ShowDeathMessages",
"FieldName":"ShowDeathMessages",
"InputType":"checkbox",
"ParamFieldName":"SandboxSettings.ShowDeathMessages",
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Allow Recipe Sharing",
"Category":"AF Sandbox Settings",
"Description":"If set, players will be able to share item recipes with other players",
"Keywords":"recipe,sharing,AllowRecipeSharing",
"FieldName":"AllowRecipeSharing",
"InputType":"checkbox",
"ParamFieldName":"SandboxSettings.AllowRecipeSharing",
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Allow Pagers",
"Category":"AF Sandbox Settings",
"Description":"If set, Pagers will be usable in inventory and via the emote wheel. Disabling this setting will make it harder to find other players",
"Keywords":"pagers,inventory,emote,wheel,AllowPagers",
"FieldName":"AllowPagers",
"InputType":"checkbox",
"ParamFieldName":"SandboxSettings.AllowPagers",
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Allow Transmog",
"Category":"AF Sandbox Settings",
"Description":"If set, players can transmogrify their armour to look like other pieces of armour using a certain piece of base equipment",
"Keywords":"transmog,armor,armour,customization,disguise,equipment,AllowTransmog",
"FieldName":"AllowTransmog",
"InputType":"checkbox",
"ParamFieldName":"SandboxSettings.AllowTransmog",
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Disable Research Minigames",
"Category":"AF Sandbox Settings",
"Description":"If set, the Research Minigames will be removed when unlocking new recipes and simply unlock the recipe right away",
"Keywords":"research minigame,disable,unlocking,recipes,DisableResearchMinigame",
"FieldName":"DisableResearchMinigame",
"InputType":"checkbox",
"ParamFieldName":"SandboxSettings.DisableResearchMinigame",
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Death Penalties",
"Category":"AF Sandbox Settings",
"Description":"Sets what penalties a player receives for respawning after death (or by using the Unstick option)",
"Keywords":"death,penalties,respawning,unstick,option,DeathPenalties",
"FieldName":"DeathPenalties",
"InputType":"enum",
"ParamFieldName":"SandboxSettings.DeathPenalties",
"DefaultValue":"1",
"EnumValues":{
"0":"Keep all items",
"1":"Keep equipped items & hotbar (default)",
"2":"Keep hotbar only",
"3":"Keep equipped items only",
"4":"Lose all items including hotbar",
"5":"All items are destroyed"
}
},
{
"DisplayName":"Enable Global Recipe Unlocks",
"Category":"AF Sandbox Settings",
"Description":"If set, all players will share the same recipe list instead of unlocking recipes individually",
"Keywords":"global,recipe,unlocks,list,GlobalRecipeUnlocks",
"FieldName":"GlobalRecipeUnlocks",
"InputType":"checkbox",
"ParamFieldName":"SandboxSettings.GlobalRecipeUnlocks",
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"First Time Starting Weapon",
"Category":"AF Sandbox Settings",
"Description":"Sets the weapon players receive when spawning for the first time, in addition to starting items from their selected Job",
"Keywords":"first,time,starting,weapon,spawning,world,FirstTimeStartingWeapon",
"FieldName":"FirstTimeStartingWeapon",
"InputType":"enum",
"ParamFieldName":"SandboxSettings.FirstTimeStartingWeapon",
"DefaultValue":"0",
"EnumValues":{
"0":"None (default)",
"1":"Shiv",
"2":"Desk leg",
"3":"Kitchen knife",
"4":"Starter baton",
"5":"Pipe club",
"6":"Random"
}
}
]