-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathplaylists.info
1516 lines (1438 loc) · 31.7 KB
/
playlists.info
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
version 504
rule party_gameStartTimerLength 5
rule scr_xpscale 1
rule scr_restxp_enable 0
rule requireOpenNat 1
rule party_minlobbytime 30
rule session_advertiseFailedSearchCount 10
rule com_maxfps 0
rule sv_network_fps 100
set scr_airdrop_nuke 0
set scr_airdrop_mega_nuke 0
set scr_nuketimer 10
set bg_fallDamageMaxHeight 300
set bg_fallDamageMinHeight 128
set bg_forceDualWield 0
set bg_forceExplosiveBullets 0
set bg_viewBobMax 8
set bullet_penetration_enabled 1
set com_timescale 1
set friction 5.5
set g_synchronousClients 0
set jump_height 39
set jump_ladderPushVel 128
set jump_slowdownEnable 1
set mantle_check_radius 0.1
set mantle_check_angle 60
set mantle_enable 1
set player_backSpeedScale 1
set player_breath_fire_delay 0
set player_breath_gasp_lerp 6
set player_breath_gasp_scale 4.5
set player_breath_gasp_time 1
set player_breath_hold_lerp 1
set player_breath_hold_time 4.5
set player_dmgtimer_minScale 0
set player_footstepsThreshhold 60
set player_lastStandCrawlSpeedScale 0.2
set player_lastStandDebug 0
set player_sprintForwardMinimum 105
set player_sprintMinTime 1
set player_sprintRechargePause 0
set player_sprintSpeedScale 1.5
set player_sprintTime 4
set player_sprintUnlimited 0
set player_strafeSpeedScale 1
set player_view_pitch_down 70
set player_view_pitch_up 70
set sv_clientSideBullets 1
set timescale 1
set cg_drawThroughWalls 0
set compassSize 1
set hud_enable 1
set bg_aimSpreadMoveSpeedThreshold 11
set bg_maxGrenadeIndicatorSpeed 100
set mantle_check_range 20
set jump_spreadAdd 64
set player_adsExitDelay 0
set player_runbkThreshhold 60
set player_sprintCameraBob 0.5
set player_sprintStrafeSpeedScale 0.667
set player_sprintThreshhold 185
set stopspeed 100
set cg_chatWithOtherTeams 0
set compassEnemyFootstepEnabled 1
set compassRadarUpdateTime 4.0
set compassFastRadarUpdateTime 2.0
set r_znear 4.0
set r_znear_depthhack 0.1
set developer 0
set cg_drawShellshock 1
set motionTrackerRange 1600.0
set motionTrackerSweepInterval 3.0
set motionTrackerSweepAngle 90.0
set cg_scoreboardpingtext 1
set cg_scoreboardpinggraph 0
gametype tdm
name english "Team Deathmatch"
name french "Match à mort par équipe"
name italian "Deathmatch a squadre"
name german "Team-Deathmatch"
name spanish "Duelo por equipos"
name polish ""
name russian ""
name japanese ""
script war
teambased
gametype 3p_tdm
name english "3rd Person Team Deathmatch"
name french "Match à mort équipe 3e personne"
name italian "Deathmatch a squadre 3° P."
name german "Externe Ansicht - Team-Deathmatch"
name spanish "Duelo por equipos en TP"
name polish ""
name russian ""
name japanese ""
script war
teambased
rule scr_thirdperson 1
rule scr_war_scorelimit 5000
gametype hc_tdm
name english "Hardcore Team Deathmatch"
name french "Match à mort par équipe Hardcore."
name italian "Deathmatch a squadre - veterano"
name german "Hardcore-Team-Deathmatch"
name spanish "Duelo por equipos extremo"
name polish ""
name russian ""
name japanese ""
script war
teambased
hardcore
rule scr_team_fftype 1
rule scr_player_healthregentime 0
rule scr_player_maxhealth 30
rule scr_war_playerrespawndelay 2
rule scr_war_waverespawndelay 0
rule scr_game_allowkillcam 1
rule scr_hardcore 1
rule ui_hud_hardcore 1
rule g_hardcore 1
// ****DOMINATION****
gametype dom
name english "Domination"
name french "Domination"
name italian "Dominio"
name german "Herrschaft"
name spanish "Dominio"
name polish ""
name russian ""
name japanese ""
script dom
teambased
gametype hc_dom
name english "Hardcore Domination"
script dom
teambased
hardcore
rule scr_hardcore 1
rule scr_player_healthregentime 0
rule scr_player_maxhealth 30
rule scr_game_allowkillcam 1
rule ui_hud_hardcore 1
rule g_hardcore 1
rule koth_spawntime 30
rule scr_koth_scorelimit 200
rule scr_koth_timelimit 20
gametype ric_dom
name english "Hardcore Ricochet: Domination"
script dom
teambased
hardcore
rule scr_hardcore 1
rule scr_player_healthregentime 0
rule scr_team_fftype 2
rule scr_player_maxhealth 30
rule scr_game_allowkillcam 1
rule ui_hud_hardcore 1
rule g_hardcore 1
rule koth_spawntime 30
rule scr_koth_scorelimit 200
rule scr_koth_timelimit 20
gametype 3p_dom
name english "3rd Person Domination"
name french "Domination 3e personne"
name italian "Dominio 3° P."
name german "Externe Ansicht - Herrschaft"
name spanish "Dominio en TP"
name polish ""
name russian ""
name japanese ""
script dom
teambased
rule scr_thirdperson 1
// ****HEADQUARTERS****
gametype hq_pro
name english "Headquarters Pro"
name french "Quartier général Pro"
name italian "QG Pro"
name german "Hauptquartier Pro"
name spanish "Cuarteles (Pro)"
name polish ""
name russian ""
name japanese ""
script koth
teambased
rule koth_spawntime 30
rule scr_koth_scorelimit 200
rule scr_koth_timelimit 20
gametype 3p_hq_pro
name english "3rd Person Headquarters Pro"
name french "Quartier général Pro 3e personne"
name italian "QG Pro 3° P."
name german "Externe Ansicht - Hauptquartier Pro"
name spanish "Cuarteles (Pro) en TP"
name polish ""
name russian ""
name japanese ""
script koth
teambased
rule koth_spawntime 30
rule scr_koth_scorelimit 200
rule scr_thirdperson 1
rule scr_koth_timelimit 20
gametype ric_hq_pro
name english "Hardcore Ricochet: HQ Pro"
name french "Ricochet Hardcore : Quartier général Pro"
name italian "Ricochet veterano: QG Pro"
name german "Hardcore-Querschläger: HQ Pro"
name spanish "Extremo con rebote: Cuarteles (Pro)"
name polish ""
name russian ""
name japanese ""
script koth
teambased
hardcore
rule scr_hardcore 1
rule scr_player_healthregentime 0
rule scr_team_fftype 2
rule scr_player_maxhealth 30
rule scr_game_allowkillcam 1
rule ui_hud_hardcore 1
rule g_hardcore 1
rule koth_spawntime 30
rule scr_koth_scorelimit 200
rule scr_koth_timelimit 20
// ****OITC****
gametype oitc
name english "One in the Chamber"
script oitc
rule scr_dm_numlives 3
rule scr_player_maxhealth 20
rule scr_game_allowkillcam 1
rule ui_showEndOfGame 1
rule g_hardcore 1
// ****SABOTAGE****
gametype sab
name english "Sabotage"
name french "Sabotage"
name italian "Sabotaggio"
name german "Sabotage"
name spanish "Sabotaje"
name polish ""
name russian ""
name japanese ""
script sab
teambased
rule scr_sab_bombtimer 45
gametype 3p_sab
name english "3rd Person Sabotage"
name french "Sabotage 3e personne"
name italian "Sabotaggio 3° P."
name german "Externe Ansicht: Sabotage"
name spanish "Sabotaje en TP"
name polish ""
name russian ""
name japanese ""
script sab
teambased
rule scr_thirdperson 1
rule scr_sab_bombtimer 45
gametype hc_sab //Created for hardcore sab
name english "Hardcore Sabotage"
script sab
teambased
hardcore
rule scr_sab_bombtimer 30
rule scr_team_fftype 1
rule scr_player_healthregentime 0
rule scr_player_maxhealth 30
rule scr_war_waverespawndelay 15
rule scr_game_allowkillcam 1
rule scr_hardcore 1
rule ui_hud_hardcore 1
rule g_hardcore 1
// ****SEARCH AND DESTROY****
gametype sd
name english "Search and Destroy"
name french "Recherche et destruction"
name italian "Cerca e distruggi"
name german "Suchen und Zerstören"
name spanish "Buscar y destruir"
name polish ""
name russian ""
name japanese ""
script sd
teambased
gametype hc_sd
name english "Hardcore Search and Destroy"
name french "Recherche et destruction Hardcore"
name italian "Cerca e distruggi - veterano"
name german "Hardcore-Suchen und Zerstören"
name spanish "Buscar y destruir extremo"
name polish ""
name russian ""
name japanese ""
script sd
teambased
hardcore
rule scr_team_fftype 1
rule scr_player_maxhealth 30
rule scr_player_healthregentime 0
rule scr_game_allowkillcam 1
rule scr_hardcore 1
rule ui_hud_hardcore 1
rule g_hardcore 1
gametype ric_sd
name english "Hardcore Search and Destroy"
name french "Recherche et destruction Hardcore"
name italian "Cerca e distruggi - veterano"
name german "Hardcore-Suchen und Zerstören"
name spanish "Buscar y destruir extremo"
name polish ""
name russian ""
name japanese ""
script sd
teambased
hardcore
rule scr_team_fftype 2
rule scr_player_maxhealth 30
rule scr_player_healthregentime 0
rule scr_game_allowkillcam 1
rule scr_hardcore 1
rule ui_hud_hardcore 1
rule g_hardcore 1
gametype 3p_sd
name english "3rd Person Search and Destroy"
name french "Rech. & destr. 3e personne"
name italian "Cerca e Distruggi 3° P."
name german "Externe Ansicht - Suchen und Zerstören"
name spanish "Buscar y destruir en TP"
name polish ""
name russian ""
name japanese ""
script sd
teambased
rule scr_thirdperson 1
// ****ARENA****
gametype arena
name english "Arena"
name french "Arène"
name italian "Arena"
name german "Arena"
name spanish "Arena"
name polish ""
name russian ""
name japanese ""
script arena
teambased
// ****Demolition****
gametype dd
name english "Demolition"
name french "Démolition"
name italian "Demolizione"
name german "Sprengkommando"
name spanish "Demolición"
name polish ""
name russian ""
name japanese ""
script dd
teambased
gametype 3p_dd
name english "3rd Person Demolition"
name french "Démolition 3e personne"
name italian "Demolizione 3° P."
name german "Externe Ansicht - Sprengkommando"
name spanish "Demolición en TP"
name polish ""
name russian ""
name japanese ""
script dd
teambased
rule scr_thirdperson 1
gametype ric_dd
name english "Hardcore Ricochet: Demolition"
script dd
teambased
hardcore
rule scr_hardcore 1
rule scr_player_healthregentime 0
rule scr_team_fftype 2
rule scr_player_maxhealth 30
rule scr_game_allowkillcam 1
rule ui_hud_hardcore 1
rule g_hardcore 1
rule koth_spawntime 30
rule scr_koth_scorelimit 200
rule scr_koth_timelimit 20
gametype hc_dd //Created for hardcore demolition
name english "Hardcore Demolition"
script dd
teambased
hardcore
rule scr_team_fftype 1
rule scr_player_healthregentime 0
rule scr_player_maxhealth 30
rule scr_war_waverespawndelay 15
rule scr_game_allowkillcam 1
rule scr_hardcore 1
rule ui_hud_hardcore 1
rule g_hardcore 1
// ****FREE FOR ALL****
gametype ffa
name english "Free-for-all"
name french "Mêlée générale"
name italian "Tutti contro tutti"
name german "Frei für alle"
name spanish "Duelo a muerte"
name polish ""
name russian ""
name japanese ""
script dm
gametype hc_ffa
name english "Hardcore Free-for-all"
name french "Mêlée générale (Hardcore)"
name italian "Tutti contro tutti - veterano"
name german "Hardcore-Frei für alle"
name spanish "Duelo a muerte extremo"
name polish ""
name russian ""
name japanese ""
script dm
hardcore
rule scr_player_healthregentime 0
rule scr_player_maxhealth 30
rule scr_game_allowkillcam 1
rule set scr_dm_playerrespawndelay 7
gametype cage_ffa
name english "Cage Match"
script dm
rule scr_dm_scorelimit 1000
rule scr_dm_timelimit 5
rule scr_xpscale 4
// ****CAPTURE THE FLAG****
gametype ctf
name english "Capture the Flag"
name french "Capture du drapeau"
name italian "Cattura la bandiera"
name german "Capture the Flag"
name spanish "Tomar la bandera"
name polish ""
name russian ""
name japanese ""
script ctf
teambased
gametype ric_ctf
name english "Hardcore Ricochet CTF"
script ctf
teambased
hardcore
rule scr_team_fftype 2
rule scr_player_maxhealth 30
rule scr_player_healthregentime 0
rule scr_game_allowkillcam 1
rule scr_hardcore 1
rule ui_hud_hardcore 1
rule g_hardcore 1
gametype 3p_ctf
name english "3rd Person Capture the Flag"
name polish ""
name russian ""
name japanese ""
script ctf
teambased
rule scr_thirdperson 1
gametype hc_ctf
name english "Hardcore Capture the Flag"
script ctf
teambased
hardcore
rule scr_team_fftype 1
rule scr_player_healthregentime 0
rule scr_player_maxhealth 30
rule scr_game_allowkillcam 1
rule scr_hardcore 1
rule ui_hud_hardcore 1
rule g_hardcore 1
gametype oneflag
name english "One-Flag CTF"
name french "CDD - 1 drapeau"
name italian "CLB a una bandiera"
name german "CTF - Eine Flagge"
name spanish "TLB 1 bandera"
name polish ""
name russian ""
name japanese ""
script oneflag
teambased
rule scr_oneflag_roundswitch 1
// ****Global Thermonuclear War****
gametype nuke
name english "Global Thermonuclear War"
name french "Guerre thermonucléaire mondiale"
name italian "Guerra termonucleare globale"
name german "Thermonuklearer Krieg"
name spanish "Guerra termonuclear global"
name polish ""
name russian ""
name japanese ""
script gtnw
teambased
rule scr_gtnw_waverespawndelay 1
rule scr_gtnw_promode 0
rule scr_gtnw_timelimit 6
// PLAYLIST DATA
playlist 1 // tdm gametype
name english "Team Deathmatch"
description english "Straight up Team Deathmatch.\nUse teamwork to kill enemy players and reach the score limit.\n\n__________\nPlayers: 8-12"
unlockxp 0
maxparty 6
rule party_minplayers 8
rule party_maxplayers 12
rule party_matchedplayercount 4
mp_afghan,tdm,4
mp_boneyard,tdm,4
mp_brecourt,tdm,4
mp_checkpoint,tdm,4
mp_derail,tdm,4
mp_estate,tdm,4
mp_favela,tdm,4
mp_highrise,tdm,4
mp_invasion,tdm,4
mp_nightshift,tdm,4
mp_quarry,tdm,4
mp_rundown,tdm,4
mp_rust,tdm,1
mp_subbase,tdm,4
mp_terminal,tdm,4
mp_underpass,tdm,4
mp_compact,tdm,4
mp_complex,tdm,4
mp_crash,tdm,4
mp_overgrown,tdm,4
mp_storm,tdm,4
mp_strike,tdm,4
mp_vacant,tdm,4
mp_fuel2,tdm,4
mp_abandon,tdm,4
mp_trailerpark,tdm,4
playlist 2 // hc_tdm hc_sd gametype
name english "Hardcore Team Deathmatch"
description english "Team Deathmatch with:\n\n\n__________\nPlayers:8-12\nLimited HUD\nExtra bullet damage\nFriendly Fire is ON"
unlockxp 0
maxparty 6
rule party_minplayers 8
rule party_maxplayers 12
rule party_matchedplayercount 4
rule party_readypercentrequired 0
mp_afghan,hc_tdm,1
mp_boneyard,hc_tdm,1
mp_brecourt,hc_tdm,1
mp_checkpoint,hc_tdm,1
mp_derail,hc_tdm,1
mp_estate,hc_tdm,1
mp_favela,hc_tdm,1
mp_highrise,hc_tdm,1
mp_invasion,hc_tdm,1
mp_nightshift,hc_tdm,1
mp_quarry,hc_tdm,1
mp_rundown,hc_tdm,1
mp_subbase,hc_tdm,1
mp_terminal,hc_tdm,1
mp_underpass,hc_tdm,1
mp_compact,hc_tdm,1
mp_complex,hc_tdm,1
mp_crash,hc_tdm,1
mp_overgrown,hc_tdm,1
mp_storm,hc_tdm,1
mp_strike,hc_tdm,1
mp_vacant,hc_tdm,1
mp_fuel2,hc_tdm,1
mp_abandon,hc_tdm,1
mp_trailerpark,hc_tdm,1
playlist 3 // ffa gametype
name english "Free-for-all"
description english "Straight up Deathmatch. Every man for himself. Kill everyone.\n\n__________\nPlayers:4-8"
unlockxp 0
maxparty 1
rule party_minplayers 4
rule party_maxplayers 8
rule party_matchedplayercount 4
rule scr_dm_scorelimit 1500
rule cg_everyonehearseveryone 1
mp_afghan,ffa,4
mp_boneyard,ffa,4
mp_brecourt,ffa,4
mp_checkpoint,ffa,4
mp_estate,ffa,4
mp_favela,ffa,4
mp_highrise,ffa,4
mp_invasion,ffa,4
mp_nightshift,ffa,4
mp_quarry,ffa,4
mp_rundown,ffa,4
mp_rust,ffa,1
mp_subbase,ffa,4
mp_terminal,ffa,4
mp_underpass,ffa,4
mp_compact,ffa,4
mp_complex,ffa,4
mp_crash,ffa,4
mp_overgrown,ffa,4
mp_storm,ffa,4
mp_strike,ffa,4
mp_vacant,ffa,4
mp_fuel2,ffa,4
mp_abandon,ffa,4
mp_trailerpark,ffa,4
playlist 4 // ctf gametype
name english "Hardcore Free-for-all"
description english "Straight up Deathmatch. Every man for himself. Kill everyone.\n\n__________\nPlayers:4-12\nLimited HUD\nExtra bullet damage"
unlockxp 0
maxparty 1
rule party_minplayers 2
rule party_maxplayers 8
rule party_matchedplayercount 2
rule scr_dm_scorelimit 1500
rule cg_everyonehearseveryone 1
mp_afghan,hc_ffa,4
mp_boneyard,hc_ffa,4
mp_brecourt,hc_ffa,4
mp_checkpoint,hc_ffa,4
//mp_derail,hc_ffa,4
mp_estate,hc_ffa,8
mp_favela,hc_ffa,4
mp_highrise,hc_ffa,4
mp_invasion,hc_ffa,4
mp_nightshift,hc_ffa,8
mp_quarry,hc_ffa,8
mp_rundown,hc_ffa,4
mp_rust,hc_ffa,4
mp_subbase,hc_ffa,4
mp_terminal,hc_ffa,8
mp_underpass,hc_ffa,4
mp_compact,hc_ffa,8
mp_complex,hc_ffa,8
mp_crash,hc_ffa,8
mp_overgrown,hc_ffa,8
mp_storm,hc_ffa,8
mp_strike,hc_ffa,8
mp_vacant,hc_ffa,8
mp_fuel2,hc_ffa,8
mp_abandon,hc_ffa,8
mp_trailerpark,hc_ffa,8
playlist 5
name english "One in the Chamber"
description english "One bullet. Three lives. No respawning. Will you succeed at this new game type?\n\n__________\nPlayers:8-14"
unlockxp 0
maxparty 1
rule party_minplayers 8
rule party_maxplayers 14
rule party_matchedplayercount 1
mp_boneyard,oitc,1
mp_brecourt,oitc,1
mp_checkpoint,oitc,1
mp_favela,oitc,1
mp_highrise,oitc,1
mp_invasion,oitc,1
mp_nightshift,oitc,1
mp_quarry,oitc,1
mp_rundown,oitc,1
mp_subbase,oitc,1
mp_terminal,oitc,1
mp_compact,oitc,1
mp_complex,oitc,1
mp_crash,oitc,1
mp_overgrown,oitc,1
mp_storm,oitc,1
mp_strike,oitc,1
mp_vacant,oitc,1
mp_abandon,oitc,1
mp_trailerpark,oitc,1
playlist 6 // big_tdm and dom gametype
name english "Ground War"
description english "Big team games - Team Deathmatch, Domination and Search and Destroy.\n\n__________\nPlayers:12-18"
unlockxp 0
maxparty 9
rule party_minplayers 12
rule party_maxplayers 18
rule party_matchedplayercount 4
rule scr_war_scorelimit 10000
mp_afghan,dom,1
mp_boneyard,dom,1
mp_brecourt,dom,1
mp_checkpoint,dom,1
mp_derail,dom,1
mp_estate,dom,1
mp_favela,dom,1
mp_highrise,dom,1
mp_invasion,dom,1
mp_nightshift,dom,1
mp_quarry,dom,1
mp_rundown,dom,1
mp_subbase,dom,1
mp_terminal,dom,1
mp_underpass,dom,1
mp_afghan,tdm,1
mp_boneyard,tdm,1
mp_brecourt,tdm,1
mp_checkpoint,tdm,1
mp_derail,tdm,1
mp_estate,tdm,1
mp_favela,tdm,1
mp_highrise,tdm,1
mp_invasion,tdm,1
mp_nightshift,tdm,1
mp_quarry,tdm,1
mp_rundown,tdm,1
mp_subbase,tdm,1
mp_terminal,tdm,1
mp_underpass,tdm,1
mp_compact,tdm,1
mp_complex,tdm,1
mp_crash,tdm,1
mp_overgrown,tdm,1
mp_storm,tdm,1
mp_compact,dom,1
mp_complex,dom,1
mp_crash,dom,1
mp_overgrown,dom,1
mp_storm,dom,1
mp_strike,tdm,1
mp_vacant,tdm,1
mp_fuel2,tdm,1
mp_abandon,tdm,1
mp_trailerpark,tdm,1
mp_strike,dom,1
mp_vacant,dom,1
mp_fuel2,dom,1
mp_abandon,dom,1
mp_trailerpark,dom,1
playlist 7 // tdm gametype
name english "Team Tactical"
description english "Team based games with Team Deathmatch, Domination, Capture the Flag, Demolition, Sabotage, Search and Destroy, and Headquarters Pro.\n\n__________\nPlayers:6-12"
unlockxp 0
maxparty 6
rule party_minplayers 6
rule party_maxplayers 12
rule party_matchedplayercount 4
rule scr_war_scorelimit 5000
mp_afghan,tdm,1
mp_boneyard,tdm,1
mp_estate,tdm,1
mp_favela,tdm,1
mp_highrise,tdm,1
mp_rust,tdm,1
mp_subbase,tdm,1
mp_terminal,tdm,1
mp_afghan,ctf,1
mp_boneyard,ctf,1
mp_estate,ctf,1
mp_favela,ctf,1
mp_highrise,ctf,1
mp_rust,ctf,1
mp_subbase,ctf,1
mp_terminal,ctf,1
mp_afghan,dom,1
mp_boneyard,dom,1
mp_estate,dom,1
mp_favela,dom,1
mp_highrise,dom,1
mp_rust,dom,1
mp_subbase,dom,1
mp_terminal,dom,1
mp_afghan,dd,1
mp_boneyard,dd,1
mp_estate,dd,1
mp_favela,dd,1
mp_highrise,dd,1
mp_rust,dd,1
mp_subbase,dd,1
mp_terminal,dd,1
mp_compact,tdm,1
mp_complex,tdm,1
mp_crash,tdm,1
mp_overgrown,tdm,1
mp_storm,tdm,1
mp_compact,ctf,1
mp_complex,ctf,1
mp_crash,ctf,1
mp_overgrown,ctf,1
mp_storm,ctf,1
mp_compact,dom,1
mp_complex,dom,1
mp_crash,dom,1
mp_overgrown,dom,1
mp_storm,dom,1
mp_compact,dd,1
mp_complex,dd,1
mp_crash,dd,1
mp_overgrown,dd,1
mp_storm,dd,1
mp_strike,tdm,1
mp_vacant,tdm,1
mp_fuel2,tdm,1
mp_abandon,tdm,1
mp_trailerpark,tdm,1
mp_strike,ctf,1
mp_vacant,ctf,1
mp_fuel2,ctf,1
mp_abandon,ctf,1
mp_trailerpark,ctf,1
mp_strike,dom,1
mp_vacant,dom,1
mp_fuel2,dom,1
mp_abandon,dom,1
mp_trailerpark,dom,1
mp_strike,dd,1
mp_vacant,dd,1
mp_fuel2,dd,1
mp_abandon,dd,1
mp_trailerpark,dd,1
mp_afghan,sd,1
mp_boneyard,sd,1
mp_brecourt,sd,1
mp_checkpoint,sd,1
mp_derail,sd,1
mp_estate,sd,1
mp_favela,sd,1
mp_highrise,sd,1
mp_invasion,sd,1
mp_nightshift,sd,1
mp_quarry,sd,1
mp_rundown,sd,1
mp_subbase,sd,1
mp_terminal,sd,1
mp_underpass,sd,1
mp_compact,sd,1
mp_complex,sd,1
mp_crash,sd,1
mp_overgrown,sd,1
mp_storm,sd,1
mp_strike,sd,1
mp_vacant,sd,1
mp_fuel2,sd,1
mp_abandon,sd,1
mp_trailerpark,sd,1
mp_afghan,hq_pro,1
mp_boneyard,hq_pro,1
mp_brecourt,hq_pro,1
mp_checkpoint,hq_pro,1
mp_derail,hq_pro,1
mp_estate,hq_pro,1
mp_favela,hq_pro,1
mp_highrise,hq_pro,1
mp_invasion,hq_pro,1
mp_nightshift,hq_pro,1
mp_quarry,hq_pro,1
mp_rundown,hq_pro,1
mp_subbase,hq_pro,1
mp_terminal,hq_pro,1
mp_underpass,hq_pro,1
mp_compact,hq_pro,1
mp_complex,hq_pro,1
mp_crash,hq_pro,1
mp_overgrown,hq_pro,1
mp_storm,hq_pro,1
mp_strike,hq_pro,1
mp_vacant,hq_pro,1
mp_fuel2,hq_pro,1
mp_abandon,hq_pro,1
mp_trailerpark,hq_pro,1
mp_afghan,sab,1
mp_boneyard,sab,1
mp_brecourt,sab,1
mp_checkpoint,sab,1
mp_derail,sab,1
mp_estate,sab,1
mp_favela,sab,1
mp_highrise,sab,1
mp_invasion,sab,1
mp_nightshift,sab,1
mp_quarry,sab,1
mp_rundown,sab,1
mp_subbase,sab,1
mp_terminal,sab,1
mp_underpass,sab,1
mp_compact,sab,1
mp_complex,sab,1
mp_crash,sab,1
mp_overgrown,sab,1
mp_storm,sab,1
mp_strike,sab,1
mp_vacant,sab,1
mp_fuel2,sab,1
mp_abandon,sab,1
mp_trailerpark,sab,1
playlist 8 // tdm gametype
name english "Hardcore Team Tactical"
description english "Team based games with Team Deathmatch, Domination, Capture the Flag, Demolition, Sabotage, Search and Destroy, and Headquarters Pro.\n\n__________\nPlayers:6-12\nLimited HUD\nExtra bullet damage"
unlockxp 0
maxparty 6
rule party_minplayers 6
rule party_maxplayers 12
rule party_matchedplayercount 4
rule scr_war_scorelimit 5000
mp_afghan,hc_tdm,1
mp_boneyard,hc_tdm,1
mp_estate,hc_tdm,1
mp_favela,hc_tdm,1
mp_highrise,hc_tdm,1
mp_rust,hc_tdm,1
mp_subbase,hc_tdm,1
mp_terminal,hc_tdm,1
mp_afghan,hc_ctf,1
mp_boneyard,hc_ctf,1
mp_estate,hc_ctf,1
mp_favela,hc_ctf,1
mp_highrise,hc_ctf,1
mp_rust,hc_ctf,1
mp_subbase,hc_ctf,1
mp_terminal,hc_ctf,1
mp_afghan,hc_dom,1
mp_boneyard,hc_dom,1
mp_estate,hc_dom,1
mp_favela,hc_dom,1
mp_highrise,hc_dom,1
mp_rust,hc_dom,1
mp_subbase,hc_dom,1
mp_terminal,hc_dom,1
mp_afghan,hc_dd,1
mp_boneyard,hc_dd,1
mp_estate,hc_dd,1
mp_favela,hc_dd,1
mp_highrise,hc_dd,1
mp_rust,hc_dd,1
mp_subbase,hc_dd,1
mp_terminal,hc_dd,1
mp_compact,hc_tdm,1
mp_complex,hc_tdm,1
mp_crash,hc_tdm,1
mp_overgrown,hc_tdm,1
mp_storm,hc_tdm,1
mp_compact,hc_ctf,1
mp_complex,hc_ctf,1
mp_crash,hc_ctf,1
mp_overgrown,hc_ctf,1
mp_storm,hc_ctf,1
mp_compact,hc_dom,1