forked from CubeCoders/AMPTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsurgencysandstormconfig.json
1099 lines (1099 loc) · 44.6 KB
/
insurgencysandstormconfig.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": "Starting Map",
"Category": "Server Config",
"Description": "Set the server's starting map. Not all scenarios work with all maps.",
"Keywords": "Map",
"FieldName": "Map",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "Map",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {
"": "None/Random",
"Bab": "Bab",
"Canyon": "Crossing (Canyon)",
"Citadel": "Citadel",
"Farmhouse": "Farmhouse",
"Gap": "Gap",
"Town": "Hideout (Town)",
"Sinjar": "Hillside (Sinjar)",
"Ministry": "Ministry",
"Compound": "Outskirts (Compound)",
"OilField": "Refinery (Oilfield)",
"PowerPlant": "PowerPlant",
"Precinct": "Precinct",
"Mountain": "Summit (Mountain)",
"Tell": "Tell",
"Buhriz": "Tideway (Buhriz)"
},
"SkipIfEmpty": true
},
{
"DisplayName": "Starting Scenario",
"Category": "Server Config",
"Description": "Set the server's starting scenario. Not all scenarios work with all maps. Must be set to None/Random if no map is chosen.",
"Keywords": "Scenario",
"FieldName": "Scenario",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "Scenario",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {
"": "None/Random",
"Scenario_Bab_Checkpoint_Insurgents": "Scenario_Bab_Checkpoint_Insurgents",
"Scenario_Bab_Checkpoint_Security": "Scenario_Bab_Checkpoint_Security",
"Scenario_Bab_Domination": "Scenario_Bab_Domination",
"Scenario_Bab_Firefight_East": "Scenario_Bab_Firefight_East",
"Scenario_Bab_Outpost": "Scenario_Bab_Outpost",
"Scenario_Bab_Push_Insurgents": "Scenario_Bab_Push_Insurgents",
"Scenario_Bab_Push_Security": "Scenario_Bab_Push_Security",
"Scenario_Citadel_Ambush": "Scenario_Citadel_Ambush",
"Scenario_Citadel_Checkpoint_Insurgents": "Scenario_Citadel_Checkpoint_Insurgents",
"Scenario_Citadel_Checkpoint_Security": "Scenario_Citadel_Checkpoint_Security",
"Scenario_Citadel_Domination": "Scenario_Citadel_Domination",
"Scenario_Citadel_Firefight_East": "Scenario_Citadel_Firefight_East",
"Scenario_Citadel_Outpost": "Scenario_Citadel_Outpost",
"Scenario_Citadel_Push_Insurgents": "Scenario_Citadel_Push_Insurgents",
"Scenario_Citadel_Push_Security": "Scenario_Citadel_Push_Security",
"Scenario_Citadel_Survival": "Scenario_Citadel_Survival",
"Scenario_Crossing_Ambush": "Scenario_Crossing_Ambush",
"Scenario_Crossing_Checkpoint_Insurgents": "Scenario_Crossing_Checkpoint_Insurgents",
"Scenario_Crossing_Checkpoint_Security": "Scenario_Crossing_Checkpoint_Security",
"Scenario_Crossing_Domination": "Scenario_Crossing_Domination",
"Scenario_Crossing_Firefight_West": "Scenario_Crossing_Firefight_West",
"Scenario_Crossing_Frontline": "Scenario_Crossing_Frontline",
"Scenario_Crossing_Push_Insurgents": "Scenario_Crossing_Push_Insurgents",
"Scenario_Crossing_Push_Security": "Scenario_Crossing_Push_Security",
"Scenario_Crossing_Skirmish": "Scenario_Crossing_Skirmish",
"Scenario_Crossing_Team_Deathmatch": "Scenario_Crossing_Team_Deathmatch",
"Scenario_Farmhouse_Ambush": "Scenario_Farmhouse_Ambush",
"Scenario_Farmhouse_Checkpoint_Insurgents": "Scenario_Farmhouse_Checkpoint_Insurgents",
"Scenario_Farmhouse_Checkpoint_Security": "Scenario_Farmhouse_Checkpoint_Security",
"Scenario_Farmhouse_Domination": "Scenario_Farmhouse_Domination",
"Scenario_Farmhouse_Firefight_East": "Scenario_Farmhouse_Firefight_East",
"Scenario_Farmhouse_Firefight_West": "Scenario_Farmhouse_Firefight_West",
"Scenario_Farmhouse_Frontline": "Scenario_Farmhouse_Frontline",
"Scenario_Farmhouse_Push_Insurgents": "Scenario_Farmhouse_Push_Insurgents",
"Scenario_Farmhouse_Push_Security": "Scenario_Farmhouse_Push_Security",
"Scenario_Farmhouse_Skirmish": "Scenario_Farmhouse_Skirmish",
"Scenario_Farmhouse_Team_Deathmatch": "Scenario_Farmhouse_Team_Deathmatch",
"Scenario_Farmhouse_Survival": "Scenario_Farmhouse_Survival",
"Scenario_Gap_Ambush": "Scenario_Gap_Ambush",
"Scenario_Gap_Checkpoint_Insurgents": "Scenario_Gap_Checkpoint_Insurgents",
"Scenario_Gap_Checkpoint_Security": "Scenario_Gap_Checkpoint_Security",
"Scenario_Gap_Domination": "Scenario_Gap_Domination",
"Scenario_Gap_Firefight": "Scenario_Gap_Firefight",
"Scenario_Gap_Frontline": "Scenario_Gap_Frontline",
"Scenario_Gap_Outpost": "Scenario_Gap_Outpost",
"Scenario_Gap_Push_Insurgents": "Scenario_Gap_Push_Insurgents",
"Scenario_Gap_Push_Security": "Scenario_Gap_Push_Security",
"Scenario_Gap_Survival": "Scenario_Gap_Survival",
"Scenario_Hideout_Ambush": "Scenario_Hideout_Ambush",
"Scenario_Hideout_Checkpoint_Insurgents": "Scenario_Hideout_Checkpoint_Insurgents",
"Scenario_Hideout_Checkpoint_Security": "Scenario_Hideout_Checkpoint_Security",
"Scenario_Hideout_Domination": "Scenario_Hideout_Domination",
"Scenario_Hideout_Firefight_East": "Scenario_Hideout_Firefight_East",
"Scenario_Hideout_Firefight_West": "Scenario_Hideout_Firefight_West",
"Scenario_Hideout_Frontline": "Scenario_Hideout_Frontline",
"Scenario_Hideout_Push_Insurgents": "Scenario_Hideout_Push_Insurgents",
"Scenario_Hideout_Push_Security": "Scenario_Hideout_Push_Security",
"Scenario_Hideout_Skirmish": "Scenario_Hideout_Skirmish",
"Scenario_Hideout_Team_Deathmatch": "Scenario_Hideout_Team_Deathmatch",
"Scenario_Hideout_Survival": "Scenario_Hideout_Survival",
"Scenario_Hillside_Ambush": "Scenario_Hillside_Ambush",
"Scenario_Hillside_Checkpoint_Insurgents": "Scenario_Hillside_Checkpoint_Insurgents",
"Scenario_Hillside_Checkpoint_Security": "Scenario_Hillside_Checkpoint_Security",
"Scenario_Hillside_Domination": "Scenario_Hillside_Domination",
"Scenario_Hillside_Firefight_East": "Scenario_Hillside_Firefight_East",
"Scenario_Hillside_Firefight_West": "Scenario_Hillside_Firefight_West",
"Scenario_Hillside_Frontline": "Scenario_Hillside_Frontline",
"Scenario_Hillside_Push_Insurgents": "Scenario_Hillside_Push_Insurgents",
"Scenario_Hillside_Push_Security": "Scenario_Hillside_Push_Security",
"Scenario_Hillside_Skirmish": "Scenario_Hillside_Skirmish",
"Scenario_Hillside_Team_Deathmatch": "Scenario_Hillside_Team_Deathmatch",
"Scenario_Hillside_Survival": "Scenario_Hillside_Survival",
"Scenario_Ministry_Ambush": "Scenario_Ministry_Ambush",
"Scenario_Ministry_Checkpoint_Insurgents": "Scenario_Ministry_Checkpoint_Insurgents",
"Scenario_Ministry_Checkpoint_Security": "Scenario_Ministry_Checkpoint_Security",
"Scenario_Ministry_Domination": "Scenario_Ministry_Domination",
"Scenario_Ministry_Firefight_A": "Scenario_Ministry_Firefight_A",
"Scenario_Ministry_Skirmish": "Scenario_Ministry_Skirmish",
"Scenario_Ministry_Team_Deathmatch": "Scenario_Ministry_Team_Deathmatch",
"Scenario_Outskirts_Checkpoint_Insurgents": "Scenario_Outskirts_Checkpoint_Insurgents",
"Scenario_Outskirts_Checkpoint_Security": "Scenario_Outskirts_Checkpoint_Security",
"Scenario_Outskirts_Firefight_East": "Scenario_Outskirts_Firefight_East",
"Scenario_Outskirts_Firefight_West": "Scenario_Outskirts_Firefight_West",
"Scenario_Outskirts_Frontline": "Scenario_Outskirts_Frontline",
"Scenario_Outskirts_Push_Insurgents": "Scenario_Outskirts_Push_Insurgents",
"Scenario_Outskirts_Push_Security": "Scenario_Outskirts_Push_Security",
"Scenario_Outskirts_Skirmish": "Scenario_Outskirts_Skirmish",
"Scenario_Outskirts_Team_Deathmatch": "Scenario_Outskirts_Team_Deathmatch",
"Scenario_Outskirts_Survival": "Scenario_Outskirts_Survival",
"Scenario_Precinct_Ambush": "Scenario_Precinct_Ambush",
"Scenario_Precinct_Checkpoint_Insurgents": "Scenario_Precinct_Checkpoint_Insurgents",
"Scenario_Precinct_Checkpoint_Security": "Scenario_Precinct_Checkpoint_Security",
"Scenario_Precinct_Firefight_East": "Scenario_Precinct_Firefight_East",
"Scenario_Precinct_Firefight_West": "Scenario_Precinct_Firefight_West",
"Scenario_Precinct_Frontline": "Scenario_Precinct_Frontline",
"Scenario_Precinct_Push_Insurgents": "Scenario_Precinct_Push_Insurgents",
"Scenario_Precinct_Push_Security": "Scenario_Precinct_Push_Security",
"Scenario_Precinct_Skirmish": "Scenario_Precinct_Skirmish",
"Scenario_Precinct_Team_Deathmatch": "Scenario_Precinct_Team_Deathmatch",
"Scenario_Precinct_Survival": "Scenario_Precinct_Survival",
"Scenario_Refinery_Ambush": "Scenario_Refinery_Ambush",
"Scenario_Refinery_Checkpoint_Insurgents": "Scenario_Refinery_Checkpoint_Insurgents",
"Scenario_Refinery_Checkpoint_Security": "Scenario_Refinery_Checkpoint_Security",
"Scenario_Refinery_Firefight_West": "Scenario_Refinery_Firefight_West",
"Scenario_Refinery_Frontline": "Scenario_Refinery_Frontline",
"Scenario_Refinery_Push_Insurgents": "Scenario_Refinery_Push_Insurgents",
"Scenario_Refinery_Push_Security": "Scenario_Refinery_Push_Security",
"Scenario_Refinery_Skirmish": "Scenario_Refinery_Skirmish",
"Scenario_Refinery_Team_Deathmatch": "Scenario_Refinery_Team_Deathmatch",
"Scenario_Summit_Ambush": "Scenario_Summit_Ambush",
"Scenario_Summit_Checkpoint_Insurgents": "Scenario_Summit_Checkpoint_Insurgents",
"Scenario_Summit_Checkpoint_Security": "Scenario_Summit_Checkpoint_Security",
"Scenario_Summit_Firefight_East": "Scenario_Summit_Firefight_East",
"Scenario_Summit_Firefight_West": "Scenario_Summit_Firefight_West",
"Scenario_Summit_Frontline": "Scenario_Summit_Frontline",
"Scenario_Summit_Push_Insurgents": "Scenario_Summit_Push_Insurgents",
"Scenario_Summit_Push_Security": "Scenario_Summit_Push_Security",
"Scenario_Summit_Skirmish": "Scenario_Summit_Skirmish",
"Scenario_Summit_Team_Deathmatch": "Scenario_Summit_Team_Deathmatch",
"Scenario_Summit_Survival": "Scenario_Summit_Survival",
"Scenario_Powerplant_Ambush": "Scenario_Powerplant_Ambush",
"Scenario_PowerPlant_Checkpoint_Insurgents": "Scenario_PowerPlant_Checkpoint_Insurgents",
"Scenario_PowerPlant_Checkpoint_Security": "Scenario_PowerPlant_Checkpoint_Security",
"Scenario_PowerPlant_Domination": "Scenario_PowerPlant_Domination",
"Scenario_PowerPlant_Firefight_East": "Scenario_PowerPlant_Firefight_East",
"Scenario_PowerPlant_Firefight_West": "Scenario_PowerPlant_Firefight_West",
"Scenario_PowerPlant_Push_Insurgents": "Scenario_PowerPlant_Push_Insurgents",
"Scenario_PowerPlant_Push_Security": "Scenario_PowerPlant_Push_Security",
"Scenario_PowerPlant_Survival": "Scenario_PowerPlant_Survival",
"Scenario_Tell_Ambush": "Scenario_Tell_Ambush",
"Scenario_Tell_Checkpoint_Insurgents": "Scenario_Tell_Checkpoint_Insurgents",
"Scenario_Tell_Checkpoint_Security": "Scenario_Tell_Checkpoint_Security",
"Scenario_Tell_Domination": "Scenario_Tell_Domination",
"Scenario_Tell_Firefight_East": "Scenario_Tell_Firefight_East",
"Scenario_Tell_Firefight_West": "Scenario_Tell_Firefight_West",
"Scenario_Tell_Outpost": "Scenario_Tell_Outpost",
"Scenario_Tell_Push_Insurgents": "Scenario_Tell_Push_Insurgents",
"Scenario_Tell_Push_Security": "Scenario_Tell_Push_Security",
"Scenario_Tell_Survival": "Scenario_Tell_Survival",
"Scenario_Tideway_Checkpoint_Insurgents": "Scenario_Tideway_Checkpoint_Insurgents",
"Scenario_Tideway_Checkpoint_Security": "Scenario_Tideway_Checkpoint_Security",
"Scenario_Tideway_Domination": "Scenario_Tideway_Domination",
"Scenario_Tideway_Firefight_West": "Scenario_Tideway_Firefight_West",
"Scenario_Tideway_Frontline": "Scenario_Tideway_Frontline",
"Scenario_Tideway_Push_Insurgents": "Scenario_Tideway_Push_Insurgents",
"Scenario_Tideway_Push_Security": "Scenario_Tideway_Push_Security"
},
"SkipIfEmpty": true
},
{
"DisplayName": "Starting Lighting",
"Category": "Server Config",
"Description": "Set the server's starting lighting. Must be set to Day if no map and Scenario are chosen.",
"Keywords": "Lighting",
"FieldName": "Lighting",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "Lighting",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {
"": "Day",
"Night": "Night"
},
"SkipIfEmpty": true
},
{
"DisplayName": "Starting Game Mode",
"Category": "Server Config",
"Description": "Set the server's starting game mode. Must be set to None/Random if no map and Scenario are chosen.",
"Keywords": "Gamemode",
"FieldName": "Game",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "Game",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {
"": "None/Random",
"CaptureTheBase": "Capture The Base",
"Checkpoint": "Checkpoint",
"CheckpointHardcore": "Checkpoint Hardcore",
"CheckpointTutorial": "Checkpoint Tutorial",
"Domination": "Domination",
"Filming": "Filming",
"Firefight": "Firefight",
"Frontline": "Frontline",
"Mission": "Mission",
"Occupy": "Occupy",
"Operations": "Operations",
"Outpost": "Outpost",
"Skirmish": "Skirmish",
"TeamDeathmatch": "Team Deathmatch"
},
"SkipIfEmpty": true
},
{
"DisplayName": "Hostname",
"Category": "Server Config",
"Description": "Set the servers hostname",
"Keywords": "Hostname",
"FieldName": "Hostname",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "Hostname",
"IncludeInCommandLine": false,
"DefaultValue": "My Server Powered by AMP",
"EnumValues": {}
},
{
"DisplayName": "Max Players",
"Category": "Server Config",
"Description": "Set server maximum amount of players",
"Keywords": "Max Users",
"FieldName": "$MaxUsers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "MaxPlayers",
"IncludeInCommandLine": false,
"DefaultValue": "32",
"EnumValues": {}
},
{
"DisplayName": "Token",
"Category": "Server Config",
"Description": "Set the steam GSLTToken APPID 581320 [Get A GSLToken ID](https://steamcommunity.com/dev/managegameservers/)",
"Keywords": "Token",
"FieldName": "GSLTToken",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "GSLTToken",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {},
"SkipIfEmpty": true
},
{
"DisplayName": "Game Stats Token",
"Category": "Server Config",
"Description": "Set the game stats token for XP Gain [Get A GameStats Token ID](https://gamestats.sandstorm.game/)",
"Keywords": "Stats",
"FieldName": "GameStatsToken",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "GameStatsToken",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {},
"SkipIfEmpty": true
},
{
"DisplayName": "Password",
"Category": "Server Config",
"Description": "Sets a password for the server",
"Keywords": "Password",
"FieldName": "password",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "password",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {},
"SkipIfEmpty": true
},
{
"DisplayName": "RCON Password",
"Category": "Server Config",
"Description": "Password to connect to RCON. Change this after installing the server",
"Keywords": "RCON,password",
"FieldName": "$RemoteAdminPassword",
"InputType": "RandomPassword",
"IsFlagArgument": false,
"ParamFieldName": "$RemoteAdminPassword",
"IncludeInCommandLine": false,
"DefaultValue": "Password123"
},
{
"DisplayName": "Mutator",
"Category": "Server Config",
"Description": "Set server mutators (comma separated)",
"Keywords": "Mutator",
"FieldName": "mutators",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "mutators",
"IncludeInCommandLine": true,
"DefaultValue": "",
"EnumValues": {},
"Placeholder": "HotPotato,Vampirism",
"SkipIfEmpty": true
},
{
"DisplayName": "Rule Set",
"Category": "Server Config",
"Description": "Set the rules for the server",
"Keywords": "Rules",
"FieldName": "ruleset",
"InputType": "enum",
"IsFlagArgument": false,
"ParamFieldName": "ruleset",
"IncludeInCommandLine": true,
"DefaultValue": "",
"EnumValues": {
"": "None",
"CheckpointFrenzy": "Checkpoint Frenzy",
"CompetitiveFirefight": "Competitive Firefight",
"CompetitiveTheater": "Competitive Theater",
"MatchmakingCasual": "Matchmaking Casual",
"OfficialRules": "Official Rules"
},
"SkipIfEmpty": true
},
{
"DisplayName": "Mods Enabled",
"Category": "Server Config",
"Description": "Enables the server to use a Modlist",
"Keywords": "Mods",
"FieldName": "Mods_enabled",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "Mods_enabled",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {
"False": "",
"True": "-Mods -ModList=Mods"
}
},
{
"DisplayName": "Mod Travel To",
"Category": "Server Config",
"Description": "Set the Mod Travel to",
"Keywords": "Mods",
"FieldName": "ModDownloadTravelTo",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "ModDownloadTravelTo",
"IncludeInCommandLine": true,
"DefaultValue": "",
"EnumValues": {},
"Placeholder":"Canyon?Scenario=Scenario_Crossing_Checkpoint_Security?Lighting=Day",
"SkipIfEmpty": true
},
{
"DisplayName": "MOTD",
"Category": "Server Config",
"Description": "Set the server MOTD",
"Keywords": "MOTD",
"FieldName": "Motd",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "Motd",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {},
"SkipIfEmpty": true
},
{
"DisplayName": "Admin Players",
"Description": "A list of Steam64 IDs for players that are in-game admins. [Find your Steam64 ID](https://steamidfinder.com/)",
"FieldName": "AdminPlayers",
"Category": "Server Config",
"InputType": "list",
"Special": "listfile:./insurgencysandstorm/581330/Insurgency/Config/Server/Admins.txt"
},
{
"DisplayName": "Map Cycle",
"Description": "A List of map scenarios for the server to use",
"FieldName": "MapCycle",
"Category": "Server Config",
"InputType": "list",
"Special": "listfile:./insurgencysandstorm/581330/Insurgency/Config/Server/MapCycle.txt"
},
{
"DisplayName": "Mods",
"Description": "Define a list of Mods for the server to use.",
"FieldName": "Mods",
"Category": "Server Config",
"InputType": "list",
"Special": "listfile:./insurgencysandstorm/581330/Insurgency/Config/Server/Mods.txt"
},
{
"DisplayName": "Kill Feed Enabled",
"Category": "Game Mode",
"Description": "Is the kill feed enabled?",
"Keywords": "Kill Feed",
"FieldName": "bKillFeed",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.bKillFeed",
"DefaultValue": "False",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Kill Feed Spectator",
"Category": "Game Mode",
"Description": "Is the kill feed enabled for dedicated spectators and replays?",
"Keywords": "Kill Feed",
"FieldName": "bKillFeedSpectator",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.bKillFeedSpectator",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Display Killer Info",
"Category": "Game Mode",
"Description": "Show information about a death (killer, weapon) to the victim?",
"Keywords": "Kill Feed",
"FieldName": "bKillerInfo",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.bKillerInfo",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Kill Distance Reveal",
"Category": "Game Mode",
"Description": "Reveal distance of kills?",
"Keywords": "Kill Feed",
"FieldName": "bKillerInfoRevealDistance",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.bKillerInfoRevealDistance",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Team Kill Limit",
"Category": "Game Mode",
"Description": "Limit for the number of team kills one player can perform before being kicked.",
"Keywords": "Team",
"FieldName": "TeamKillLimit",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.TeamKillLimit",
"DefaultValue": "3",
"EnumValues": {}
},
{
"DisplayName": "Team Kill Grace Timer",
"Category": "Game Mode",
"Description": "Grace timer between team killing incidents.",
"Keywords": "Team",
"FieldName": "TeamKillGrace",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.TeamKillGrace",
"DefaultValue": "0.2",
"EnumValues": {}
},
{
"DisplayName": "Team Kill Reduce Time",
"Category": "Game Mode",
"Description": "How long until a player’s TK count reduces by 1.",
"Keywords": "Team",
"FieldName": "TeamKillReduceTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.TeamKillReduceTime",
"DefaultValue": "90",
"EnumValues": {}
},
{
"DisplayName": "Can the dead speak?",
"Category": "Game Mode",
"Description": "Can alive players see messages from the dead?",
"Keywords": "Voice",
"FieldName": "bDeadSay",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.bDeadSay",
"DefaultValue": "False",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Can the dead speak to teammates?",
"Category": "Game Mode",
"Description": "Can alive players see messages from dead teammates using team-only chat?",
"Keywords": "Voice",
"FieldName": "bDeadSayTeam",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.bDeadSayTeam",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Allow Dead Players Voice Chat?",
"Category": "Game Mode",
"Description": "Can alive players hear voice chat from dead players?",
"Keywords": "Voice",
"FieldName": "bVoiceAllowDeadChat",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.bVoiceAllowDeadChat",
"DefaultValue": "False",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Allow enemies to hear proximity chat?",
"Category": "Game Mode",
"Description": "Can proximity voice chat be heard by enemies?",
"Keywords": "Radio",
"FieldName": "bVoiceEnemyHearsLocal",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.bVoiceEnemyHearsLocal",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Allow radio chat to broadcast on local channel",
"Category": "Game Mode",
"Description": "Can radio chat also broadcast on the local channel?",
"Keywords": "Radio",
"FieldName": "bVoiceRadioBroadcastLocal",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.bVoiceRadioBroadcastLocal",
"DefaultValue": "False",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Objective Capture Time",
"Category": "Game Mode",
"Description": "How long it takes to capture territorial objectives.",
"Keywords": "Time",
"FieldName": "ObjectiveCaptureTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.ObjectiveCaptureTime",
"DefaultValue": "30",
"EnumValues": {}
},
{
"DisplayName": "Objective Reset Time",
"Category": "Game Mode",
"Description": "How long objective progress decays with no one on the point. Negative value disables.",
"Keywords": "Time",
"FieldName": "ObjectiveResetTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.ObjectiveResetTime",
"DefaultValue": "-1",
"EnumValues": {}
},
{
"DisplayName": "Objective Speed Up Time",
"Category": "Game Mode",
"Description": "Additional capture speed-up for each player on the point.",
"Keywords": "Time",
"FieldName": "ObjectiveSpeedup",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.ObjectiveSpeedup",
"DefaultValue": "0.25",
"EnumValues": {}
},
{
"DisplayName": "Objective Speed Up Players",
"Category": "Game Mode",
"Description": "Maximum players taken into account for capture speed-up.",
"Keywords": "Time,Speed",
"FieldName": "ObjectiveMaxSpeedupPlayers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSGameMode.ObjectiveMaxSpeedupPlayers",
"DefaultValue": "4",
"EnumValues": {}
},
{
"DisplayName": "Kill Feed Game Starting Intermission time",
"Category": "Game Mode",
"Description": "How long after a round starts before showing a kill feed",
"Keywords": "Time,Speed",
"FieldName": "bKillFeedGameStartingIntermissionTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.bKillFeedGameStartingIntermissionTime",
"DefaultValue": "5",
"EnumValues": {}
},
{
"DisplayName": "Game Start Intermission Timer",
"Category": "Multiplayer Mode",
"Description": "The additional time to wait for additional players during the starting intermission.",
"Keywords": "Time",
"FieldName": "GameStartingIntermissionTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.GameStartingIntermissionTime",
"DefaultValue": "5",
"EnumValues": {}
},
{
"DisplayName": "Win Time",
"Category": "Multiplayer Mode",
"Description": "How long players are frozen before transitioning to the round intermission screen.",
"Keywords": "Time",
"FieldName": "WinTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.WinTime",
"DefaultValue": "5",
"EnumValues": {}
},
{
"DisplayName": "Time Spent on Intermision Screen.",
"Category": "Multiplayer Mode",
"Description": "How long is spent on the intermission screen.",
"Keywords": "Time",
"FieldName": "PostRoundTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.PostRoundTime",
"DefaultValue": "15",
"EnumValues": {}
},
{
"DisplayName": "Time Spent inbetween rounds",
"Category": "Multiplayer Mode",
"Description": "How much time is spent between last post round and game over.",
"Keywords": "Time",
"FieldName": "PostGameTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.PostGameTime",
"DefaultValue": "15",
"EnumValues": {}
},
{
"DisplayName": "Auto Assign Teams?",
"Category": "Multiplayer Mode",
"Description": "Should teams be assigned on connect?",
"Keywords": "Team",
"FieldName": "bAutoAssignTeams",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.bAutoAssignTeams",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Allow Friendly Fire?",
"Category": "Multiplayer Mode",
"Description": "Enables friendly fire.",
"Keywords": "Team",
"FieldName": "bAllowFriendlyFire",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.bAllowFriendlyFire",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Friendly Fire Damage Modifier",
"Category": "Multiplayer Mode",
"Description": "Damage modifier for friendly fire",
"Keywords": "Damage",
"FieldName": "FriendlyFireModifier",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.FriendlyFireModifier",
"DefaultValue": "0.2",
"EnumValues": {}
},
{
"DisplayName": "Friendly Fire Reflect Damage",
"Category": "Multiplayer Mode",
"Description": "Damage modifier for friendly fire that is mirrored back at the attacker.",
"Keywords": "Damage",
"FieldName": "FriendlyFireReflect",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.FriendlyFireReflect",
"DefaultValue": "0",
"EnumValues": {}
},
{
"DisplayName": "Auto Balance Teams",
"Category": "Multiplayer Mode",
"Description": "Enables auto team balancing.",
"Keywords": "Team",
"FieldName": "bAutoBalanceTeams",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.bAutoBalanceTeams",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Auto Balance Delay",
"Category": "Multiplayer Mode",
"Description": "How long to wait after detecting unbalanced teams.",
"Keywords": "Team",
"FieldName": "AutoBalanceDelay",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.AutoBalanceDelay",
"DefaultValue": "10",
"EnumValues": {}
},
{
"DisplayName": "Map Voting",
"Category": "Multiplayer Mode",
"Description": "Enabled map voting at the end of each game.",
"Keywords": "Map,Voting",
"FieldName": "bMapVoting",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.bMapVoting",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Enable Map Cycle",
"Category": "Multiplayer Mode",
"Description": "Enables the use of the map cycle. If disabled, the current map loops indefinitely.",
"Keywords": "Map",
"FieldName": "bUseMapCycle",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.bUseMapCycle",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Allow Voice During Intermission?",
"Category": "Multiplayer Mode",
"Description": "Allow both teams to talk to each other between rounds.",
"Keywords": "Voice",
"FieldName": "bVoiceIntermissionAllowAll",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.bVoiceIntermissionAllowAll",
"DefaultValue": "True",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Idle Kick Timer",
"Category": "Multiplayer Mode",
"Description": "How long a player can be idle for before being kicked.",
"Keywords": "Time",
"FieldName": "IdleLimit",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.IdleLimit",
"DefaultValue": "150",
"EnumValues": {}
},
{
"DisplayName": "Low Reinforcements Idle Timer",
"Category": "Multiplayer Mode",
"Description": "How long a player can idle for when there are low reinforcements.",
"Keywords": "Time",
"FieldName": "IdleLimitLowReinforcements",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.IdleLimitLowReinforcements",
"DefaultValue": "90",
"EnumValues": {}
},
{
"DisplayName": "Check For Idle Players Timer",
"Category": "Multiplayer Mode",
"Description": "How frequently to check for idle players.",
"Keywords": "Time",
"FieldName": "IdleCheckFrequency",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.IdleCheckFrequency",
"DefaultValue": "30",
"EnumValues": {}
},
{
"DisplayName": "Allow 3rd Person Spectate?",
"Category": "Multiplayer Mode",
"Description": "Can Players use 3rd person spectator mode?",
"Keywords": "Spectate",
"FieldName": "bAllowThirdPersonSpectate",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.bAllowThirdPersonSpectate",
"DefaultValue": "False",
"EnumValues": {
"False": "False",
"True": "True"
}
},
{
"DisplayName": "Minimum Players to start the game.",
"Category": "Multiplayer Mode",
"Description": "Minimum players required on each team to start the game.",
"Keywords": "Players, Minimum",
"FieldName": "MinimumPlayers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.MinimumPlayers",
"DefaultValue": "1",
"EnumValues": {}
},
{
"DisplayName": "Round Limit",
"Category": "Multiplayer Mode",
"Description": "Maximum number of rounds to play.",
"Keywords": "Rounds,Maximum",
"FieldName": "RoundLimit",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.RoundLimit",
"DefaultValue": "3",
"EnumValues": {}
},
{
"DisplayName": "Win Limit",
"Category": "Multiplayer Mode",
"Description": "Number of rounds required for game victory.",
"Keywords": "Rounds",
"FieldName": "WinLimit",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.WinLimit",
"DefaultValue": "1",
"EnumValues": {}
},
{
"DisplayName": "Game Time Limit",
"Category": "Multiplayer Mode",
"Description": "Number of rounds required for game victory.",
"Keywords": "Time",
"FieldName": "GameTimeLimit",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.GameTimeLimit",
"DefaultValue": "-1",
"EnumValues": {}
},
{
"DisplayName": "Pre Round Limit",
"Category": "Multiplayer Mode",
"Description": "Amount of “freeze time” at the start of a round.",
"Keywords": "Time",
"FieldName": "PreRoundLimit",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.PreRoundLimit",
"DefaultValue": "10",
"EnumValues": {}
},
{
"DisplayName": "Round Time",
"Category": "Multiplayer Mode",
"Description": "Duration of the round.",
"Keywords": "Time",
"FieldName": "RoundTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.RoundTime",
"DefaultValue": "1080",
"EnumValues": {}
},
{
"DisplayName": "Overtime",
"Category": "Multiplayer Mode",
"Description": "Amount of overtime given when there is an objective being contested after the round timer expires.",
"Keywords": "Time",
"FieldName": "OverTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.OverTime",
"DefaultValue": "60",
"EnumValues": {}
},
{
"DisplayName": "Team Switch Time",
"Category": "Multiplayer Mode",
"Description": "Minimum additional time spent between team switches.",
"Keywords": "Time",
"FieldName": "TeamSwitchTime",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.TeamSwitchTime",
"DefaultValue": "10",
"EnumValues": {}
},
{
"DisplayName": "Switch Team Every Round",
"Category": "Multiplayer Mode",
"Description": "How often to switch teams. 0 = never, 1 = every round, 2 = every other round, etc.",
"Keywords": "Team,Switch",
"FieldName": "SwitchTeamsEveryRound",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.SwitchTeamsEveryRound",
"DefaultValue": "1",
"EnumValues": {}
},
{
"DisplayName": "Allow Players to Switch Teams",
"Category": "Multiplayer Mode",
"Description": "Allow players to switch to the other team?",
"Keywords": "Team,Switch",
"FieldName": "bAllowPlayerTeamSelect",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "/Script/Insurgency.INSMultiplayerMode.bAllowPlayerTeamSelect",
"DefaultValue": "True",