forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ark-saconfig.json
2147 lines (2147 loc) · 87.9 KB
/
ark-saconfig.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":"Server Name",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Set the name of the server as it appears publicly",
"Keywords":"server,name,sessionname",
"FieldName":"SessionName",
"InputType":"text",
"ParamFieldName":"SessionSettings.SessionName",
"DefaultValue":"AMP Powered ARK: Survival Ascended Server",
"EnumValues":{}
},
{
"DisplayName":"MOTD",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets the player welcome message (MOTD)",
"Keywords":"motd,welcome,message",
"FieldName":"MOTDMessage",
"InputType":"text",
"ParamFieldName":"MessageOfTheDay.Message",
"DefaultValue":"Welcome to ARK!",
"EnumValues":{}
},
{
"DisplayName":"MOTD Duration",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets the time period for display of the MOTD",
"Keywords":"motd,message,period,duration",
"FieldName":"MOTDDuration",
"InputType":"number",
"ParamFieldName":"MessageOfTheDay.Duration",
"DefaultValue":"20",
"Placeholder":"20",
"Suffix":"seconds",
"EnumValues":{}
},
{
"DisplayName":"Map",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets the map for the server. If Custom is selected, Custom Map Name must also be set",
"Keywords":"map",
"FieldName":"Map",
"InputType":"enum",
"ParamFieldName":"Map",
"DefaultValue":"TheIsland_WP",
"EnumValues":{
"TheIsland_WP":"The Island (default)",
"ScorchedEarth_WP":"Scorched Earth",
"TheCenter_WP":"The Center",
"Aberration_WP":"Aberration",
"{{CustomMap}}":"--Custom--"
}
},
{
"DisplayName":"Custom Map Name",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets a custom map for the server. \"Custom\" type must be selected under Map, and the CurseForge Project ID for the map included under Mods List",
"Keywords":"custom,map",
"FieldName":"CustomMap",
"InputType":"text",
"ParamFieldName":"CustomMap",
"DefaultValue":"",
"Placeholder":"Svartalfheim_WP",
"EnumValues":{}
},
{
"DisplayName":"Use Mods",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"If set, enables automatic mod downloading, updating and loading (on server start). Specify the relevant mods under Mods List. Don't enable this setting if no mods are specified under Mods List or the server will not start",
"Keywords":"auto,managed,mods",
"FieldName":"mods",
"InputType":"checkbox",
"ParamFieldName":"mods",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-mods={{modslist}} "
}
},
{
"DisplayName":"Mods List",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Comma-separated and ordered list of [CurseForge Project IDs](https://www.curseforge.com/ark-survival-ascended) for mods (including events) to install and load on server start (map mods will not load unless also named as a \"Custom\" map under Custom Map Name). Requires Use Mods to be enabled",
"Keywords":"mods,list",
"FieldName":"modslist",
"InputType":"text",
"ParamFieldName":"modslist",
"DefaultValue":"",
"Placeholder":"900062,893657",
"EnumValues":{}
},
{
"DisplayName":"Enable Steam/PC Mods Only",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"If set, crossplay mods will be disabled on the server",
"Keywords":"crossplay,pc,steam,mods,pconlymods",
"FieldName":"pconlymods",
"InputType":"checkbox",
"ParamFieldName":"pconlymods",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-pconlymods "
}
},
{
"DisplayName":"RCON/Server Admin Password",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"See the Security and Privacy menu for configurable options for the server's RCON password. The RCON password is also used in the in-game console for players to access administrator commands (unless they are whitelisted)",
"Keywords":"rcon,password,serveradminpassword",
"FieldName":"RCONPassword",
"InputType":"hidden",
"ParamFieldName":"RCONPassword",
"IncludeInCommandLine":false,
"EnumValues":{}
},
{
"DisplayName":"Server Password",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets the password for players to join the server",
"Keywords":"server,password,serverpassword",
"FieldName":"ServerPassword",
"InputType":"password",
"ParamFieldName":"ServerSettings.ServerPassword",
"IncludeInCommandLine":false,
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Enable Player Whitelist",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"If set, only players with EOS IDs listed under Whitelisted Players or Whitelisted Players Above Limit can join the server",
"Keywords":"player,whitelist,exclusivejoin",
"FieldName":"exclusivejoin",
"InputType":"checkbox",
"ParamFieldName":"exclusivejoin",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-exclusivejoin "
}
},
{
"DisplayName":"Whitelisted Players",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"List of EOS IDs for normal whitelisted players. EOS IDs can be found by using the 'whoami' command, by viewing another player's character in spectator mode, or by inspecting the server's log files",
"Keywords":"player,whitelist,playersexclusivejoinlist",
"FieldName":"PlayerWhitelist",
"InputType":"list",
"ParamFieldName":"PlayerWhitelist",
"DefaultValue":"",
"Special":"listfile:./ark-sa/2430930/ShooterGame/Binaries/Win64/PlayersExclusiveJoinList.txt",
"EnumValues":{}
},
{
"DisplayName":"Whitelisted Players Above Limit",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"List of EOS IDs for whitelisted players who can join the server even if the number of player slots is exhausted",
"Keywords":"player,whitelist,above,limit,PlayersJoinNoCheckList",
"FieldName":"PlayerWhitelistAboveLimit",
"InputType":"list",
"ParamFieldName":"PlayerWhitelistAboveLimit",
"DefaultValue":"",
"Special":"listfile:./ark-sa/2430930/ShooterGame/Binaries/Win64/PlayersJoinNoCheckList.txt",
"EnumValues":{}
},
{
"DisplayName":"Player Limit",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets the maximum number of players allowed on the server. May be exceeded as a result of players listed under Whitelisted Players Above Limit",
"Keywords":"max,players,limit,maxplayers",
"FieldName":"$MaxUsers",
"InputType":"number",
"MinValue":"1",
"ParamFieldName":"/Script/Engine.GameSession.MaxPlayers",
"DefaultValue":"70",
"Placeholder":"70",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"MultiHome IP Binding",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"If required, you can change the binding of the server and RCON by changing the 'Server IP Address' setting under Security and Privacy. NOTE: The IP must be reachable by AMP, otherwise AMP's console won't work",
"Keywords":"ip,binding,address,multihome",
"FieldName":"MultiHome",
"InputType":"hidden",
"ParamFieldName":"MultiHome",
"EnumValues":{}
},
{
"DisplayName":"Disable BattlEye",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"If set, BattlEye will be disabled on the server",
"Keywords":"battleye,disable,nobattleye",
"FieldName":"BattlEye",
"InputType":"checkbox",
"ParamFieldName":"BattlEye",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-NoBattlEye "
}
},
{
"DisplayName":"Client Platform/Crossplay Support",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"List (separated by +, such as: XSX+PS5) of the game client platforms supported by the server. 'PC' = Steam/PC, 'XSX' = Xbox, 'WINGDK' = Microsoft Store/PC, 'PS5' = PlayStation 5, 'ALL' = all platforms. Crossplay will be enabled if more than one platform is specified",
"Keywords":"crossplay,platform,pc,xbox,ps5,windows,serverplatform",
"FieldName":"ServerPlatform",
"InputType":"text",
"ParamFieldName":"ServerPlatform",
"DefaultValue":"ALL",
"Placeholder":"ALL",
"Required":true,
"EnumValues":{}
},
{
"DisplayName":"Banlist URL",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets a banlist to disallow access to the server to specified players (identified by Steam64 ID). Use either the global banlist of ARK, or a custom banlist URL",
"Keywords":"ban,banlist,blacklist,banlisturl",
"FieldName":"BanListURL",
"InputType":"text",
"ParamFieldName":"ServerSettings.BanListURL",
"DefaultValue":"https://cdn2.arkdedicated.com/asa/BanList.txt",
"Placeholder":"https://cdn2.arkdedicated.com/asa/BanList.txt",
"EnumValues":{}
},
{
"DisplayName":"Enable Admin Logging In Chat",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"If set, all admin commands used will be logged to in-game chat",
"Keywords":"admin,log,chat,adminlogging",
"FieldName":"AdminLogging",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.AdminLogging",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Kick Idle Players",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"If set, characters that have not moved or interacted within the Kick Idle Players Period will be kicked from the server",
"Keywords":"kick,idle,players,enableidleplayerkick",
"FieldName":"EnableIdlePlayerKick",
"InputType":"checkbox",
"ParamFieldName":"EnableIdlePlayerKick",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-EnableIdlePlayerKick "
}
},
{
"DisplayName":"Kick Idle Players Period",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets the time period after which characters that have not moved or interacted will be kicked (if Kick Idle Players is enabled)",
"Keywords":"kick,idle,players,period,kickidleplayersperiod",
"FieldName":"KickIdlePlayersPeriod",
"InputType":"number",
"MinValue":"1",
"ParamFieldName":"ServerSettings.KickIdlePlayersPeriod",
"IncludeInCommandLine":false,
"DefaultValue":"3600",
"Placeholder":"3600",
"Suffix":"seconds",
"EnumValues":{}
},
{
"DisplayName":"Auto Save Period",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets the interval for automatic saves. 0 = constant saving, 9000000 = effectively disabled",
"Keywords":"auto,save,period,minutes,autosaveperiodminutes",
"FieldName":"AutoSavePeriodMinutes",
"InputType":"number",
"MinValue":"0",
"MaxValue":"9000000",
"ParamFieldName":"ServerSettings.AutoSavePeriodMinutes",
"IncludeInCommandLine":false,
"DefaultValue":"15.0",
"Placeholder":"15.0",
"Suffix":"minutes",
"EnumValues":{}
},
{
"DisplayName":"Disable Hang Detection",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"If set, prevents the server from shutdown if its start-time takes more than 2700 seconds (45 minutes). Useful for servers with big saves or very slow machines",
"Keywords":"hang,detection,disabled,NoHangDetection",
"FieldName":"NoHangDetection",
"InputType":"checkbox",
"ParamFieldName":"NoHangDetection",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-NoHangDetection "
}
},
{
"DisplayName":"Filter Transfers",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"If set, prevents ARK data usage between single player and servers that do not have a Cluster ID set. Even with a Cluster ID set, it is suggested to enable this option",
"Keywords":"filter,data,transfer,notransferfromfiltering",
"FieldName":"NoTransferFromFiltering",
"InputType":"checkbox",
"ParamFieldName":"NoTransferFromFiltering",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-NoTransferFromFiltering "
}
},
{
"DisplayName":"Language",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets the language of the server",
"Keywords":"language,culture",
"FieldName":"culture",
"InputType":"enum",
"ParamFieldName":"culture",
"DefaultValue":"en",
"EnumValues":{
"ca":"Català",
"cs":"čeština",
"da":"dansk",
"de":"Deutsch",
"en":"English (default)",
"es":"Español",
"eu":"euskara",
"fi":"suomi",
"fr":"Français",
"hu":"magyar",
"it":"Italiano",
"ja":"日本語",
"ka":"ქართული",
"ko":"한국어",
"nl":"Nederlands",
"pl":"Polski",
"pt_BR":"Português brasileiro",
"ru":"Русский",
"sv":"Svenska",
"th":"ไทย",
"tr":"Türkçe",
"zh":"中文",
"zh-Hans-CN":"使用者",
"zh-TW":"国语"
}
},
{
"DisplayName":"Custom Command Line Flags",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets custom [command line flags](https://ark.wiki.gg/wiki/Server_configuration_(Survival_Ascended%29) for the server (those that start with a - (dash)). Include the dash and separate with a space. Don't use flags already in AMP's settings!",
"Keywords":"custom,command,line,flags",
"FieldName":"CustomFlags",
"InputType":"text",
"ParamFieldName":"CustomFlags",
"DefaultValue":"",
"Placeholder":"-UseItemDupeCheck -UseSecureSpawnRules",
"EnumValues":{}
},
{
"DisplayName":"Custom Command Line Options",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Server:dns:1",
"Description":"Sets custom [command line options](https://ark.wiki.gg/wiki/Server_configuration_(Survival_Ascended%29) for the server (those that start with a ? (question mark)). Include the question mark but do not separate with a space. Don't use options already in AMP's settings!",
"Keywords":"custom,command,line,options",
"FieldName":"CustomOptions",
"InputType":"text",
"ParamFieldName":"CustomOptions",
"DefaultValue":"",
"Placeholder":"?ClampItemStats=True?NewYear1UTC=1672592400",
"EnumValues":{}
},
{
"DisplayName":"Enable PvE / Disable PvP",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, PvE will be enabled, and PvP disabled",
"Keywords":"pve,pvp,serverpve",
"FieldName":"ServerPVE",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.ServerPVE",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Enable Offline Raiding Prevention",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, the Offline Raiding Prevention option will be enabled, so that when all tribe members are logged off, tribe characters, creatures and structures become invulnerable. Creature starvation still applies, and characters and creatures can still die if drowned",
"Keywords":"offline,pvp,raiding,prevention,preventofflinepvp",
"FieldName":"PreventOfflinePvP",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.PreventOfflinePvP",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Offline Raiding Prevention Interval",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"Sets the time period after which Offline Raiding Prevention becomes active for tribes/players and related creatures/structures. Recommended to set a minimum for performance reasons",
"Keywords":"offline,pvp,raiding,prevention,preventofflinepvpinterval",
"FieldName":"PreventOfflinePvPInterval",
"InputType":"number",
"ParamFieldName":"ServerSettings.PreventOfflinePvPInterval",
"IncludeInCommandLine":false,
"DefaultValue":"0.0",
"Placeholder":"0.0",
"Suffix":"seconds",
"EnumValues":{}
},
{
"DisplayName":"Enable Hardcore Mode",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, enables hardcore mode, meaning player characters revert to level 1 upon death",
"Keywords":"hardcore,serverhardcore",
"FieldName":"ServerHardcore",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.ServerHardcore",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Override Official Difficulty",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If enabled, sets the server difficulty level to the value set under \"Difficulty Override Level\". This is generally the recommended way to set the difficulty level",
"Keywords":"override,official,difficulty,overrideofficialdifficulty",
"FieldName":"OverrideOfficialDifficulty",
"InputType":"checkbox",
"ParamFieldName":"OverrideOfficialDifficulty",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"?OverrideOfficialDifficulty={{DifficultyOverrideLevel}}"
}
},
{
"DisplayName":"Difficulty Override Level",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"Sets the value of the difficulty level to be applied if \"Override Official Difficulty\" is enabled, allowing the level to go above the default 4.0. Value of 5.0 will allow common creatures to spawn up to level 150. Be careful not to go too high!",
"Keywords":"override,official,difficulty,level,overrideofficialdifficulty",
"FieldName":"DifficultyOverrideLevel",
"InputType":"number",
"MinValue":"0",
"ParamFieldName":"DifficultyOverrideLevel",
"DefaultValue":"4.0",
"Placeholder":"4.0",
"EnumValues":{}
},
{
"DisplayName":"Difficulty Offset",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"As an alternative to using \"Override Official Difficulty\", this setting sets the difficulty offset, which is used to calculate the [difficulty level](https://ark.wiki.gg/wiki/Difficulty)",
"Keywords":"difficulty,offset,level,difficultyoffset",
"FieldName":"DifficultyOffset",
"InputType":"number",
"MinValue":"0",
"MaxValue":"1",
"ParamFieldName":"ServerSettings.DifficultyOffset",
"IncludeInCommandLine":false,
"DefaultValue":"0.200000",
"Placeholder":"0.200000",
"EnumValues":{}
},
{
"DisplayName":"Enable Crosshair",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, each player will be shown a crosshair",
"Keywords":"crosshair,servercrosshair",
"FieldName":"ServerCrosshair",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.ServerCrosshair",
"IncludeInCommandLine":false,
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Disable HUD",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, the HUD (head-up display) will always be disabled for non-tribe owned NPCs",
"Keywords":"hud,head-up,heads-up,display,serverforcenohud",
"FieldName":"ServerForceNoHUD",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.ServerForceNoHUD",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"Truue":"True"
}
},
{
"DisplayName":"Show Player On Map",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, shows each player their own precise position when they view their map",
"Keywords":"player,position,location,map,showmapplayerlocation",
"FieldName":"ShowMapPlayerLocation",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.ShowMapPlayerLocation",
"IncludeInCommandLine":false,
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Allow Third Person View",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, the third person camera is enabled",
"Keywords":"third,person,3rd,view,camera,allowthirdpersonplayer",
"FieldName":"AllowThirdPersonPlayer",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.AllowThirdPersonPlayer",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Show Floating Damage Text",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, damage caused is shown in a RPG style pop-up text",
"Keywords":"show,floating,damage,text,showfloatingdamagetext",
"FieldName":"ShowFloatingDamageText",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.ShowFloatingDamageText",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Prevent Spawn Animation",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, player characters spawn and respawn without the wake-up animation",
"Keywords":"prevent,spawn,animations,preventspawnanimations",
"FieldName":"PreventSpawnAnimations",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.PreventSpawnAnimations",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Disable Creature Mate Boost",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, disables creature mate boosting",
"Keywords":"prevent,mate,boost,preventmateboost",
"FieldName":"PreventMateBoost",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.PreventMateBoost",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Enable Hit Markers",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, enables optional hit markers for ranged attacks",
"Keywords":"allow,hit,markers,allowhitmarkers",
"FieldName":"AllowHitMarkers",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.AllowHitMarkers",
"IncludeInCommandLine":false,
"DefaultValue":"True",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Maximum Tamed Creatures",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"Sets the maximum number of tamed creatures on the server. This is a global cap",
"Keywords":"maximum,tamed,creatures,limit,maxtameddinos",
"FieldName":"MaxTamedDinos",
"InputType":"number",
"ParamFieldName":"ServerSettings.MaxTamedDinos",
"IncludeInCommandLine":false,
"DefaultValue":"5000",
"Placeholder":"5000",
"EnumValues":{}
},
{
"DisplayName":"Maximum Personal Tamed Creatures",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"Sets the maximum number of tamed creatures that a tribe is allowed to have. 0 = disabled",
"Keywords":"maximum,tamed,personal,creatures,limit,maxpersonaltameddinos",
"FieldName":"MaxPersonalTamedDinos",
"InputType":"number",
"ParamFieldName":"ServerSettings.MaxPersonalTamedDinos",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"Placeholder":"0",
"EnumValues":{}
},
{
"DisplayName":"Maximum Tribute Creatures",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"Sets the maximum number of slots for uploaded creatures",
"Keywords":"maximum,tribute,creatures,limit,maxtributedinos",
"FieldName":"MaxTributeDinos",
"InputType":"number",
"MinValue":"20",
"ParamFieldName":"ServerSettings.MaxTributeDinos",
"IncludeInCommandLine":false,
"DefaultValue":"20",
"Placeholder":"20",
"EnumValues":{}
},
{
"DisplayName":"Maximum Structures",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"Sets the maximum number of structures that can be constructed within a certain (currently hard-coded) range",
"Keywords":"maximum,structures,limit,themaxstructuresinrange",
"FieldName":"TheMaxStructuresInRange",
"InputType":"number",
"ParamFieldName":"ServerSettings.TheMaxStructuresInRange",
"IncludeInCommandLine":false,
"DefaultValue":"10500",
"Placeholder":"10500",
"EnumValues":{}
},
{
"DisplayName":"Maximum Tribute Items",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"Sets the maximum number of slots for uploaded items and resources",
"Keywords":"maximum,tribute,items,limit,maxtributeitems",
"FieldName":"MaxTributeItems",
"InputType":"number",
"MinValue":"50",
"ParamFieldName":"ServerSettings.MaxTributeItems",
"IncludeInCommandLine":false,
"DefaultValue":"50",
"Placeholder":"50",
"EnumValues":{}
},
{
"DisplayName":"Maximum Players In Tribe",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"Sets the maximum number of players in each tribe. 0 = no limit, 1 = tribes effectively disabled",
"Keywords":"maximum,tribe,players,limit,maxnumberofplayersintribe",
"FieldName":"MaxNumberOfPlayersInTribe",
"InputType":"number",
"MinValue":"0",
"ParamFieldName":"/Script/ShooterGame.ShooterGameMode.MaxNumberOfPlayersInTribe",
"DefaultValue":"0",
"Placeholder":"0",
"EnumValues":{}
},
{
"DisplayName":"Prevent Tribe Alliances",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, tribes will be prevented from creating alliances",
"Keywords":"prevent,tribe,alliances,preventtribealliances",
"FieldName":"PreventTribeAlliances",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.PreventTribeAlliances",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Disable PvP Friendly Fire",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, prevents friendly fire among tribe-mates, tribe-dinosaurs and tribe-structures on PvP servers",
"Keywords":"pvp,friendly,fire,bdisablefriendlyfire",
"FieldName":"bDisableFriendlyFire",
"InputType":"checkbox",
"ParamFieldName":"/Script/ShooterGame.ShooterGameMode.bDisableFriendlyFire",
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Disable PvE Friendly Fire",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, prevents friendly fire among tribe-mates, tribe-dinosaurs and tribe-structures on PvE servers",
"Keywords":"pve,friendly,fire,bpvedisablefriendlyfire",
"FieldName":"bPvEDisableFriendlyFire",
"InputType":"checkbox",
"ParamFieldName":"/Script/ShooterGame.ShooterGameMode.bPvEDisableFriendlyFire",
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Enable PvP Gamma",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, allows use of console command \"gamma\" in PvP mode",
"Keywords":"pvp,gamma,enablepvpgamma",
"FieldName":"EnablePvPGamma",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.EnablePvPGamma",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Disable PvE Gamma",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, prevents use of console command \"gamma\" in PvE mode",
"Keywords":"pve,gamma,disablepvegamma",
"FieldName":"DisablePvEGamma",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.DisablePvEGamma",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Notify Player Join",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, players will always be notified if someone joins the server",
"Keywords":"notify,player,join,alwaysnotifyplayerjoined",
"FieldName":"AlwaysNotifyPlayerJoined",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.AlwaysNotifyPlayerJoined",
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Enable Global Voice Chat",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, voice chat will be enabled globally",
"Keywords":"voice,chat,globalvoicechat",
"FieldName":"GlobalVoiceChat",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.GlobalVoiceChat",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Enable Proximity Chat",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, only players near each other can see each other's chat messages",
"Keywords":"proximity,chat,proximitychat",
"FieldName":"ProximityChat",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.ProximityChat",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Allow PvE Cave Building",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, allows building in caves in PvE mode",
"Keywords":"pve,cave,building,allowcavebuildingpve",
"FieldName":"AllowCaveBuildingPVE",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.AllowCaveBuildingPVE",
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Allow PvE Flyer Carry",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, flying dinosaurs will be permitted to pick up wild creatures in PvE mode",
"Keywords":"pve,flyer,carry,allowflyercarrypve",
"FieldName":"AllowFlyerCarryPvE",
"InputType":"checkbox",
"ParamFieldName":"ServerSettings.AllowFlyerCarryPvE",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Allow Speed Levelling",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, players and non-flyers can have their movement speed levelled up. Disabled by default due to engine limitations. Use with caution",
"Keywords":"player,non-flyer,movement,speed,level,up,allowspeedleveling",
"FieldName":"AllowSpeedLeveling",
"InputType":"checkbox",
"ParamFieldName":"AllowSpeedLeveling",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-AllowSpeedLeveling "
}
},
{
"DisplayName":"Allow Cave Flyers",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, flyers will always be allowed into caves (flyers are able to go into caves by default on custom maps)",
"Keywords":"allow,cave,flyers,forceallowcaveflyers",
"FieldName":"ForceAllowCaveFlyers",
"InputType":"checkbox",
"ParamFieldName":"ForceAllowCaveFlyers",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-ForceAllowCaveFlyers "
}
},
{
"DisplayName":"Disable Wild Creature Spawn",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, wild creatures will not be spawned in the server. For an existing server, existing creatures need to be wiped with the admin command \"destroywilddinos\"",
"Keywords":"no,creatures,spawn,nodinos",
"FieldName":"nodinos",
"InputType":"checkbox",
"ParamFieldName":"nodinos",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-nodinos "
}
},
{
"DisplayName":"Force Wild Creature Respawn On Start",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, all wild creatures that are not currently tamed will be destroyed on server start",
"Keywords":"force,creature,respawn,forcerespawndinos",
"FieldName":"ForceRespawnDinos",
"InputType":"checkbox",
"ParamFieldName":"ForceRespawnDinos",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-ForceRespawnDinos "
}
},
{
"DisplayName":"Disable Tek Railgun",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, the Tek Railgun will be disabled in PvP mode",
"Keywords":"disable,tek,railgun,disablerailgunpvp",
"FieldName":"DisableRailgunPVP",
"InputType":"checkbox",
"ParamFieldName":"DisableRailgunPVP",
"DefaultValue":"",
"EnumValues":{
"False":"",
"True":"-DisableRailgunPVP "
}
},
{
"DisplayName":"Disable Loot Crates",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"If set, loot crates will not spawn. Artifact crates will still spawn",
"Keywords":"disable,loot,crates,disablelootcrates",
"FieldName":"bDisableLootCrates",
"InputType":"checkbox",
"ParamFieldName":"/Script/ShooterGame.ShooterGameMode.bDisableLootCrates",
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Player Radius For No Resource Replenish",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"Sets the distance around players where resources are not allowed to grow back. Values higher than 1 increase it, values between 0 and 1 reduce it",
"Keywords":"player,resource,radius,resourcenoreplenishradiusplayers",
"FieldName":"ResourceNoReplenishRadiusPlayers",
"InputType":"number",
"MinValue":"0",
"ParamFieldName":"/Script/ShooterGame.ShooterGameMode.ResourceNoReplenishRadiusPlayers",
"DefaultValue":"1.000000",
"Placeholder":"1.000000",
"EnumValues":{}
},
{
"DisplayName":"Structure Radius For No Resource Replenish",
"Category":"ARK SA:stadia_controller",
"Subcategory":"Gameplay:joystick:2",
"Description":"Sets the distance around structures where resources are not allowed to grow back. Values higher than 1 increase it, values between 0 and 1 reduce it",
"Keywords":"structure,resource,radius,resourcenoreplenishradiusstructures",
"FieldName":"ResourceNoReplenishRadiusStructures",
"InputType":"number",
"MinValue":"0",
"ParamFieldName":"/Script/ShooterGame.ShooterGameMode.ResourceNoReplenishRadiusStructures",
"DefaultValue":"1.000000",
"Placeholder":"1.000000",
"EnumValues":{}
},