forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
space-engineers-genericconfig.json
2520 lines (2520 loc) · 95.3 KB
/
space-engineers-genericconfig.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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"DisplayName": "Binding IP",
"Category": "Hidden Settings",
"Description": "Must match AMP's Binding IP",
"Keywords": "",
"FieldName": "$ApplicationIPBinding",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/IP",
"IncludeInCommandLine": false,
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "Server Port",
"Category": "Hidden Settings",
"Description": "Must match AMP's Application Port 1",
"Keywords": "",
"FieldName": "$ApplicationPort1",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/ServerPort",
"IncludeInCommandLine": false,
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "Steam Port",
"Category": "Hidden Settings",
"Description": "Must match AMP's Application Port 2",
"Keywords": "",
"FieldName": "$ApplicationPort2",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SteamPort",
"IncludeInCommandLine": false,
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "Remote API Port",
"Category": "Hidden Settings",
"Description": "Must match AMP's Remote Admin Port",
"Keywords": "",
"FieldName": "$RemoteAdminPort",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/RemoteApiPort",
"IncludeInCommandLine": false,
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "Server Release Stream",
"Category": "SteamCMD and Updates",
"Description": "Which release stream should be used to update the server. Choose a custom release on [SteamDB](https://steamdb.info/app/298740/depots/) and enter the Branch Name below.",
"Keywords": "server,release,stream",
"FieldName": "Stream",
"ParamFieldName": "Stream",
"IncludeInCommandLine": false,
"InputType": "text",
"EnumValues": {},
"DefaultValue": "public",
"Placeholder": "public"
},
{
"DisplayName": "Block Limits Mode",
"Category": "SE - Block Limits",
"Description": "Defines block limits mode.",
"Keywords": "Block,Limits,Enabled",
"FieldName": "BlockLimitsEnabled",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/BlockLimitsEnabled | /MyObjectBuilder_WorldConfiguration/Settings/BlockLimitsEnabled",
"IncludeInCommandLine": false,
"DefaultValue": "GLOBALLY",
"EnumValues": {
"NONE": "None",
"GLOBALLY": "Globally",
"PER_FACTION": "Per Faction",
"PER_PLAYER": "Per Player"
}
},
{
"DisplayName": "Max Blocks Per Player",
"Category": "SE - Block Limits",
"Description": "The maximum number of blocks per player. (0 - 2147483647)",
"Keywords": "Max,Blocks,Per,Player",
"FieldName": "MaxBlocksPerPlayer",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/MaxBlocksPerPlayer | /MyObjectBuilder_WorldConfiguration/Settings/MaxBlocksPerPlayer",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"Placeholder": "0",
"MinValue": "0",
"MaxValue": "2147483647",
"Suffix": "Blocks",
"EnumValues": {}
},
{
"DisplayName": "Max Factions Count",
"Category": "SE - Block Limits",
"Description": "The maximum number of existing factions in the world. (0 - 2147483647)",
"Keywords": "Max,Factions,Count",
"FieldName": "MaxFactionsCount",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/MaxFactionsCount | /MyObjectBuilder_WorldConfiguration/Settings/MaxFactionsCount",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"Placeholder": "0",
"MinValue": "0",
"MaxValue": "2147483647",
"Suffix": "Factions",
"EnumValues": {}
},
{
"DisplayName": "Max Grid Blocks",
"Category": "SE - Block Limits",
"Description": "The maximum number of blocks in one grid. (0 - 2147483647)",
"Keywords": "Max,Grid,Size",
"FieldName": "MaxGridSize",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/MaxGridSize | /MyObjectBuilder_WorldConfiguration/Settings/MaxGridSize",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"Placeholder": "0",
"MinValue": "0",
"MaxValue": "2147483647",
"Suffix": "Blocks",
"EnumValues": {}
},
{
"DisplayName": "Pirate PCU",
"Category": "SE - Block Limits",
"Description": "Number of Performance Cost Units allocated for pirate faction. (0 - 2147483647)",
"Keywords": "Pirate,PCU",
"FieldName": "PiratePCU",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/PiratePCU | /MyObjectBuilder_WorldConfiguration/Settings/PiratePCU",
"IncludeInCommandLine": false,
"DefaultValue": "50000",
"Placeholder": "50000",
"MinValue": "0",
"MaxValue": "2147483647",
"Suffix": "Units",
"EnumValues": {}
},
{
"DisplayName": "World PCU",
"Category": "SE - Block Limits",
"Description": "The total number of Performance Cost Units in the world. (0 - 2147483647)",
"Keywords": "Total,PCU",
"FieldName": "TotalPCU",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/TotalPCU | /MyObjectBuilder_WorldConfiguration/Settings/TotalPCU",
"IncludeInCommandLine": false,
"DefaultValue": "100000",
"Placeholder": "100000",
"MinValue": "0",
"MaxValue": "2147483647",
"Suffix": "Units",
"EnumValues": {}
},
{
"DisplayName": "Enable Destructible Blocks",
"Category": "SE - Environment",
"Description": "Enables destruction feature for the blocks.",
"Keywords": "enable,destructible,blocks",
"FieldName": "DestructibleBlocks",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/DestructibleBlocks | /MyObjectBuilder_WorldConfiguration/Settings/DestructibleBlocks",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Enable Oxygen",
"Category": "SE - Environment",
"Description": "Enables oxygen in the world.",
"Keywords": "Enable,Oxygen",
"FieldName": "EnableOxygen",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/EnableOxygen | /MyObjectBuilder_WorldConfiguration/Settings/EnableOxygen",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Enable Airtightness",
"Category": "SE - Environment",
"Description": "Enables airtightness in the world.",
"Keywords": "Enable,airtightness,Oxygen,Pressurization",
"FieldName": "EnableOxygenPressurization",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/EnableOxygenPressurization | /MyObjectBuilder_WorldConfiguration/Settings/EnableOxygenPressurization",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Enable Sub-Grid Damage",
"Category": "SE - Environment",
"Description": "Enables sub-grid damage.",
"Keywords": "Enable,Subgrid,Damage",
"FieldName": "EnableSubgridDamage",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/EnableSubgridDamage | /MyObjectBuilder_WorldConfiguration/Settings/EnableSubgridDamage",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Enable Sun Rotation",
"Category": "SE - Environment",
"Description": "Enables sun rotation.",
"Keywords": "Enable,Sun,Rotation",
"FieldName": "EnableSunRotation",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/EnableSunRotation | /MyObjectBuilder_WorldConfiguration/Settings/EnableSunRotation",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Enable Friendly Missile Damage",
"Category": "SE - Environment",
"Description": "Enables explosion damage from missiles being applied to its own grid.",
"Keywords": "Enable,missile,damage,Turrets,Friendly,Fire",
"FieldName": "EnableTurretsFriendlyFire",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/EnableTurretsFriendlyFire | /MyObjectBuilder_WorldConfiguration/Settings/EnableTurretsFriendlyFire",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Enable Voxel Destruction",
"Category": "SE - Environment",
"Description": "Enables voxel destructions.",
"Keywords": "Enable,Voxel,Destruction",
"FieldName": "EnableVoxelDestruction",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/EnableVoxelDestruction | /MyObjectBuilder_WorldConfiguration/Settings/EnableVoxelDestruction",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Environment Hostility",
"Category": "SE - Environment",
"Description": "Defines hostility of the environment.",
"Keywords": "Environment,Hostility",
"FieldName": "EnvironmentHostility",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/EnvironmentHostility | /MyObjectBuilder_WorldConfiguration/Settings/EnvironmentHostility",
"IncludeInCommandLine": false,
"DefaultValue": "SAFE",
"EnumValues": {
"SAFE": "Safe",
"NORMAL": "Normal",
"CATACLYSM": "Cataclysm",
"CATACLYSM_UNREAL": "Cataclysm - Unreal"
}
},
{
"DisplayName": "Max Floating Objects",
"Category": "SE - Environment",
"Description": "The maximum number of existing floating objects. (2 - 1024)",
"Keywords": "Max,Floating,Objects",
"FieldName": "MaxFloatingObjects",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/MaxFloatingObjects | /MyObjectBuilder_WorldConfiguration/Settings/MaxFloatingObjects",
"IncludeInCommandLine": false,
"DefaultValue": "56",
"Placeholder": "56",
"MinValue": "2",
"MaxValue": "1024",
"Suffix": "Objects",
"EnumValues": {}
},
{
"DisplayName": "Physics Iterations",
"Category": "SE - Environment",
"Description": "Defines the number of physics iterations. (2 - 32)",
"Keywords": "Physics,Iterations",
"FieldName": "PhysicsIterations",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/PhysicsIterations | /MyObjectBuilder_WorldConfiguration/Settings/PhysicsIterations",
"IncludeInCommandLine": false,
"DefaultValue": "8",
"Placeholder": "8",
"MinValue": "2",
"MaxValue": "32",
"Suffix": "Iterations",
"EnumValues": {}
},
{
"DisplayName": "Enable Realistic Sound",
"Category": "SE - Environment",
"Description": "Enable realistic sounds.",
"Keywords": "Realistic,Sound",
"FieldName": "RealisticSound",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/RealisticSound | /MyObjectBuilder_WorldConfiguration/Settings/RealisticSound",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"False": "false",
"True": "true"
}
},
{
"DisplayName": "Unsupported Stations",
"Category": "SE - Environment",
"Description": "By enabling this option grids will no longer turn dynamic when disconnected from static grids.",
"Keywords": "unsupported,Station,Voxel,Support",
"FieldName": "StationVoxelSupport",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/StationVoxelSupport | /MyObjectBuilder_WorldConfiguration/Settings/StationVoxelSupport",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Sun Rotation Interval",
"Category": "SE - Environment",
"Description": "Defines interval of one rotation of the sun. (0 - 1440)",
"Keywords": "Sun,Rotation,Interval,Minutes",
"FieldName": "SunRotationIntervalMinutes",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/SunRotationIntervalMinutes | /MyObjectBuilder_WorldConfiguration/Settings/SunRotationIntervalMinutes",
"IncludeInCommandLine": false,
"DefaultValue": "119.999992",
"Placeholder": "119.999992",
"MinValue": "0",
"MaxValue": "1440",
"Suffix": "Minutes",
"EnumValues": {}
},
{
"DisplayName": "Sync Distance",
"Category": "SE - Environment",
"Description": "Defines synchronization distance in multiplayer. High distance can slow down server drastically. Use with caution. (1000 - 20000)",
"Keywords": "Sync,Distance",
"FieldName": "SyncDistance",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/SyncDistance | /MyObjectBuilder_WorldConfiguration/Settings/SyncDistance",
"IncludeInCommandLine": false,
"DefaultValue": "3000",
"Placeholder": "3000",
"MinValue": "1000",
"MaxValue": "20000",
"Suffix": "Meters",
"EnumValues": {}
},
{
"DisplayName": "Bot Limit",
"Category": "SE - Environment",
"Description": "Maximum number of organic bots in the world. (16 - 1024)",
"Keywords": "bot,limit",
"FieldName": "TotalBotLimit",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/TotalBotLimit | /MyObjectBuilder_WorldConfiguration/Settings/TotalBotLimit",
"IncludeInCommandLine": false,
"DefaultValue": "32",
"Placeholder": "32",
"MinValue": "16",
"MaxValue": "1024",
"Suffix": "Bots",
"EnumValues": {}
},
{
"DisplayName": "Voxel Generator Version",
"Category": "SE - Environment",
"Description": "Selects the voxel generator version.",
"Keywords": "Voxel,Generator,Version",
"FieldName": "VoxelGeneratorVersion",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/VoxelGeneratorVersion | /MyObjectBuilder_WorldConfiguration/Settings/VoxelGeneratorVersion",
"IncludeInCommandLine": false,
"DefaultValue": "4",
"EnumValues": {
"0": "0",
"1": "1",
"2": "2",
"3": "3",
"4": "4"
}
},
{
"DisplayName": "Enable Weather System",
"Category": "SE - Environment",
"Description": "Enables automatic weather generation on planets.",
"Keywords": "Weather,System",
"FieldName": "WeatherSystem",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/WeatherSystem | /MyObjectBuilder_WorldConfiguration/Settings/WeatherSystem",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "World Size",
"Category": "SE - Environment",
"Description": "Defines the size of the world. (0 - 2147483647)",
"Keywords": "World,Size,Km",
"FieldName": "WorldSizeKm",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/WorldSizeKm | /MyObjectBuilder_WorldConfiguration/Settings/WorldSizeKm",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"Placeholder": "0",
"MinValue": "0",
"MaxValue": "2147483647",
"Suffix": "Kilometers",
"EnumValues": {}
},
{
"DisplayName": "Server Name",
"Category": "SE - General",
"Description": "Server Name displayed in the server browser.",
"Keywords": "Server,Name",
"FieldName": "ServerName",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/ServerName",
"IncludeInCommandLine": false,
"DefaultValue": "AMP Powered Server",
"Placeholder": "AMP Powered Server",
"EnumValues": {}
},
{
"DisplayName": "World Name",
"Category": "SE - General",
"Description": "World Name displayed in server browser.",
"Keywords": "World,Name",
"FieldName": "WorldName",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/WorldName",
"IncludeInCommandLine": false,
"DefaultValue": "World",
"Placeholder": "World",
"EnumValues": {}
},
{
"DisplayName": "Steam Group ID",
"Category": "SE - General",
"Description": "Steam Group ID for friends only",
"Keywords": "Group,ID",
"FieldName": "GroupID",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/GroupID",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"Placeholder": "123456789012345678",
"EnumValues": {}
},
{
"DisplayName": "Server Password Hash",
"Category": "SE - General",
"Description": "Generate the password hash using the [Password Generator](https://sepg.einarjegorov.com/)",
"Keywords": "server,password,hash",
"FieldName": "ServerPasswordHash",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/ServerPasswordHash",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Server Password Salt",
"Category": "SE - General",
"Description": "Generate the password salt using the [Password Generator](https://sepg.einarjegorov.com/)",
"Keywords": "server,password,salt",
"FieldName": "ServerPasswordSalt",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/ServerPasswordSalt",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Pause Game When Empty",
"Category": "SE - General",
"Description": "",
"Keywords": "Pause,Game,When,Empty",
"FieldName": "PauseGameWhenEmpty",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/PauseGameWhenEmpty",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Ignore Last Session",
"Category": "SE - General",
"Description": "This will ignore the save file and load based on the config every time. This should not be used for survival mode, but can be useful to provide a new world each start for battle sessions.",
"Keywords": "Ignore,Last,Session",
"FieldName": "IgnoreLastSession",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/IgnoreLastSession",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Enable Remote API",
"Category": "SE - General",
"Description": "Enable/Disable the remote API to manage the server from a browser. ***Does not work in AMP on Windows in service mode***",
"Keywords": "Remote,API,Enabled",
"FieldName": "RemoteApiEnabled",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/RemoteApiEnabled",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Remote API Security Key",
"Category": "SE - General",
"Description": "The password used to access the Remote API.",
"Keywords": "Remote,API,security,key",
"FieldName": "RemoteSecurityKey",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/RemoteSecurityKey",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Server Description",
"Category": "SE - General",
"Description": "Server Description displayed in the server browser.",
"Keywords": "Server,Description",
"FieldName": "ServerDescription",
"InputType": "Textarea",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/ServerDescription",
"IncludeInCommandLine": false,
"DefaultValue": "My AMP Powered Space Engineers Server",
"Placeholder": "My AMP Powered Space Engineers Server",
"EnumValues": {}
},
{
"DisplayName": "Verbose Network Logging",
"Category": "SE - General",
"Description": "Enables additional network logging.",
"Keywords": "Verbose,Network,Logging",
"FieldName": "VerboseNetworkLogging",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/VerboseNetworkLogging | /MyObjectBuilder_WorldConfiguration/VerboseNetworkLogging",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Console Compatibility",
"Category": "SE - General",
"Description": "Enables console players to cross-play with PC. Ensure \"Networking Type\" is set to EOS.",
"Keywords": "console,compatibility",
"FieldName": "ConsoleCompatibility",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/ConsoleCompatibility",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Networking Type",
"Category": "SE - General",
"Description": "EOS must be selected for cross-platform play. Use in-game server browser filters to display Steam or EOS server lists.",
"Keywords": "Networking,Type",
"FieldName": "NetworkType",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/NetworkType | /MyObjectBuilder_WorldConfiguration/NetworkType",
"IncludeInCommandLine": false,
"DefaultValue": "steam",
"EnumValues": {
"steam": "Steam",
"eos": "EOS"
}
},
{
"DisplayName": "Enable Chat Anti-Spam",
"Category": "SE - General",
"Description": "Enables anti-spam measures for in-game chat.",
"Keywords": "Chat,AntiSpam,Enabled",
"FieldName": "ChatAntiSpamEnabled",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/ChatAntiSpamEnabled | /MyObjectBuilder_WorldConfiguration/ChatAntiSpamEnabled",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Same Message Timeout",
"Category": "SE - General",
"Description": "Time between sending the same message before getting timed out.",
"Keywords": "Same,Message,Timeout",
"FieldName": "SameMessageTimeout",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SameMessageTimeout | /MyObjectBuilder_WorldConfiguration/SameMessageTimeout",
"IncludeInCommandLine": false,
"DefaultValue": "30",
"Placeholder": "30",
"Suffix": "Seconds",
"EnumValues": {}
},
{
"DisplayName": "Spam Messages Time",
"Category": "SE - General",
"Description": "Time between sending multiple messages before getting timed out.",
"Keywords": "Spam,Messages,Time",
"FieldName": "SpamMessagesTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SpamMessagesTime | /MyObjectBuilder_WorldConfiguration/SpamMessagesTime",
"IncludeInCommandLine": false,
"DefaultValue": "0.5",
"Placeholder": "0.5",
"Suffix": "Seconds",
"EnumValues": {}
},
{
"DisplayName": "Spam Messages Timeout",
"Category": "SE - General",
"Description": "How long to time out a user for spamming.",
"Keywords": "Spam,Messages,Timeout",
"FieldName": "SpamMessagesTimeout",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SpamMessagesTimeout | /MyObjectBuilder_WorldConfiguration/SpamMessagesTimeout",
"IncludeInCommandLine": false,
"DefaultValue": "60",
"Placeholder": "60",
"Suffix": "Seconds",
"EnumValues": {}
},
{
"DisplayName": "Autodetect Mod Dependencies",
"Category": "SE - General",
"Description": "The server will detect mod dependencies and automatically download on startup.",
"Keywords": "Autodetect,mod,Dependencies",
"FieldName": "AutodetectDependencies",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/AutodetectDependencies | /MyObjectBuilder_WorldConfiguration/AutodetectDependencies",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Message Of The Day",
"Category": "SE - General",
"Description": "",
"Keywords": "Message,Of,The,Day",
"FieldName": "MessageOfTheDay",
"InputType": "Textarea",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/MessageOfTheDay",
"IncludeInCommandLine": false,
"DefaultValue": "Welcome to my Space Engineers Server, powered by AMP!",
"Placeholder": "Welcome to my Space Engineers Server, powered by AMP!",
"EnumValues": {}
},
{
"DisplayName": "Message Of The Day URL",
"Category": "SE - General",
"Description": "",
"Keywords": "Message,Of,The,Day,Url",
"FieldName": "MessageOfTheDayUrl",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/MessageOfTheDayUrl",
"IncludeInCommandLine": false,
"DefaultValue": "",
"Placeholder": "https://cubecoders.com/AMP",
"EnumValues": {}
},
{
"DisplayName": "Log Chat",
"Category": "SE - General",
"Description": "Save chat messages to the log file.",
"Keywords": "Save,Chat,Log",
"FieldName": "SaveChatToLog",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SaveChatToLog",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Select World or Scenario",
"Category": "SE - General",
"Description": "Sets the World or Scenario to base the game on. If \"Custom\" is chosen, you must also fill in the Custom World or Custom Scenario fields.",
"Keywords": "select,scenario,premade,checkpoint,path",
"FieldName": "PremadeCheckpointPath",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/PremadeCheckpointPath",
"IncludeInCommandLine": false,
"DefaultValue": "../Content/CustomWorlds/Star System",
"EnumValues": {
"../Content/CustomWorlds/Alien Planet/PC": "Alien Planet [PC]",
"../Content/CustomWorlds/Alien System/XBox": "Alien System [XBOX]",
"../Content/CustomWorlds/Asteroid Armory": "Asteroid Armory",
"../Content/CustomWorlds/Crashed Red Ship": "Crashed Red Ship",
"../Content/CustomWorlds/{{CustomWorld}}": "Custom World",
"../Content/CustomWorlds/{{CustomScenario}}": "Custom Scenario",
"../Content/CustomWorlds/Dead Drop Arena": "Dead Drop Arena [PC]",
"../Content/CustomWorlds/Distant Moons": "Distant Moons [XBOX]",
"../Content/CustomWorlds/Earth Planet/PC": "Earth Planet [PC]",
"../Content/CustomWorlds/Earth Planet/XBox": "Earth Planet [XBOX]",
"../Content/CustomWorlds/Empty World": "Empty World",
"../Content/CustomWorlds/Green Station": "Green Station",
"../Content/CustomWorlds/Home System": "Home System",
"../Content/Scenarios/Learning to Survive": "Learning to Survive [Scenario]",
"../Content/CustomWorlds/Lone Survivor": "Lone Survivor",
"../Content/Scenarios/Lost Colony/PC": "Lost Colony [Scenario] [PC]",
"../Content/CustomWorlds/Mars Planet/PC": "Mars Planet [PC]",
"../Content/CustomWorlds/Mars Planet/XBox": "Mars Planet [XBOX]",
"../Content/CustomWorlds/Moon Base/PC": "Moon Base [PC]",
"../Content/CustomWorlds/Moon Base/XBox": "Moon Base [XBOX]",
"../Content/Scenarios/Never Surrender": "Never Surrender [Scenario]",
"../Content/CustomWorlds/Petram Orbiter": "Petram Orbiter",
"../Content/CustomWorlds/Red Ship": "Red Ship",
"../Content/CustomWorlds/Rival Platforms": "Rival Platforms",
"../Content/Scenarios/Scrap Race/PC": "Scrap Race [Scenario] [PC]",
"../Content/Scenarios/Scrap Race/XBox": "Scrap Race [Scenario] [XBOX]",
"../Content/Scenarios/Sparks of the Future/PC": "Sparks of the Future [Scenario] [PC]",
"../Content/Scenarios/Sparks of the Future/XBox": "Sparks of the Future [Scenario] [XBOX]",
"../Content/CustomWorlds/Star System": "Star System",
"../Content/Scenarios/The First Jump": "The First Jump [Scenario]",
"../Content/Scenarios/Warfare": "Warfare [Scenario]"
}
},
{
"DisplayName": "Custom World",
"Category": "SE - General",
"Description": "Set this to the name of the folder you created under the \"CustomWorlds\" directory.",
"Keywords": "custom,world",
"FieldName": "CustomWorld",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "CustomWorld",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "Custom Scenario",
"Category": "SE - General",
"Description": "Set this to the name of the folder you created under the \"Scenarios\" directory.",
"Keywords": "custom,scenario",
"FieldName": "CustomScenario",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "CustomScenario",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
},
{
"DisplayName": "View Distance",
"Category": "SE - General",
"Description": "Set the distance of how far each client can see objects.",
"Keywords": "View,Distance",
"FieldName": "ViewDistance",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/ViewDistance | /MyObjectBuilder_WorldConfiguration/Settings/ViewDistance",
"IncludeInCommandLine": false,
"DefaultValue": "15000",
"Placeholder": "15000",
"Suffix": "Meters",
"EnumValues": {}
},
{
"DisplayName": "Procedural Density",
"Category": "SE - General",
"Description": "Defines density of the procedurally generated content.",
"Keywords": "Procedural,Density",
"FieldName": "ProceduralDensity",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/ProceduralDensity | /MyObjectBuilder_WorldConfiguration/Settings/ProceduralDensity",
"IncludeInCommandLine": false,
"DefaultValue": "0.35",
"Placeholder": "0.35",
"EnumValues": {}
},
{
"DisplayName": "Procedural Seed",
"Category": "SE - General",
"Description": "Defines unique starting seed for the procedurally generated content.",
"Keywords": "Procedural,Seed",
"FieldName": "ProceduralSeed",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/ProceduralSeed | /MyObjectBuilder_WorldConfiguration/Settings/ProceduralSeed",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {}
},
{
"DisplayName": "Scenario Edit Mode",
"Category": "SE - General",
"Description": "",
"Keywords": "Scenario,Edit,Mode",
"FieldName": "ScenarioEditMode",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/ScenarioEditMode | /MyObjectBuilder_WorldConfiguration/Settings/ScenarioEditMode",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Scenario",
"Category": "SE - General",
"Description": "The left side of the screen presents various options for the starting conditions of the world.",
"Keywords": "Scenario",
"FieldName": "Scenario",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/Scenario | /MyObjectBuilder_WorldConfiguration/Settings/Scenario",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Can Join Running",
"Category": "SE - General",
"Description": "Whether players can join a running server.",
"Keywords": "Can,Join,Running",
"FieldName": "CanJoinRunning",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/CanJoinRunning | /MyObjectBuilder_WorldConfiguration/Settings/CanJoinRunning",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Start In Respawn Screen",
"Category": "SE - General",
"Description": "",
"Keywords": "Start,Respawn,Screen",
"FieldName": "StartInRespawnScreen",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/StartInRespawnScreen | /MyObjectBuilder_WorldConfiguration/Settings/StartInRespawnScreen",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Flora Density Multiplier",
"Category": "SE - General",
"Description": "",
"Keywords": "Flora Density Multiplier",
"FieldName": "FloraDensityMultiplier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/FloraDensityMultiplier | /MyObjectBuilder_WorldConfiguration/Settings/FloraDensityMultiplier",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"Placeholder": "1",
"Suffix": "x",
"EnumValues": {}
},
{
"DisplayName": "Enable Structural Simulation",
"Category": "SE - General",
"Description": "",
"Keywords": "Enable,Structural,Simulation",
"FieldName": "EnableStructuralSimulation",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/EnableStructuralSimulation | /MyObjectBuilder_WorldConfiguration/Settings/EnableStructuralSimulation",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Max Active Fracture Pieces",
"Category": "SE - General",
"Description": "",
"Keywords": "Max,Active,Fracture,Pieces",
"FieldName": "MaxActiveFracturePieces",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/MyConfigDedicated/SessionSettings/MaxActiveFracturePieces | /MyObjectBuilder_WorldConfiguration/Settings/MaxActiveFracturePieces",
"IncludeInCommandLine": false,
"DefaultValue": "50",
"Placeholder": "50",