-
Notifications
You must be signed in to change notification settings - Fork 3
/
hl_whitelist.txt
7737 lines (7711 loc) · 343 KB
/
hl_whitelist.txt
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
// Whitelist generated at Tue, 07 Mar 2023 11:37:44 +0100
// Whitelist: ozfortress Highlander (Season 3) (ID: 13582)
// Share or view this whitelist:
// https://whitelist.tf/ozfortress_hl_s3
// New items added to the game are: NOT allowed
// Hats are: allowed
// Miscs are: allowed
// Pyrovision is: NOT allowed
// Noisemakers are: NOT allowed
// Restricted noisemakers are: NOT allowed
// Halloween/Full Moon items are: allowed
// Noise making miscs are: NOT allowed
// Explosion on death miscs are: NOT allowed
// Festive weapon reskins are: allowed
// Botkiller weapon reskins are: allowed
// Blocked weapons for Scout
// - Secondary
// * Crit-a-Cola
// * Mad Milk
// Blocked weapons for Soldier
// - Primary
// * Air Strike
// Blocked weapons for Pyro
// - Secondary
// * Scorch Shot
// Blocked weapons for Heavy
// - Primary
// * Natascha
// Blocked weapons for Engineer
// - Secondary
// * Short Circuit
// Blocked weapons for Sniper
// - Primary
// * Machina
// - Secondary
// * Jarate
// Blocked weapons for Spy
// - Secondary
// * Diamondback
"item_whitelist"
{
"unlisted_items_default_to" "0"
//---------------- Allowed weapons (Total: 124) -----------------\\
//______________________ Multiple classes _______________________\\
"Panic Attack Shotgun" "1"
"The B.A.S.E. Jumper" "1"
"The Half-Zatoichi" "1"
"The Pain Train" "1"
"The Reserve Shooter" "1"
//____________________________ Scout ____________________________\\
"Baby Face's Blaster" "1"
"Bonk! Atomic Punch" "1"
"Pretty Boy's Pocket Pistol" "1"
"Sun-on-a-Stick" "1"
"The Atomizer" "1"
"The Back Scatter" "1"
"The Boston Basher" "1"
"The Candy Cane" "1"
"The Fan O'War" "1"
"The Flying Guillotine" "1"
"The Force-a-Nature" "1"
"The Sandman" "1"
"The Shortstop" "1"
"The Soda Popper" "1"
"The Winger" "1"
"The Wrap Assassin" "1"
//___________________________ Soldier ___________________________\\
"Rocket Jumper" "1"
"The Battalion's Backup" "1"
"The Beggar's Bazooka" "1"
"The Black Box" "1"
"The Buff Banner" "1"
"The Concheror" "1"
"The Cow Mangler 5000" "1"
"The Direct Hit" "1"
"The Disciplinary Action" "1"
"The Equalizer" "1"
"The Escape Plan" "1"
"The Gunboats" "1"
"The Liberty Launcher" "1"
"The Mantreads" "1"
"The Market Gardener" "1"
"The Righteous Bison" "1"
//____________________________ Pyro _____________________________\\
"Sharpened Volcano Fragment" "1"
"The Axtinguisher" "1"
"The Back Scratcher" "1"
"The Backburner" "1"
"The Degreaser" "1"
"The Detonator" "1"
"The Dragon's Fury" "1"
"The Flare Gun" "1"
"The Gas Passer" "1"
"The Homewrecker" "1"
"The Hot Hand" "1"
"The Manmelter" "1"
"The Neon Annihilator" "1"
"The Phlogistinator" "1"
"The Powerjack" "1"
"The Thermal Thruster" "1"
"The Third Degree" "1"
//___________________________ Demoman ___________________________\\
"Ali Baba's Wee Booties" "1"
"Stickybomb Jumper" "1"
"The Chargin' Targe" "1"
"The Claidheamohmor" "1"
"The Eyelander" "1"
"The Iron Bomber" "1"
"The Loch-n-Load" "1"
"The Loose Cannon" "1"
"The Persian Persuader" "1"
"The Quickiebomb Launcher" "1"
"The Scotsman's Skullcutter" "1"
"The Scottish Resistance" "1"
"The Splendid Screen" "1"
"The Tide Turner" "1"
"The Ullapool Caber" "1"
//____________________________ Heavy ____________________________\\
"Fists of Steel" "1"
"Gloves of Running Urgently" "1"
"The Brass Beast" "1"
"The Buffalo Steak Sandvich" "1"
"The Dalokohs Bar" "1"
"The Eviction Notice" "1"
"The Family Business" "1"
"The Holiday Punch" "1"
"The Huo Long Heatmaker" "1"
"The Killing Gloves of Boxing" "1"
"The Sandvich" "1"
"The Second Banana" "1"
"Tomislav" "1"
"Warrior's Spirit" "1"
//__________________________ Engineer ___________________________\\
"The Eureka Effect" "1"
"The Frontier Justice" "1"
"The Gunslinger" "1"
"The Jag" "1"
"The Pomson 6000" "1"
"The Rescue Ranger" "1"
"The Southern Hospitality" "1"
"The Widowmaker" "1"
"The Wrangler" "1"
//____________________________ Medic ____________________________\\
"The Amputator" "1"
"The Blutsauger" "1"
"The Crusader's Crossbow" "1"
"The Kritzkrieg" "1"
"The Overdose" "1"
"The Quick-Fix" "1"
"The Solemn Vow" "1"
"The Ubersaw" "1"
"The Vaccinator" "1"
"The Vita-Saw" "1"
//___________________________ Sniper ____________________________\\
"Darwin's Danger Shield" "1"
"The Bazaar Bargain" "1"
"The Bushwacka" "1"
"The Classic" "1"
"The Cleaner's Carbine" "1"
"The Cozy Camper" "1"
"The Hitman's Heatmaker" "1"
"The Huntsman" "1"
"The Razorback" "1"
"The Shahanshah" "1"
"The Sydney Sleeper" "1"
"The Tribalman's Shiv" "1"
//_____________________________ Spy _____________________________\\
"Conniver's Kunai" "1"
"L'Etranger" "1"
"The Ambassador" "1"
"The Big Earner" "1"
"The Cloak and Dagger" "1"
"The Dead Ringer" "1"
"The Enforcer" "1"
"The Red-Tape Recorder" "1"
"The Spy-cicle" "1"
"Your Eternal Reward" "1"
//------------- Allowed weapon reskins (Total: 312) -------------\\
//_________________________ All classes _________________________\\
"Gold Frying Pan" "1"
"Prinny Machete" "1"
"Saxxy" "1"
//______________________ Multiple classes _______________________\\
"concealedkiller_pistol_redrockroscoe" "1"
"concealedkiller_shotgun_backwoodsboomstick" "1"
"craftsmann_pistol_homemadeheater" "1"
"craftsmann_shotgun_rusticruiner" "1"
"Festive Shotgun 2014" "1"
"Frying Pan" "1"
"gentlemanne_pistol_dressedtokill" "1"
"gentlemanne_shotgun_coffinnail" "1"
"gentlemanne_shotgun_dressedtokill" "1"
"harvest_pistol_macabreweb" "1"
"harvest_pistol_nutcracker" "1"
"harvest_shotgun_autumn" "1"
"Memory Maker" "1"
"Necro Smasher" "1"
"powerhouse_pistol_blackdahlia" "1"
"powerhouse_pistol_sandstonespecial" "1"
"powerhouse_shotgun_lightningrod" "1"
"pyroland_pistol_bluemew" "1"
"pyroland_pistol_braincandy" "1"
"pyroland_pistol_shottohell" "1"
"pyroland_shotgun_flowerpower" "1"
"teufort_pistol_hickoryholepuncher" "1"
"teufort_pistol_localhero" "1"
"teufort_shotgun_civicduty" "1"
"The Bat Outta Hell" "1"
"The C.A.P.P.E.R" "1"
"The Conscientious Objector" "1"
"The Crossing Guard" "1"
"The Freedom Staff" "1"
"The Ham Shank" "1"
"TTG Max Pistol" "1"
"TTG Max Pistol - Poker Night" "1"
"warbird_pistol_blitzkrieg" "1"
"warbird_shotgun_redbear" "1"
//____________________________ Scout ____________________________\\
"Batsaber" "1"
"Blood Botkiller Scattergun Mk.I" "1"
"Carbonado Botkiller Scattergun Mk.I" "1"
"concealedkiller_scattergun_nightterror" "1"
"craftsmann_scattergun_backcountryblaster" "1"
"craftsmann_scattergun_countrycrusher" "1"
"craftsmann_scattergun_tartantorpedo" "1"
"Diamond Botkiller Scattergun Mk.I" "1"
"Festive Bat 2011" "1"
"Festive Bonk 2014" "1"
"Festive Force-a-Nature" "1"
"Festive Holy Mackerel" "1"
"Festive Scattergun 2011" "1"
"gentlemanne_scattergun_coffinnail" "1"
"Gold Botkiller Scattergun Mk.I" "1"
"Gold Botkiller Scattergun Mk.II" "1"
"harvest_scattergun_macabreweb" "1"
"harvest_scattergun_nutcracker" "1"
"powerhouse_scattergun_currentevent" "1"
"Promo Flying Guillotine" "1"
"pyroland_scattergun_bluemew" "1"
"pyroland_scattergun_flowerpower" "1"
"pyroland_scattergun_shottohell" "1"
"Rust Botkiller Scattergun Mk.I" "1"
"Silver Botkiller Scattergun Mk.I" "1"
"Silver Botkiller Scattergun Mk.II" "1"
"teufort_scattergun_sprucedeuce" "1"
"The Holy Mackerel" "1"
"Three-Rune Blade" "1"
"Unarmed Combat" "1"
"warbird_scattergun_corsair" "1"
"warbird_scattergun_killerbee" "1"
//___________________________ Soldier ___________________________\\
"Blood Botkiller Rocket Launcher Mk.I" "1"
"Carbonado Botkiller Rocket Launcher Mk.I" "1"
"concealedkiller_rocketlauncher_sandcannon" "1"
"concealedkiller_rocketlauncher_woodlandwarrior" "1"
"craftsmann_rocketlauncher_americanpastoral" "1"
"Diamond Botkiller Rocket Launcher Mk.I" "1"
"Festive Black Box" "1"
"Festive Buff Banner" "1"
"Festive Rocket Launcher 2011" "1"
"gentlemanne_rocketlauncher_coffinnail" "1"
"gentlemanne_rocketlauncher_highrollers" "1"
"Gold Botkiller Rocket Launcher Mk.I" "1"
"Gold Botkiller Rocket Launcher Mk.II" "1"
"harvest_rocketlauncher_autumn" "1"
"powerhouse_rocketlauncher_aquamarine" "1"
"powerhouse_rocketlauncher_shellshocker" "1"
"pyroland_rocketlauncher_bluemew" "1"
"pyroland_rocketlauncher_braincandy" "1"
"Rust Botkiller Rocket Launcher Mk.I" "1"
"Silver Botkiller Rocket Launcher Mk.I" "1"
"Silver Botkiller Rocket Launcher Mk.II" "1"
"teufort_rocketlauncher_smalltownbringdown" "1"
"The Original" "1"
"warbird_rocketlauncher_warhawk" "1"
//____________________________ Pyro _____________________________\\
"Blood Botkiller Flame Thrower Mk.I" "1"
"Carbonado Botkiller Flame Thrower Mk.I" "1"
"concealedkiller_flamethrower_forestfire" "1"
"craftsmann_flamethrower_barnburner" "1"
"Diamond Botkiller Flame Thrower Mk.I" "1"
"Festive Axtinguisher" "1"
"Festive Backburner 2014" "1"
"Festive Flamethrower 2011" "1"
"Festive Flare Gun" "1"
"gentlemanne_flamethrower_coffinnail" "1"
"Gold Botkiller Flame Thrower Mk.I" "1"
"Gold Botkiller Flame Thrower Mk.II" "1"
"harvest_flamethrower_autumn" "1"
"harvest_flamethrower_nutcracker" "1"
"harvest_flamethrower_pumpkinpatch" "1"
"powerhouse_flamethrower_flashfryer" "1"
"powerhouse_flamethrower_turbinetorcher" "1"
"Promo Neon Annihilator" "1"
"pyroland_flamethrower_balloonicorn" "1"
"pyroland_flamethrower_rainbow" "1"
"Rust Botkiller Flame Thrower Mk.I" "1"
"Silver Botkiller Flame Thrower Mk.I" "1"
"Silver Botkiller Flame Thrower Mk.II" "1"
"teufort_flamethrower_bovineblazemaker" "1"
"teufort_flamethrower_earthskyandfire" "1"
"The Maul" "1"
"The Nostromo Napalmer" "1"
"The Postal Pummeler" "1"
"warbird_flamethrower_warhawk" "1"
//___________________________ Demoman ___________________________\\
"Blood Botkiller Stickybomb Launcher Mk.I" "1"
"Carbonado Botkiller Stickybomb Launcher Mk.I" "1"
"concealedkiller_stickybomblauncher_carpetbomber" "1"
"concealedkiller_stickybomblauncher_suddenflurry" "1"
"craftsmann_stickybomblauncher_blastedbombardier" "1"
"Diamond Botkiller Stickybomb Launcher Mk.I" "1"
"Festive Eyelander" "1"
"Festive Grenade Launcher" "1"
"Festive Stickybomb Launcher 2011" "1"
"Festive Targe 2014" "1"
"gentlemanne_grenadelauncher_coffinnail" "1"
"gentlemanne_grenadelauncher_topshelf" "1"
"gentlemanne_stickybomblauncher_coffinnail" "1"
"gentlemanne_stickybomblauncher_dressedtokill" "1"
"Gold Botkiller Stickybomb Launcher Mk.I" "1"
"Gold Botkiller Stickybomb Launcher Mk.II" "1"
"harvest_grenadelauncher_autumn" "1"
"harvest_grenadelauncher_macabreweb" "1"
"harvest_stickybomblauncher_autumn" "1"
"harvest_stickybomblauncher_macabreweb" "1"
"harvest_stickybomblauncher_pumpkinpatch" "1"
"Nessie's Nine Iron" "1"
"powerhouse_stickybomblauncher_liquidasset" "1"
"powerhouse_stickybomblauncher_pinkelephant" "1"
"pyroland_grenadelauncher_rainbow" "1"
"pyroland_grenadelauncher_sweetdreams" "1"
"pyroland_stickybomblauncher_sweetdreams" "1"
"Rust Botkiller Stickybomb Launcher Mk.I" "1"
"Silver Botkiller Stickybomb Launcher Mk.I" "1"
"Silver Botkiller Stickybomb Launcher Mk.II" "1"
"teufort_stickybomblauncher_rooftopwrangler" "1"
"The Bootlegger" "1"
"The Horseless Headless Horseman's Headtaker" "1"
"The Scottish Handshake" "1"
"warbird_grenadelauncher_butcherbird" "1"
"warbird_grenadelauncher_warhawk" "1"
"warbird_stickybomblauncher_blitzkrieg" "1"
//____________________________ Heavy ____________________________\\
"Apoco-Fists" "1"
"Blood Botkiller Minigun Mk.I" "1"
"Carbonado Botkiller Minigun Mk.I" "1"
"concealedkiller_minigun_kingofthejungle" "1"
"craftsmann_minigun_antiqueannihilator" "1"
"craftsmann_minigun_ironwood" "1"
"Diamond Botkiller Minigun Mk.I" "1"
"Festive Gloves of Running Urgently" "1"
"Festive Minigun 2011" "1"
"Festive Sandvich" "1"
"Fishcake" "1"
"gentlemanne_minigun_coffinnail" "1"
"gentlemanne_minigun_dressedtokill" "1"
"gentlemanne_minigun_topshelf" "1"
"Gloves of Running Urgently MvM" "1"
"Gold Botkiller Minigun Mk.I" "1"
"Gold Botkiller Minigun Mk.II" "1"
"harvest_minigun_macabreweb" "1"
"harvest_minigun_nutcracker" "1"
"harvest_minigun_pumpkinpatch" "1"
"Iron Curtain" "1"
"powerhouse_minigun_brickhouse" "1"
"Promo Huo Long Heatmaker" "1"
"pyroland_minigun_braincandy" "1"
"pyroland_minigun_mistercuddles" "1"
"Rust Botkiller Minigun Mk.I" "1"
"Silver Botkiller Minigun Mk.I" "1"
"Silver Botkiller Minigun Mk.II" "1"
"teufort_minigun_citizenpain" "1"
"teufort_minigun_warroom" "1"
"The Bread Bite" "1"
"The Robo-Sandvich" "1"
"warbird_minigun_butcherbird" "1"
//__________________________ Engineer ___________________________\\
"Blood Botkiller Wrench Mk.I" "1"
"Carbonado Botkiller Wrench Mk.I" "1"
"Diamond Botkiller Wrench Mk.I" "1"
"Festive Frontier Justice" "1"
"Festive Wrangler" "1"
"Festive Wrench 2011" "1"
"gentlemanne_wrench_dressedtokill" "1"
"gentlemanne_wrench_topshelf" "1"
"Gold Botkiller Wrench Mk.I" "1"
"Gold Botkiller Wrench Mk.II" "1"
"Golden Wrench" "1"
"harvest_wrench_autumn" "1"
"harvest_wrench_boneyard" "1"
"harvest_wrench_nutcracker" "1"
"pyroland_wrench_torquedtohell" "1"
"Rust Botkiller Wrench Mk.I" "1"
"Silver Botkiller Wrench Mk.I" "1"
"Silver Botkiller Wrench Mk.II" "1"
"The Giger Counter" "1"
"warbird_wrench_airwolf" "1"
//____________________________ Medic ____________________________\\
"Blood Botkiller Medi Gun Mk.I" "1"
"Carbonado Botkiller Medi Gun Mk.I" "1"
"concealedkiller_medigun_maskedmender" "1"
"concealedkiller_medigun_wrappedreviver" "1"
"craftsmann_medigun_reclaimedreanimator" "1"
"Diamond Botkiller Medi Gun Mk.I" "1"
"Festive Bonesaw 2014" "1"
"Festive Crusader's Crossbow" "1"
"Festive Medigun 2011" "1"
"Festive Ubersaw" "1"
"gentlemanne_medigun_coffinnail" "1"
"gentlemanne_medigun_dressedtokill" "1"
"gentlemanne_medigun_highrollers" "1"
"Gold Botkiller Medi Gun Mk.I" "1"
"Gold Botkiller Medi Gun Mk.II" "1"
"harvest_medigun_wildwood" "1"
"powerhouse_medigun_sparkoflife" "1"
"pyroland_medigun_flowerpower" "1"
"Rust Botkiller Medi Gun Mk.I" "1"
"Silver Botkiller Medi Gun Mk.I" "1"
"Silver Botkiller Medi Gun Mk.II" "1"
"teufort_medigun_civilservant" "1"
"warbird_medigun_blitzkrieg" "1"
"warbird_medigun_corsair" "1"
//___________________________ Sniper ____________________________\\
"Blood Botkiller Sniper Rifle Mk.I" "1"
"Carbonado Botkiller Sniper Rifle Mk.I" "1"
"concealedkiller_smg_woodsywidowmaker" "1"
"concealedkiller_sniperrifle_nightowl" "1"
"concealedkiller_sniperrifle_purplerange" "1"
"craftsmann_smg_plaidpotshotter" "1"
"craftsmann_sniperrifle_lumberfromdownunder" "1"
"craftsmann_sniperrifle_shotinthedark" "1"
"Diamond Botkiller Sniper Rifle Mk.I" "1"
"Festive Huntsman" "1"
"Festive SMG 2014" "1"
"Festive Sniper Rifle 2011" "1"
"gentlemanne_smg_highrollers" "1"
"gentlemanne_sniperrifle_coffinnail" "1"
"gentlemanne_sniperrifle_dressedtokill" "1"
"Gold Botkiller Sniper Rifle Mk.I" "1"
"Gold Botkiller Sniper Rifle Mk.II" "1"
"harvest_smg_wildwood" "1"
"harvest_sniperrifle_boneyard" "1"
"harvest_sniperrifle_pumpkinpatch" "1"
"harvest_sniperrifle_wildwood" "1"
"powerhouse_smg_lowprofile" "1"
"powerhouse_sniperrifle_thunderbolt" "1"
"pyroland_smg_bluemew" "1"
"pyroland_sniperrifle_balloonicorn" "1"
"pyroland_sniperrifle_rainbow" "1"
"Rust Botkiller Sniper Rifle Mk.I" "1"
"Silver Botkiller Sniper Rifle Mk.I" "1"
"Silver Botkiller Sniper Rifle Mk.II" "1"
"teufort_smg_teamsprayer" "1"
"teufort_smg_treadplatetormenter" "1"
"teufort_sniperrifle_bogtrotter" "1"
"The AWPer Hand" "1"
"The Fortified Compound" "1"
"warbird_smg_blitzkrieg" "1"
"warbird_sniperrifle_airwolf" "1"
//_____________________________ Spy _____________________________\\
"Blood Botkiller Knife Mk.I" "1"
"Carbonado Botkiller Knife Mk.I" "1"
"concealedkiller_revolver_psychedelicslugger" "1"
"craftsmann_revolver_oldcountry" "1"
"Diamond Botkiller Knife Mk.I" "1"
"Festive Ambassador" "1"
"Festive Knife 2011" "1"
"Festive Revolver 2014" "1"
"Festive Sapper" "1"
"gentlemanne_knife_dressedtokill" "1"
"gentlemanne_knife_topshelf" "1"
"gentlemanne_revolver_coffinnail" "1"
"gentlemanne_revolver_topshelf" "1"
"Gold Botkiller Knife Mk.I" "1"
"Gold Botkiller Knife Mk.II" "1"
"harvest_knife_boneyard" "1"
"harvest_revolver_boneyard" "1"
"harvest_revolver_macabreweb" "1"
"harvest_revolver_wildwood" "1"
"powerhouse_revolver_deadreckoner" "1"
"Promo Red-Tape Recorder" "1"
"pyroland_knife_bluemew" "1"
"pyroland_knife_braincandy" "1"
"pyroland_knife_stabbedtohell" "1"
"pyroland_revolver_flowerpower" "1"
"Rust Botkiller Knife Mk.I" "1"
"Silver Botkiller Knife Mk.I" "1"
"Silver Botkiller Knife Mk.II" "1"
"teufort_revolver_mayor" "1"
"The Ap-Sap" "1"
"The Black Rose" "1"
"The Quackenbirdt" "1"
"The Sharp Dresser" "1"
"The Snack Attack" "1"
"The Wanga Prick" "1"
"TTG Sam Revolver" "1"
"TTG Watch" "1"
"warbird_knife_airwolf" "1"
"warbird_knife_blitzkrieg" "1"
"warbird_revolver_blitzkrieg" "1"
//------------- Blocked weapons/reskins (Total: 14) -------------\\
//____________________________ Scout ____________________________\\
"Crit-a-Cola" "0"
"Mad Milk" "0"
"Mutated Milk" "0"
//___________________________ Soldier ___________________________\\
"The Air Strike" "0"
//____________________________ Pyro _____________________________\\
"The Scorch Shot" "0"
//____________________________ Heavy ____________________________\\
"Deflector" "0"
"Natascha" "0"
//__________________________ Engineer ___________________________\\
"The Short Circuit" "0"
//___________________________ Sniper ____________________________\\
"Festive Jarate" "0"
"Jarate" "0"
"Shooting Star" "0"
"The Machina" "0"
"The Self-Aware Beauty Mark" "0"
//_____________________________ Spy _____________________________\\
"The Diamondback" "0"
//------------- ConTrabanned ConTracker (Total: 1) --------------\\
//_________________________ All classes _________________________\\
"Activated Campaign 3 Pass" "0"
//------------------ Gifting items (Total: 31) ------------------\\
"Companion Square Promo Package" "1"
"Gift - 1 Duck Token" "1"
"Gift - 1 EOTL Key" "1"
"Gift - 1 Player" "1"
"Gift - 1 RoboKey 2013" "1"
"Gift - 1 SummerKey 2013" "1"
"Gift - 23 Duck Tokens" "1"
"Gift - 23 EOTL Keys" "1"
"Gift - 23 RoboKeys 2013" "1"
"Gift - 23 SummerKeys 2013" "1"
"Gift - 24 Players" "1"
"Halloween Contract Package" "1"
"Halloween Giveaway Cauldron 2014 (Achievement)" "1"
"Halloween Giveaway Cauldron 2014 (Base)" "1"
"Halloween Giveaway Package 2011 (Cauldron)" "1"
"Manniversary Giveaway Package" "1"
"Pallet of Crates" "1"
"Portal 2 Soundtrack Promo Package" "1"
"Random Droppable Paints Package" "1"
"Sandvich Promo Package" "1"
"Self Gift - Mutated Bread Box" "1"
"Self Gift - Stocking Stuffer 2013" "1"
"Self Gift - Stocking Stuffer 2017" "1"
"Self Gift - Stocking Stuffer 2018" "1"
"Self Gift - Stocking Stuffer 2019" "1"
"Self Gift - Stocking Stuffer 2020" "1"
"Self Gift - Stocking Stuffer 2021" "1"
"Self Gift - Stocking Stuffer 2022" "1"
"Steam Translation Package" "1"
"Store Purchase Promotion Package" "1"
"Team Fortress 2 Soundtrack Promo Package" "1"
//----- Globally Competitive League banned items (Total: 2) -----\\
//____________________________ Scout ____________________________\\
"The Corpse Carrier" "0"
"The Sprinting Cephalopod" "0"
//----------- Halloween/Full Moon items (Total: 252) ------------\\
//_________________________ All classes _________________________\\
"Cursed Cruise" "1"
"Ghost of Spies Checked Past" "1"
"Guano" "1"
"Halloween Mask - Demoman" "1"
"Halloween Mask - Engineer" "1"
"Halloween Mask - Heavy" "1"
"Halloween Mask - Medic" "1"
"Halloween Mask - Pyro" "1"
"Halloween Mask - Scout" "1"
"Halloween Mask - Sniper" "1"
"Halloween Mask - Soldier" "1"
"Halloween Mask - Spy" "1"
"Horseless Headless Horseman's Head" "1"
"Kritz Or Treat Canteen" "1"
"Mildly Disturbing Halloween Mask" "1"
"MONOCULUS!" "1"
"Quoth" "1"
"Seal Mask" "1"
"The Accursed Apparition" "1"
"The Beacon from Beyond" "1"
"The Birdie Bonnet" "1"
"The Boo Balloon" "1"
"The Cryptic Keepsake" "1"
"The Dadliest Catch" "1"
"The Dark Helm" "1"
"The Dead Little Buddy" "1"
"The Haunted Hat" "1"
"The Hooded Haunter" "1"
"The Magical Mercenary" "1"
"The Manneater" "1"
"The One-Way Ticket" "1"
"The Pocket Horsemann" "1"
"The Sackcloth Spook" "1"
"The Tuque or Treat" "1"
"The Unknown Monkeynaut" "1"
"Unidentified Following Object" "1"
"Voodoo-Cursed Soul (Armory)" "1"
//______________________ Multiple classes _______________________\\
"Computron 5000" "1"
"Ethereal Hood" "1"
"Pin Pals" "1"
"The Baphomet Trotters" "1"
"The Candleer" "1"
"The Snaggletoothed Stetson" "1"
//____________________________ Scout ____________________________\\
"B-ankh!" "1"
"Batter's Beak" "1"
"Claws And Infect" "1"
"Crazy Legs" "1"
"Faun Feet" "1"
"Fowl Fists" "1"
"Futankhamun" "1"
"Grounded Flyboy" "1"
"Head Hunter" "1"
"Nugget Noggin" "1"
"Remorseless Raptor" "1"
"Talon Trotters" "1"
"The Alien Cranium" "1"
"The Biomech Backpack" "1"
"The Face Plante" "1"
"The Halloweiner" "1"
"The Horrific Head of Hare" "1"
"The Hound's Hood" "1"
"The Terrier Trousers" "1"
"The Xeno Suit" "1"
"Wild Whip" "1"
"Wrap Battler" "1"
"Zombie Scout" "1"
//___________________________ Soldier ___________________________\\
"Battle Bird" "1"
"Ghoul Gibbin' Gear" "1"
"Grub Grenades" "1"
"Hellhunter's Headpiece" "1"
"Idiot Box" "1"
"Lieutenant Bites the Dust" "1"
"Poopy Doe" "1"
"Shoestring Budget" "1"
"Steel Pipes" "1"
"Supernatural Stalker" "1"
"The Cadaver's Capper" "1"
"The Faux Manchu" "1"
"The Freedom Feathers" "1"
"The Hardium Helm" "1"
"The Hidden Dragon" "1"
"The Jupiter Jumpers" "1"
"The Larval Lid" "1"
"The Shaolin Sash" "1"
"The Space Bracers" "1"
"The Spellbinder's Bonnet" "1"
"The Zipperface" "1"
"War Blunder" "1"
"War Dog" "1"
"Zombie Soldier" "1"
//____________________________ Pyro _____________________________\\
"Arsonist Apparatus" "1"
"Blazing Bull" "1"
"Bozo's Bouffant" "1"
"Burny's Boney Bonnet" "1"
"Carrion Companion" "1"
"Creature's Grin" "1"
"Fallen Angel" "1"
"Hard-Headed Hardware" "1"
"Hovering Hotshot" "1"
"Lollichop Licker" "1"
"Magical Mount" "1"
"Moccasin Machinery" "1"
"Mr. Juice" "1"
"PY-40 Incinibot" "1"
"Pyro Shark" "1"
"Tail From the Crypt" "1"
"The Abhorrent Appendages" "1"
"The Beast From Below" "1"
"The Cauterizer's Caudal Appendage" "1"
"The Corpsemopolitan" "1"
"The Creature From The Heap" "1"
"The Crispy Golden Locks" "1"
"The Death Support Pack" "1"
"The External Organ" "1"
"The Fire Breather" "1"
"The Glob" "1"
"The Gothic Guise" "1"
"The Grisly Gumbo" "1"
"The Handhunter" "1"
"The Hollowhead" "1"
"The Macabre Mask" "1"
"The Maniac's Manacles" "1"
"The Miami Rooster" "1"
"The Monster's Stompers" "1"
"The Mucous Membrain" "1"
"The Plutonidome" "1"
"The Raven's Visage" "1"
"The Rugged Respirator" "1"
"The Scorched Skirt" "1"
"The Spectralnaut" "1"
"The Treehugger" "1"
"The Vicious Visage" "1"
"Up Pyroscopes" "1"
"Vampyro" "1"
"Zombie Pyro" "1"
//___________________________ Demoman ___________________________\\
"Aerobatics Demonstrator" "1"
"Cap'n Calamari" "1"
"Explosive Mind" "1"
"Eyeborg" "1"
"Forgotten King's Pauldrons" "1"
"Forgotten King's Restless Head" "1"
"Hair of the Dog" "1"
"Pickled Paws" "1"
"Polly Putrid" "1"
"Scottish Snarl" "1"
"The Headtaker's Hood" "1"
"The Horsemann's Hand-Me-Down" "1"
"The Lordly Lapels" "1"
"The Mann-Bird of Aberdeen" "1"
"The Parasight" "1"
"The Squid's Lid" "1"
"The Transylvania Top" "1"
"Zombie Demo" "1"
//____________________________ Heavy ____________________________\\
"Bone-Cut Belt" "1"
"Bull Locks" "1"
"Can Opener" "1"
"Immobile Suit" "1"
"Ivan The Inedible" "1"
"Mannvich" "1"
"Minsk Beef" "1"
"Misha's Maw" "1"
"Soviet Stitch-Up" "1"
"Steel-Toed Stompers" "1"
"The Chicken Kiev" "1"
"The Grand Duchess Fairy Wings" "1"
"The Grand Duchess Tiara" "1"
"The Grand Duchess Tutu" "1"
"The Horned Honcho" "1"
"The Last Bite" "1"
"The Monstrous Mandible" "1"
"Zombie Heavy" "1"
//__________________________ Engineer ___________________________\\
"A Shell of a Mann" "1"
"Beep Man" "1"
"Buzz Killer" "1"
"Cabinet Mann" "1"
"Dell in the Shell" "1"
"Eingineer" "1"
"Final Frontier Freighter" "1"
"Frontier Flyboy" "1"
"Garden Bristles" "1"
"Iron Fist" "1"
"Legend of Bugfoot" "1"
"Soul of 'Spenser's Past" "1"
"The Grease Monkey" "1"
"The Master Mind" "1"
"The Pony Express" "1"
"The Pug Mug" "1"
"Tiny Texan" "1"
"Zombie Engineer" "1"
//____________________________ Medic ____________________________\\
"Archimedes the Undying" "1"
"Das Blutliebhaber" "1"
"Dr. Gogglestache" "1"
"Einstein" "1"
"Emerald Jarate" "1"
"Herzensbrecher" "1"
"Hundekopf" "1"
"Kriegsmaschine-9000" "1"
"Medimedes" "1"
"Ramses' Regalia" "1"
"Rolfe Copter" "1"
"Templar's Spirit" "1"
"Teutonkahmun" "1"
"The Alternative Medicine Mann" "1"
"The Lo-Grav Loafers" "1"
"The Second Opinion" "1"
"The Shaman's Skull" "1"
"The Surgeon's Space Suit" "1"
"The Trepanabotomizer" "1"
"The Vicar's Vestments" "1"
"Transylvanian Toupe" "1"
"Vampiric Vesture" "1"
"Wings of Purity" "1"
"Zombie Medic" "1"
//___________________________ Sniper ____________________________\\
"Conspiratorial Cut" "1"
"Crocodile Mun-Dee" "1"
"Garlic Flank Stake" "1"
"Holy Hunter" "1"
"Kanga Kickers" "1"
"Marsupial Man" "1"
"Marsupial Muzzle" "1"
"Mr. Mundee's Wild Ride" "1"
"Roo Rippers" "1"
"Scopers Scales" "1"
"Silver Bullets" "1"
"Sir Shootsalot" "1"
"Skinless Slashers" "1"
"The Carious Chameleon" "1"
"The Hallowed Headcase" "1"
"Zombie Sniper" "1"
//_____________________________ Spy _____________________________\\
"Avian Amante" "1"
"Bozo's Brogues" "1"
"Facepeeler" "1"
"Griffin's Gog" "1"
"Intangible Ascot" "1"
"Nightmare Hunter" "1"
"Rogue's Rabbit" "1"
"Shadowman's Shade" "1"
"The Bountiful Bow" "1"
"The Candyman's Cap" "1"
"The Foul Cowl" "1"
"The Hyperbaric Bowler" "1"
"Under Cover" "1"
"Zombie Spy" "1"
//---------------------- Hats (Total: 732) ----------------------\\
//_________________________ All classes _________________________\\
"A Rather Festive Tree" "1"
"A Well Wrapped Hat" "1"
"Alakablamicon" "1"
"All Hallows' Hatte" "1"
"Arkham Cowl" "1"
"Bat Hat" "1"
"Beanie The All-Gnawing" "1"
"Benefactor's Kanmuri" "1"
"Bread Heads" "1"
"Brimstone" "1"
"Bumble Beenie" "1"
"Camera Helm" "1"
"Candy Crown" "1"
"Captain Cardbeard Cutthroat" "1"
"Captain Space Mann" "1"
"Citizen Cane" "1"
"Civilian Grade JACK Hat" "1"
"Class Crown" "1"
"Colonel Kringle" "1"
"Cozy Catchers" "1"
"Daily Duel Winner Reward Hat" "1"
"Daily Gift Giver Reward Hat" "1"
"Daily Map Stamp Reward Hat" "1"
"dec2014 CoPilot_2014" "1"
"Dr's Dapper Topper" "1"
"Duck Billed Hatypus" "1"
"El Fiestibrero" "1"
"Ellis Hat" "1"
"EOTL_Brisk-weather Beanie" "1"
"EOTL_FURCAP" "1"
"EOTL_hiphunter_hat" "1"
"Festive Rack" "1"
"Ghastly Gibus" "1"
"Ghastly Gibus 2010" "1"
"Ghastly Gibus 2011" "1"
"Ghostly Gibus" "1"
"Gnome Dome" "1"
"Goalkeeper" "1"
"Gourd Grin" "1"
"Halloween Mask - Saxton Hale" "1"
"Handsome Devil" "1"
"Hat Chocolate" "1"
"Hat Outta Hell" "1"
"Hollowed Helm" "1"
"Honest Halo" "1"
"Hong Kong Cone" "1"
"Horace" "1"
"Horrific Headsplitter" "1"
"Humanitarian's Hachimaki" "1"
"Jolly Jester" "1"
"Jungle Wreath" "1"
"Killer Exclusive" "1"
"King Cardbeard" "1"
"L4D Hat" "1"
"Legendary Lid" "1"
"Lil' Bitey" "1"
"Lo-Fi Longwave" "1"
"Loyalty Reward" "1"
"Lucky Cat Hat" "1"
"Lumbercap" "1"
"Mangnanimous Monarch" "1"
"Mann Co. Cap" "1"
"Mann Co. Online Cap" "1"
"Mannanas Cap" "1"
"Manniversary Paper Hat" "1"
"Mercenary Park Cap" "1"
"Merry Cone" "1"
"Military Grade JACK Hat" "1"
"Misfortune Fedora" "1"
"Mister Bones" "1"
"MNC Hat" "1"
"Modest Metal Pile of Scrap" "1"
"Modest Pile of Hat" "1"
"Nasty Norsemann" "1"
"Neckwear Headwear" "1"
"Never Forget Cap" "1"
"Noble Amassment of Hats" "1"
"Noble Nickel Amassment of Hats" "1"
"Phononaut" "1"
"Point and Shoot" "1"
"Potassium Bonnett" "1"
"Potato Hat" "1"
"Prinny Hat" "1"
"Professional's Pom Pom" "1"
"Promo Arkham Cowl" "1"
"Promo Human Cannonball" "1"
"Propaganda Contest First Place" "1"
"Propaganda Contest Second Place" "1"
"Propaganda Contest Third Place" "1"
"Reindoonihorns" "1"
"Robot Chicken Hat" "1"
"Saxton Hat" "1"
"Seasonal Spring" "1"
"Second-head Headwear" "1"
"Shoestring Santa" "1"
"Sir Pumpkinton" "1"
"Smissmas Saxton" "1"
"Spine-Chilling Skull" "1"
"Spine-Chilling Skull 2011" "1"
"Spine-Chilling Skull 2011 Style 1" "1"
"Spine-Chilling Skull 2011 Style 2" "1"
"Spine-Chilling Skull 2011 Style 3" "1"
"Spiral Sallet" "1"
"Spooky Head-Bouncers" "1"
"Starlight Sorcerer" "1"
"Summer Hat" "1"
"TF Birthday Hat 2011" "1"
"That '70s Chapeau" "1"
"The Aztec Warrior" "1"
"The B.M.O.C." "1"
"The Bolt Action Blitzer" "1"
"The Bone Cone" "1"
"The Bot Dogger" "1"
"The Brotherhood of Arms" "1"
"The Brown Bomber" "1"
"The Bruiser's Bandanna" "1"
"The Brutal Bouffant" "1"
"The Caribou Companion" "1"
"The Chill Chullo" "1"
"The Cockfighter" "1"
"The Conspiracy Cap" "1"
"The Cotton Head" "1"
"The Crone's Dome" "1"
"The Crosslinker's Coil" "1"
"The Crown of the Old Kingdom" "1"
"The Dark Falkirk Helm" "1"
"The Decorated Veteran" "1"
"The Ebenezer" "1"
"The Executioner" "1"
"The Federal Casemaker" "1"
"The Finder's Fee" "1"
"The Full Head of Steam" "1"
"The Galvanized Gibus" "1"
"The Gentle Munitionne of Leisure" "1"
"The Giftcrafter" "1"
"The Grandmaster" "1"
"The Head Prize" "1"
"The Holiday Headcase" "1"
"The Horrible Horns" "1"
"The Hot Dogger" "1"
"The Human Cannonball" "1"
"The Hunter in Darkness" "1"
"The Kiss King" "1"
"The Law" "1"
"The Merc's Mohawk" "1"
"The MK 50" "1"
"The Onimann" "1"
"The Patriot Peak" "1"
"The Pithy Professional" "1"
"The Polar Pullover" "1"
"The Public Accessor" "1"
"The Rotation Sensation" "1"
"The Salty Dog" "1"
"The Sarif Cap" "1"
"The Scariest Mask EVER" "1"
"The Skull Island Topper" "1"
"The Smissmass Sorcerer" "1"
"The Snowmann" "1"
"The TF2VRH" "1"
"The Toadstool Topper" "1"
"The Top Notch" "1"
"The Tundra Top" "1"
"The Virtual Viewfinder" "1"