summaryrefslogtreecommitdiff
path: root/games/hlserver-action/pkg-plist
blob: 27fa47abd7b784af5c7e5225bdc480e2d6e344e6 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
%%HLDSDIR%%action/1024_textscheme.txt
%%HLDSDIR%%action/1152_textscheme.txt
%%HLDSDIR%%action/1280_textscheme.txt
%%HLDSDIR%%action/1600_textscheme.txt
%%HLDSDIR%%action/320_textscheme.txt
%%HLDSDIR%%action/400_textscheme.txt
%%HLDSDIR%%action/512_textscheme.txt
%%HLDSDIR%%action/640_textscheme.txt
%%HLDSDIR%%action/800_textscheme.txt
%%HLDSDIR%%action/Titles.txt
%%HLDSDIR%%action/actionhalflife.fgd
%%HLDSDIR%%action/ahl-linux.txt
%%HLDSDIR%%action/ahl.ico
%%HLDSDIR%%action/ahl_credits.txt
%%HLDSDIR%%action/ahl_map_ent_info.txt
%%HLDSDIR%%action/blockwar.wad
%%HLDSDIR%%action/cached.wad
%%HLDSDIR%%action/chswrx01.wad
%%HLDSDIR%%action/cl_dlls/client.dll
%%HLDSDIR%%action/cliff2_snow.wad
%%HLDSDIR%%action/commandmenu.txt
%%HLDSDIR%%action/custom.hpk
%%HLDSDIR%%action/decals.wad
%%HLDSDIR%%action/delta.lst
%%HLDSDIR%%action/dlls/ahl.dll
%%HLDSDIR%%action/dlls/ahl_i386.so
%%HLDSDIR%%action/doombank2.wad
%%HLDSDIR%%action/events/50cal.sc
%%HLDSDIR%%action/events/akimbo.sc
%%HLDSDIR%%action/events/akimcolt.sc
%%HLDSDIR%%action/events/akimsaa.sc
%%HLDSDIR%%action/events/anaconda.sc
%%HLDSDIR%%action/events/beretta.sc
%%HLDSDIR%%action/events/blood.sc
%%HLDSDIR%%action/events/colt.sc
%%HLDSDIR%%action/events/coltSAA.sc
%%HLDSDIR%%action/events/corpse.sc
%%HLDSDIR%%action/events/de50.sc
%%HLDSDIR%%action/events/gibbed.sc
%%HLDSDIR%%action/events/grenade.sc
%%HLDSDIR%%action/events/handcannon.sc
%%HLDSDIR%%action/events/m4.sc
%%HLDSDIR%%action/events/monster12mm.sc
%%HLDSDIR%%action/events/monstermp5.sc
%%HLDSDIR%%action/events/mp5.sc
%%HLDSDIR%%action/events/shotgun.sc
%%HLDSDIR%%action/events/sniper.sc
%%HLDSDIR%%action/events/tk.sc
%%HLDSDIR%%action/events/train.sc
%%HLDSDIR%%action/gfx.wad
%%HLDSDIR%%action/gfx/env/BWbk.TGA
%%HLDSDIR%%action/gfx/env/BWdn.TGA
%%HLDSDIR%%action/gfx/env/BWft.TGA
%%HLDSDIR%%action/gfx/env/BWlf.TGA
%%HLDSDIR%%action/gfx/env/BWrt.TGA
%%HLDSDIR%%action/gfx/env/BWup.TGA
%%HLDSDIR%%action/gfx/env/city2bk.tga
%%HLDSDIR%%action/gfx/env/city2dn.tga
%%HLDSDIR%%action/gfx/env/city2ft.tga
%%HLDSDIR%%action/gfx/env/city2lf.tga
%%HLDSDIR%%action/gfx/env/city2rt.tga
%%HLDSDIR%%action/gfx/env/city2up.tga
%%HLDSDIR%%action/gfx/env/forest256_bk.tga
%%HLDSDIR%%action/gfx/env/forest256_dn.tga
%%HLDSDIR%%action/gfx/env/forest256_ft.tga
%%HLDSDIR%%action/gfx/env/forest256_lf.tga
%%HLDSDIR%%action/gfx/env/forest256_rt.tga
%%HLDSDIR%%action/gfx/env/forest256_up.tga
%%HLDSDIR%%action/gfx/env/fullmoonbk.tga
%%HLDSDIR%%action/gfx/env/fullmoondn.tga
%%HLDSDIR%%action/gfx/env/fullmoonft.tga
%%HLDSDIR%%action/gfx/env/fullmoonlf.tga
%%HLDSDIR%%action/gfx/env/fullmoonrt.tga
%%HLDSDIR%%action/gfx/env/fullmoonup.tga
%%HLDSDIR%%action/gfx/env/rainbk.tga
%%HLDSDIR%%action/gfx/env/raindn.tga
%%HLDSDIR%%action/gfx/env/rainft.tga
%%HLDSDIR%%action/gfx/env/rainlf.tga
%%HLDSDIR%%action/gfx/env/rainrt.tga
%%HLDSDIR%%action/gfx/env/rainup.tga
%%HLDSDIR%%action/gfx/env/sky3bk.tga
%%HLDSDIR%%action/gfx/env/sky3dn.tga
%%HLDSDIR%%action/gfx/env/sky3ft.tga
%%HLDSDIR%%action/gfx/env/sky3lf.tga
%%HLDSDIR%%action/gfx/env/sky3rt.tga
%%HLDSDIR%%action/gfx/env/sky3up.tga
%%HLDSDIR%%action/gfx/env/snowcliff_bk.tga
%%HLDSDIR%%action/gfx/env/snowcliff_dn.tga
%%HLDSDIR%%action/gfx/env/snowcliff_ft.tga
%%HLDSDIR%%action/gfx/env/snowcliff_lf.tga
%%HLDSDIR%%action/gfx/env/snowcliff_rt.tga
%%HLDSDIR%%action/gfx/env/snowcliff_up.tga
%%HLDSDIR%%action/gfx/env/whousebk.tga
%%HLDSDIR%%action/gfx/env/whousedn.tga
%%HLDSDIR%%action/gfx/env/whouseft.tga
%%HLDSDIR%%action/gfx/env/whouself.tga
%%HLDSDIR%%action/gfx/env/whousert.tga
%%HLDSDIR%%action/gfx/env/whouseup.tga
%%HLDSDIR%%action/gfx/shell/btns_main.bmp
%%HLDSDIR%%action/gfx/shell/cb_checked.bmp
%%HLDSDIR%%action/gfx/shell/cb_disabled.bmp
%%HLDSDIR%%action/gfx/shell/cb_down.bmp
%%HLDSDIR%%action/gfx/shell/cb_empty.bmp
%%HLDSDIR%%action/gfx/shell/cb_over.bmp
%%HLDSDIR%%action/gfx/shell/cls_d.bmp
%%HLDSDIR%%action/gfx/shell/cls_f.bmp
%%HLDSDIR%%action/gfx/shell/cls_n.bmp
%%HLDSDIR%%action/gfx/shell/dedicate.bmp
%%HLDSDIR%%action/gfx/shell/divider.bmp
%%HLDSDIR%%action/gfx/shell/dnarrowd.bmp
%%HLDSDIR%%action/gfx/shell/dnarrowf.bmp
%%HLDSDIR%%action/gfx/shell/dnarrowp.bmp
%%HLDSDIR%%action/gfx/shell/down.bmp
%%HLDSDIR%%action/gfx/shell/favorite.bmp
%%HLDSDIR%%action/gfx/shell/ff.bmp
%%HLDSDIR%%action/gfx/shell/gamma.bmp
%%HLDSDIR%%action/gfx/shell/head_advanced.bmp
%%HLDSDIR%%action/gfx/shell/head_advoptions.bmp
%%HLDSDIR%%action/gfx/shell/head_audio.bmp
%%HLDSDIR%%action/gfx/shell/head_config.bmp
%%HLDSDIR%%action/gfx/shell/head_controls.bmp
%%HLDSDIR%%action/gfx/shell/head_creategame.bmp
%%HLDSDIR%%action/gfx/shell/head_createroom.bmp
%%HLDSDIR%%action/gfx/shell/head_custom.bmp
%%HLDSDIR%%action/gfx/shell/head_customize.bmp
%%HLDSDIR%%action/gfx/shell/head_filter.bmp
%%HLDSDIR%%action/gfx/shell/head_gameopts.bmp
%%HLDSDIR%%action/gfx/shell/head_gore.bmp
%%HLDSDIR%%action/gfx/shell/head_inetgames.bmp
%%HLDSDIR%%action/gfx/shell/head_keyboard.bmp
%%HLDSDIR%%action/gfx/shell/head_lan.bmp
%%HLDSDIR%%action/gfx/shell/head_load.bmp
%%HLDSDIR%%action/gfx/shell/head_multi.bmp
%%HLDSDIR%%action/gfx/shell/head_newgame.bmp
%%HLDSDIR%%action/gfx/shell/head_readme.bmp
%%HLDSDIR%%action/gfx/shell/head_room.bmp
%%HLDSDIR%%action/gfx/shell/head_rooms.bmp
%%HLDSDIR%%action/gfx/shell/head_save.bmp
%%HLDSDIR%%action/gfx/shell/head_saveload.bmp
%%HLDSDIR%%action/gfx/shell/head_single.bmp
%%HLDSDIR%%action/gfx/shell/head_video.bmp
%%HLDSDIR%%action/gfx/shell/head_vidmodes.bmp
%%HLDSDIR%%action/gfx/shell/head_vidoptions.bmp
%%HLDSDIR%%action/gfx/shell/kb_act.lst
%%HLDSDIR%%action/gfx/shell/kb_def.lst
%%HLDSDIR%%action/gfx/shell/kb_keys.lst
%%HLDSDIR%%action/gfx/shell/larrowdefault.bmp
%%HLDSDIR%%action/gfx/shell/larrowflyover.bmp
%%HLDSDIR%%action/gfx/shell/larrowpressed.bmp
%%HLDSDIR%%action/gfx/shell/linux.bmp
%%HLDSDIR%%action/gfx/shell/listen.bmp
%%HLDSDIR%%action/gfx/shell/lock.bmp
%%HLDSDIR%%action/gfx/shell/logo.bmp
%%HLDSDIR%%action/gfx/shell/min_d.bmp
%%HLDSDIR%%action/gfx/shell/min_f.bmp
%%HLDSDIR%%action/gfx/shell/min_n.bmp
%%HLDSDIR%%action/gfx/shell/nonfav.bmp
%%HLDSDIR%%action/gfx/shell/pcg.bmp
%%HLDSDIR%%action/gfx/shell/rarrowdefault.bmp
%%HLDSDIR%%action/gfx/shell/rarrowflyover.bmp
%%HLDSDIR%%action/gfx/shell/rarrowpressed.bmp
%%HLDSDIR%%action/gfx/shell/scrn.bmp
%%HLDSDIR%%action/gfx/shell/slider.bmp
%%HLDSDIR%%action/gfx/shell/sm_dnarf.bmp
%%HLDSDIR%%action/gfx/shell/sm_dnarw.bmp
%%HLDSDIR%%action/gfx/shell/splash.bmp
%%HLDSDIR%%action/gfx/shell/strings.lst
%%HLDSDIR%%action/gfx/shell/thumb.bmp
%%HLDSDIR%%action/gfx/shell/unlock.bmp
%%HLDSDIR%%action/gfx/shell/up.bmp
%%HLDSDIR%%action/gfx/shell/uparrowd.bmp
%%HLDSDIR%%action/gfx/shell/uparrowf.bmp
%%HLDSDIR%%action/gfx/shell/uparrowp.bmp
%%HLDSDIR%%action/gfx/shell/windows.bmp
%%HLDSDIR%%action/gfx/shell/won_logo.bmp
%%HLDSDIR%%action/gfx/vgui/320_50cal.tga
%%HLDSDIR%%action/gfx/vgui/320_akimbo.tga
%%HLDSDIR%%action/gfx/vgui/320_akimbob.tga
%%HLDSDIR%%action/gfx/vgui/320_akimcolt.tga
%%HLDSDIR%%action/gfx/vgui/320_akimsaa.tga
%%HLDSDIR%%action/gfx/vgui/320_algod.tga
%%HLDSDIR%%action/gfx/vgui/320_anaconda.tga
%%HLDSDIR%%action/gfx/vgui/320_bandolier.tga
%%HLDSDIR%%action/gfx/vgui/320_benny.tga
%%HLDSDIR%%action/gfx/vgui/320_beretta.tga
%%HLDSDIR%%action/gfx/vgui/320_blank.tga
%%HLDSDIR%%action/gfx/vgui/320_carrianne.tga
%%HLDSDIR%%action/gfx/vgui/320_castr.tga
%%HLDSDIR%%action/gfx/vgui/320_colt.tga
%%HLDSDIR%%action/gfx/vgui/320_de50.tga
%%HLDSDIR%%action/gfx/vgui/320_drake.tga
%%HLDSDIR%%action/gfx/vgui/320_flashlight.tga
%%HLDSDIR%%action/gfx/vgui/320_frag.tga
%%HLDSDIR%%action/gfx/vgui/320_ghostdog.tga
%%HLDSDIR%%action/gfx/vgui/320_handcannon.tga
%%HLDSDIR%%action/gfx/vgui/320_hannie.tga
%%HLDSDIR%%action/gfx/vgui/320_harry.tga
%%HLDSDIR%%action/gfx/vgui/320_henchman.tga
%%HLDSDIR%%action/gfx/vgui/320_hm.tga
%%HLDSDIR%%action/gfx/vgui/320_holster.tga
%%HLDSDIR%%action/gfx/vgui/320_ivan.tga
%%HLDSDIR%%action/gfx/vgui/320_jeff.tga
%%HLDSDIR%%action/gfx/vgui/320_josaphine.tga
%%HLDSDIR%%action/gfx/vgui/320_knife.tga
%%HLDSDIR%%action/gfx/vgui/320_knuckles.tga
%%HLDSDIR%%action/gfx/vgui/320_lasersight.tga
%%HLDSDIR%%action/gfx/vgui/320_luke.tga
%%HLDSDIR%%action/gfx/vgui/320_m4.tga
%%HLDSDIR%%action/gfx/vgui/320_maggie.tga
%%HLDSDIR%%action/gfx/vgui/320_michigan.tga
%%HLDSDIR%%action/gfx/vgui/320_mp5.tga
%%HLDSDIR%%action/gfx/vgui/320_nightvision.tga
%%HLDSDIR%%action/gfx/vgui/320_nsi_swat.tga
%%HLDSDIR%%action/gfx/vgui/320_number_5.tga
%%HLDSDIR%%action/gfx/vgui/320_resdog.tga
%%HLDSDIR%%action/gfx/vgui/320_saa.tga
%%HLDSDIR%%action/gfx/vgui/320_saaakimbo.tga
%%HLDSDIR%%action/gfx/vgui/320_saint.tga
%%HLDSDIR%%action/gfx/vgui/320_sas.tga
%%HLDSDIR%%action/gfx/vgui/320_shafted.tga
%%HLDSDIR%%action/gfx/vgui/320_shotgun.tga
%%HLDSDIR%%action/gfx/vgui/320_silencer.tga
%%HLDSDIR%%action/gfx/vgui/320_sniper.tga
%%HLDSDIR%%action/gfx/vgui/320_stealth.tga
%%HLDSDIR%%action/gfx/vgui/320_t.tga
%%HLDSDIR%%action/gfx/vgui/320_ta-kill-ya.tga
%%HLDSDIR%%action/gfx/vgui/320_the_pro.tga
%%HLDSDIR%%action/gfx/vgui/320_tony.tga
%%HLDSDIR%%action/gfx/vgui/320_vato.tga
%%HLDSDIR%%action/gfx/vgui/320_vest.tga
%%HLDSDIR%%action/gfx/vgui/320_virii.tga
%%HLDSDIR%%action/gfx/vgui/640_50cal.tga
%%HLDSDIR%%action/gfx/vgui/640_akimbo.tga
%%HLDSDIR%%action/gfx/vgui/640_akimbob.tga
%%HLDSDIR%%action/gfx/vgui/640_akimcolt.tga
%%HLDSDIR%%action/gfx/vgui/640_akimsaa.tga
%%HLDSDIR%%action/gfx/vgui/640_algod.tga
%%HLDSDIR%%action/gfx/vgui/640_anaconda.tga
%%HLDSDIR%%action/gfx/vgui/640_bandolier.tga
%%HLDSDIR%%action/gfx/vgui/640_benny.tga
%%HLDSDIR%%action/gfx/vgui/640_beretta.tga
%%HLDSDIR%%action/gfx/vgui/640_blank.tga
%%HLDSDIR%%action/gfx/vgui/640_carrianne.tga
%%HLDSDIR%%action/gfx/vgui/640_castr.tga
%%HLDSDIR%%action/gfx/vgui/640_colt.tga
%%HLDSDIR%%action/gfx/vgui/640_de50.tga
%%HLDSDIR%%action/gfx/vgui/640_drake.tga
%%HLDSDIR%%action/gfx/vgui/640_flashlight.tga
%%HLDSDIR%%action/gfx/vgui/640_frag.tga
%%HLDSDIR%%action/gfx/vgui/640_ghostdog.tga
%%HLDSDIR%%action/gfx/vgui/640_handcannon.tga
%%HLDSDIR%%action/gfx/vgui/640_hannie.tga
%%HLDSDIR%%action/gfx/vgui/640_harry.tga
%%HLDSDIR%%action/gfx/vgui/640_henchman.tga
%%HLDSDIR%%action/gfx/vgui/640_hm.tga
%%HLDSDIR%%action/gfx/vgui/640_holster.tga
%%HLDSDIR%%action/gfx/vgui/640_ivan.tga
%%HLDSDIR%%action/gfx/vgui/640_jeff.tga
%%HLDSDIR%%action/gfx/vgui/640_josaphine.tga
%%HLDSDIR%%action/gfx/vgui/640_knife.tga
%%HLDSDIR%%action/gfx/vgui/640_knuckles.tga
%%HLDSDIR%%action/gfx/vgui/640_lasersight.tga
%%HLDSDIR%%action/gfx/vgui/640_luke.tga
%%HLDSDIR%%action/gfx/vgui/640_m4.tga
%%HLDSDIR%%action/gfx/vgui/640_maggie.tga
%%HLDSDIR%%action/gfx/vgui/640_michigan.tga
%%HLDSDIR%%action/gfx/vgui/640_mp5.tga
%%HLDSDIR%%action/gfx/vgui/640_nightvision.tga
%%HLDSDIR%%action/gfx/vgui/640_nsi_swat.tga
%%HLDSDIR%%action/gfx/vgui/640_number_5.tga
%%HLDSDIR%%action/gfx/vgui/640_resdog.tga
%%HLDSDIR%%action/gfx/vgui/640_saa.tga
%%HLDSDIR%%action/gfx/vgui/640_saaakimbo.tga
%%HLDSDIR%%action/gfx/vgui/640_saint.tga
%%HLDSDIR%%action/gfx/vgui/640_sas.tga
%%HLDSDIR%%action/gfx/vgui/640_shafted.tga
%%HLDSDIR%%action/gfx/vgui/640_shotgun.tga
%%HLDSDIR%%action/gfx/vgui/640_silencer.tga
%%HLDSDIR%%action/gfx/vgui/640_sniper.tga
%%HLDSDIR%%action/gfx/vgui/640_stealth.tga
%%HLDSDIR%%action/gfx/vgui/640_t.tga
%%HLDSDIR%%action/gfx/vgui/640_ta-kill-ya.tga
%%HLDSDIR%%action/gfx/vgui/640_the_pro.tga
%%HLDSDIR%%action/gfx/vgui/640_tony.tga
%%HLDSDIR%%action/gfx/vgui/640_vato.tga
%%HLDSDIR%%action/gfx/vgui/640_vest.tga
%%HLDSDIR%%action/gfx/vgui/640_virii.tga
%%HLDSDIR%%action/liblist.gam
%%HLDSDIR%%action/mapcycle.txt
%%HLDSDIR%%action/maps/ahl_astorage.bsp
%%HLDSDIR%%action/maps/ahl_astorage.ini
%%HLDSDIR%%action/maps/ahl_astorage.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_astorage.txt
%%HLDSDIR%%action/maps/ahl_bananamans.bsp
%%HLDSDIR%%action/maps/ahl_bananamans.ini
%%HLDSDIR%%action/maps/ahl_bananamans.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_bananamans.txt
%%HLDSDIR%%action/maps/ahl_blockwar.bsp
%%HLDSDIR%%action/maps/ahl_blockwar.ini
%%HLDSDIR%%action/maps/ahl_blockwar.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_blockwar.txt
%%HLDSDIR%%action/maps/ahl_cliff2_snow.bsp
%%HLDSDIR%%action/maps/ahl_cliff2_snow.ini
%%HLDSDIR%%action/maps/ahl_cliff2_snow.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_cliff2_snow.txt
%%HLDSDIR%%action/maps/ahl_clinic.bsp
%%HLDSDIR%%action/maps/ahl_clinic.ini
%%HLDSDIR%%action/maps/ahl_clinic.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_clinic.txt
%%HLDSDIR%%action/maps/ahl_doombank.bsp
%%HLDSDIR%%action/maps/ahl_doombank.ini
%%HLDSDIR%%action/maps/ahl_doombank.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_doombank.txt
%%HLDSDIR%%action/maps/ahl_doombank2.loc
%%HLDSDIR%%action/maps/ahl_hbraid.bsp
%%HLDSDIR%%action/maps/ahl_hbraid.ini
%%HLDSDIR%%action/maps/ahl_hbraid.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_hbraid.txt
%%HLDSDIR%%action/maps/ahl_hkheat.bsp
%%HLDSDIR%%action/maps/ahl_hkheat.ini
%%HLDSDIR%%action/maps/ahl_hkheat.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_hkheat.txt
%%HLDSDIR%%action/maps/ahl_innercityxl.bsp
%%HLDSDIR%%action/maps/ahl_innercityxl.ini
%%HLDSDIR%%action/maps/ahl_innercityxl.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_innercityxl.txt
%%HLDSDIR%%action/maps/ahl_nocredit.bsp
%%HLDSDIR%%action/maps/ahl_nocredit.ini
%%HLDSDIR%%action/maps/ahl_nocredit.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_nocredit.txt
%%HLDSDIR%%action/maps/ahl_skylounge.bsp
%%HLDSDIR%%action/maps/ahl_skylounge.ini
%%HLDSDIR%%action/maps/ahl_skylounge.loc
%%PORTDOCS%%%%HLDSDIR%%action/maps/ahl_skylounge.txt
%%HLDSDIR%%action/maps/c0a0e.bsp
%%HLDSDIR%%action/maps/c4a1.bsp
%%HLDSDIR%%action/maps/stalkyard.ini
%%HLDSDIR%%action/maps/stalkyard.loc
%%HLDSDIR%%action/media/launch_deny1.wav
%%HLDSDIR%%action/media/launch_deny2.wav
%%HLDSDIR%%action/media/launch_dnmenu1.wav
%%HLDSDIR%%action/media/launch_glow1.wav
%%HLDSDIR%%action/media/launch_select1.wav
%%HLDSDIR%%action/media/launch_select2.wav
%%HLDSDIR%%action/media/launch_upmenu1.wav
%%HLDSDIR%%action/media/logo.avi
%%HLDSDIR%%action/model.lst
%%HLDSDIR%%action/models/50bmgshell.mdl
%%HLDSDIR%%action/models/50deshell.mdl
%%HLDSDIR%%action/models/556shell.mdl
%%HLDSDIR%%action/models/9mmshell.mdl
%%HLDSDIR%%action/models/NV.mdl
%%HLDSDIR%%action/models/grail.mdl
%%HLDSDIR%%action/models/grenade.mdl
%%HLDSDIR%%action/models/grenadet.mdl
%%HLDSDIR%%action/models/holster.mdl
%%HLDSDIR%%action/models/holstert.mdl
%%HLDSDIR%%action/models/p_357.mdl
%%HLDSDIR%%action/models/p_357_NV.mdl
%%HLDSDIR%%action/models/p_50cal.mdl
%%HLDSDIR%%action/models/p_50cal_nv.mdl
%%HLDSDIR%%action/models/p_50cal_silencer.mdl
%%HLDSDIR%%action/models/p_akimbob.mdl
%%HLDSDIR%%action/models/p_akimbob_NV.mdl
%%HLDSDIR%%action/models/p_akimbob_sl.mdl
%%HLDSDIR%%action/models/p_akimcolt.mdl
%%HLDSDIR%%action/models/p_akimcolt_NV.mdl
%%HLDSDIR%%action/models/p_akimsaa.mdl
%%HLDSDIR%%action/models/p_akimsaa_NV.mdl
%%HLDSDIR%%action/models/p_beretta.mdl
%%HLDSDIR%%action/models/p_beretta_NV.mdl
%%HLDSDIR%%action/models/p_beretta_silencer.mdl
%%HLDSDIR%%action/models/p_cannon.mdl
%%HLDSDIR%%action/models/p_cannon_NV.mdl
%%HLDSDIR%%action/models/p_colt.mdl
%%HLDSDIR%%action/models/p_colt_NV.mdl
%%HLDSDIR%%action/models/p_colt_silencer.mdl
%%HLDSDIR%%action/models/p_de50.mdl
%%HLDSDIR%%action/models/p_de50_NV.mdl
%%HLDSDIR%%action/models/p_grenade.mdl
%%HLDSDIR%%action/models/p_grenade_NV.mdl
%%HLDSDIR%%action/models/p_hkmp5.mdl
%%HLDSDIR%%action/models/p_hkmp5_NV.mdl
%%HLDSDIR%%action/models/p_hkmp5_silencer.mdl
%%HLDSDIR%%action/models/p_ithaca.mdl
%%HLDSDIR%%action/models/p_ithaca_NV.mdl
%%HLDSDIR%%action/models/p_knife.mdl
%%HLDSDIR%%action/models/p_knife_NV.mdl
%%HLDSDIR%%action/models/p_m4.mdl
%%HLDSDIR%%action/models/p_m4_NV.mdl
%%HLDSDIR%%action/models/p_msg90.mdl
%%HLDSDIR%%action/models/p_msg90_NV.mdl
%%HLDSDIR%%action/models/p_msg90_silencer.mdl
%%HLDSDIR%%action/models/p_saa.mdl
%%HLDSDIR%%action/models/p_saa_NV.mdl
%%HLDSDIR%%action/models/player.mdl
%%HLDSDIR%%action/models/player/algod/algod.bmp
%%HLDSDIR%%action/models/player/algod/algod.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/algod/scheme.txt
%%HLDSDIR%%action/models/player/benny/benny.bmp
%%HLDSDIR%%action/models/player/benny/benny.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/benny/scheme.txt
%%HLDSDIR%%action/models/player/carrianne/carrianne.bmp
%%HLDSDIR%%action/models/player/carrianne/carrianne.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/carrianne/scheme.txt
%%HLDSDIR%%action/models/player/castr/castr.bmp
%%HLDSDIR%%action/models/player/castr/castr.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/castr/scheme.txt
%%HLDSDIR%%action/models/player/drake/drake.bmp
%%HLDSDIR%%action/models/player/drake/drake.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/drake/scheme.txt
%%HLDSDIR%%action/models/player/ghostdog/ghostdog.bmp
%%HLDSDIR%%action/models/player/ghostdog/ghostdog.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/ghostdog/scheme.txt
%%HLDSDIR%%action/models/player/hannie/hannie.bmp
%%HLDSDIR%%action/models/player/hannie/hannie.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/hannie/scheme.txt
%%HLDSDIR%%action/models/player/harry/harry.bmp
%%HLDSDIR%%action/models/player/harry/harry.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/harry/scheme.txt
%%HLDSDIR%%action/models/player/henchman/henchman.bmp
%%HLDSDIR%%action/models/player/henchman/henchman.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/henchman/scheme.txt
%%HLDSDIR%%action/models/player/hm/hm.bmp
%%HLDSDIR%%action/models/player/hm/hm.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/hm/scheme.txt
%%HLDSDIR%%action/models/player/ivan/ivan.bmp
%%HLDSDIR%%action/models/player/ivan/ivan.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/ivan/scheme.txt
%%HLDSDIR%%action/models/player/jeff/jeff.bmp
%%HLDSDIR%%action/models/player/jeff/jeff.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/jeff/scheme.txt
%%HLDSDIR%%action/models/player/josaphine/josaphine.bmp
%%HLDSDIR%%action/models/player/josaphine/josaphine.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/josaphine/scheme.txt
%%HLDSDIR%%action/models/player/knuckles/knuckles.bmp
%%HLDSDIR%%action/models/player/knuckles/knuckles.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/knuckles/scheme.txt
%%HLDSDIR%%action/models/player/luke/luke.bmp
%%HLDSDIR%%action/models/player/luke/luke.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/luke/scheme.txt
%%HLDSDIR%%action/models/player/maggie/maggie.bmp
%%HLDSDIR%%action/models/player/maggie/maggie.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/maggie/scheme.txt
%%HLDSDIR%%action/models/player/michigan/michigan.bmp
%%HLDSDIR%%action/models/player/michigan/michigan.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/michigan/scheme.txt
%%HLDSDIR%%action/models/player/nsi_swat/nsi_swat.bmp
%%HLDSDIR%%action/models/player/nsi_swat/nsi_swat.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/nsi_swat/scheme.txt
%%HLDSDIR%%action/models/player/number_5/number_5.bmp
%%HLDSDIR%%action/models/player/number_5/number_5.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/number_5/scheme.txt
%%HLDSDIR%%action/models/player/resdog/resdog.bmp
%%HLDSDIR%%action/models/player/resdog/resdog.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/resdog/scheme.txt
%%HLDSDIR%%action/models/player/saint/saint.bmp
%%HLDSDIR%%action/models/player/saint/saint.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/saint/scheme.txt
%%HLDSDIR%%action/models/player/sas/sas.bmp
%%HLDSDIR%%action/models/player/sas/sas.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/sas/scheme.txt
%%PORTDOCS%%%%HLDSDIR%%action/models/player/shafted/scheme.txt
%%HLDSDIR%%action/models/player/shafted/shafted.bmp
%%HLDSDIR%%action/models/player/shafted/shafted.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/t/scheme.txt
%%HLDSDIR%%action/models/player/t/t.bmp
%%HLDSDIR%%action/models/player/t/t.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/ta-kill-ya/scheme.txt
%%HLDSDIR%%action/models/player/ta-kill-ya/ta-kill-ya.bmp
%%HLDSDIR%%action/models/player/ta-kill-ya/ta-kill-ya.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/the_pro/scheme.txt
%%HLDSDIR%%action/models/player/the_pro/the_pro.bmp
%%HLDSDIR%%action/models/player/the_pro/the_pro.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/tony/scheme.txt
%%HLDSDIR%%action/models/player/tony/tony.bmp
%%HLDSDIR%%action/models/player/tony/tony.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/vato/scheme.txt
%%HLDSDIR%%action/models/player/vato/vato.bmp
%%HLDSDIR%%action/models/player/vato/vato.mdl
%%PORTDOCS%%%%HLDSDIR%%action/models/player/virii/scheme.txt
%%HLDSDIR%%action/models/player/virii/virii.bmp
%%HLDSDIR%%action/models/player/virii/virii.mdl
%%HLDSDIR%%action/models/shells.mdl
%%HLDSDIR%%action/models/slippers.mdl
%%HLDSDIR%%action/models/v_50cal.mdl
%%HLDSDIR%%action/models/v_akimbob.mdl
%%HLDSDIR%%action/models/v_akimcolt.mdl
%%HLDSDIR%%action/models/v_akimsaa.mdl
%%HLDSDIR%%action/models/v_anaconda.mdl
%%HLDSDIR%%action/models/v_beretta.mdl
%%HLDSDIR%%action/models/v_cannon.mdl
%%HLDSDIR%%action/models/v_colt.mdl
%%HLDSDIR%%action/models/v_de50.mdl
%%HLDSDIR%%action/models/v_grenade.mdl
%%HLDSDIR%%action/models/v_hkmp5.mdl
%%HLDSDIR%%action/models/v_ithaca.mdl
%%HLDSDIR%%action/models/v_knife.mdl
%%HLDSDIR%%action/models/v_m4.mdl
%%HLDSDIR%%action/models/v_msg90.mdl
%%HLDSDIR%%action/models/v_punch.mdl
%%HLDSDIR%%action/models/v_saa.mdl
%%HLDSDIR%%action/models/venus.mdl
%%HLDSDIR%%action/models/w_357.mdl
%%HLDSDIR%%action/models/w_357ammobox.mdl
%%HLDSDIR%%action/models/w_357ammoboxt.mdl
%%HLDSDIR%%action/models/w_357t.mdl
%%HLDSDIR%%action/models/w_50cal.mdl
%%HLDSDIR%%action/models/w_50calclip.mdl
%%HLDSDIR%%action/models/w_50calclipt.mdl
%%HLDSDIR%%action/models/w_50calt.mdl
%%HLDSDIR%%action/models/w_9mmarclip.mdl
%%HLDSDIR%%action/models/w_9mmarclipt.mdl
%%HLDSDIR%%action/models/w_9mmclip.mdl
%%HLDSDIR%%action/models/w_9mmclipt.mdl
%%HLDSDIR%%action/models/w_antidote.mdl
%%HLDSDIR%%action/models/w_antidotet.mdl
%%HLDSDIR%%action/models/w_bandolier.mdl
%%HLDSDIR%%action/models/w_bandoliert.mdl
%%HLDSDIR%%action/models/w_battery.mdl
%%HLDSDIR%%action/models/w_batteryt.mdl
%%HLDSDIR%%action/models/w_beretta.mdl
%%HLDSDIR%%action/models/w_berettaempty.mdl
%%HLDSDIR%%action/models/w_berettaemptyt.mdl
%%HLDSDIR%%action/models/w_berettat.mdl
%%HLDSDIR%%action/models/w_cannon.mdl
%%HLDSDIR%%action/models/w_colt.mdl
%%HLDSDIR%%action/models/w_de50.mdl
%%HLDSDIR%%action/models/w_de50t.mdl
%%HLDSDIR%%action/models/w_grenade.mdl
%%HLDSDIR%%action/models/w_grenadet.mdl
%%HLDSDIR%%action/models/w_hkmp5.mdl
%%HLDSDIR%%action/models/w_hkmp5t.mdl
%%HLDSDIR%%action/models/w_ithaca.mdl
%%HLDSDIR%%action/models/w_ithacat.mdl
%%HLDSDIR%%action/models/w_knife.mdl
%%HLDSDIR%%action/models/w_knifet.mdl
%%HLDSDIR%%action/models/w_m4.mdl
%%HLDSDIR%%action/models/w_m4clip.mdl
%%HLDSDIR%%action/models/w_m4clipt.mdl
%%HLDSDIR%%action/models/w_m4t.mdl
%%HLDSDIR%%action/models/w_msg90.mdl
%%HLDSDIR%%action/models/w_msg90clip.mdl
%%HLDSDIR%%action/models/w_msg90clipt.mdl
%%HLDSDIR%%action/models/w_msg90t.mdl
%%HLDSDIR%%action/models/w_night.mdl
%%HLDSDIR%%action/models/w_nightt.mdl
%%HLDSDIR%%action/models/w_saa.mdl
%%HLDSDIR%%action/models/w_saat.mdl
%%HLDSDIR%%action/models/w_silencer.mdl
%%HLDSDIR%%action/models/w_silencert.mdl
%%HLDSDIR%%action/models/w_suit.mdl
%%HLDSDIR%%action/models/w_suitt.mdl
%%HLDSDIR%%action/motd.txt
%%HLDSDIR%%action/nocredit.wad
%%HLDSDIR%%action/police.wad
%%HLDSDIR%%action/server.cfg
%%HLDSDIR%%action/settings.scr
%%HLDSDIR%%action/sound/50cal/boltin.wav
%%HLDSDIR%%action/sound/50cal/boltout.wav
%%HLDSDIR%%action/sound/50cal/clip_in.wav
%%HLDSDIR%%action/sound/50cal/clip_out.wav
%%HLDSDIR%%action/sound/50cal/fire.wav
%%HLDSDIR%%action/sound/50cal/sl_fire.wav
%%HLDSDIR%%action/sound/ACTION/action.wav
%%HLDSDIR%%action/sound/ACTION/arm.wav
%%HLDSDIR%%action/sound/ACTION/camera.wav
%%HLDSDIR%%action/sound/ACTION/chest.wav
%%HLDSDIR%%action/sound/ACTION/dive_land.wav
%%HLDSDIR%%action/sound/ACTION/headshot.wav
%%HLDSDIR%%action/sound/ACTION/leg.wav
%%HLDSDIR%%action/sound/ACTION/lights.wav
%%HLDSDIR%%action/sound/ACTION/stomach.wav
%%HLDSDIR%%action/sound/De50/clip_in.wav
%%HLDSDIR%%action/sound/De50/clip_out.wav
%%HLDSDIR%%action/sound/De50/fire.wav
%%HLDSDIR%%action/sound/De50/slide.wav
%%HLDSDIR%%action/sound/De50/switch.wav
%%HLDSDIR%%action/sound/ambience/barn.wav
%%HLDSDIR%%action/sound/ambience/biggun1.wav
%%HLDSDIR%%action/sound/ambience/comeon.wav
%%HLDSDIR%%action/sound/ambience/csbell.wav
%%HLDSDIR%%action/sound/ambience/flush.wav
%%HLDSDIR%%action/sound/ambience/flush2.wav
%%HLDSDIR%%action/sound/ambience/hbalan1.wav
%%HLDSDIR%%action/sound/ambience/phone2_beep.wav
%%HLDSDIR%%action/sound/ambience/rain.wav
%%HLDSDIR%%action/sound/ambience/rain_inside.wav
%%HLDSDIR%%action/sound/ambience/thunder.wav
%%HLDSDIR%%action/sound/ambience/track1.wav
%%HLDSDIR%%action/sound/ambience/track2.wav
%%HLDSDIR%%action/sound/ambience/track3.wav
%%HLDSDIR%%action/sound/ambience/track4.wav
%%HLDSDIR%%action/sound/ambience/track5.wav
%%HLDSDIR%%action/sound/anaconda/close.wav
%%HLDSDIR%%action/sound/anaconda/fire.wav
%%HLDSDIR%%action/sound/anaconda/open.wav
%%HLDSDIR%%action/sound/anaconda/round_in.wav
%%HLDSDIR%%action/sound/anaconda/round_out.wav
%%HLDSDIR%%action/sound/anaconda/shells_in.wav
%%HLDSDIR%%action/sound/anaconda/shells_out.wav
%%HLDSDIR%%action/sound/banana/bell.wav
%%HLDSDIR%%action/sound/banana/boid1.wav
%%HLDSDIR%%action/sound/banana/boid2.wav
%%HLDSDIR%%action/sound/banana/borg_vs.wav
%%HLDSDIR%%action/sound/banana/drips.wav
%%HLDSDIR%%action/sound/banana/kn2.wav
%%HLDSDIR%%action/sound/banana/mond.wav
%%HLDSDIR%%action/sound/banana/pi.wav
%%HLDSDIR%%action/sound/banana/pi1.wav
%%HLDSDIR%%action/sound/banana/pi2.wav
%%HLDSDIR%%action/sound/banana/stream.wav
%%HLDSDIR%%action/sound/banana/tick.wav
%%HLDSDIR%%action/sound/banana/tock.wav
%%HLDSDIR%%action/sound/banana/water.wav
%%HLDSDIR%%action/sound/banana/wind3.wav
%%HLDSDIR%%action/sound/beretta/catch.wav
%%HLDSDIR%%action/sound/beretta/click.wav
%%HLDSDIR%%action/sound/beretta/clip_in.wav
%%HLDSDIR%%action/sound/beretta/clip_out.wav
%%HLDSDIR%%action/sound/beretta/cock.wav
%%HLDSDIR%%action/sound/beretta/fire.wav
%%HLDSDIR%%action/sound/beretta/sl_fire.wav
%%HLDSDIR%%action/sound/beretta/slide.wav
%%HLDSDIR%%action/sound/beretta/switch.wav
%%HLDSDIR%%action/sound/beretta/swoosh1.wav
%%HLDSDIR%%action/sound/beretta/swoosh2.wav
%%HLDSDIR%%action/sound/cannon/cin.wav
%%HLDSDIR%%action/sound/cannon/close.wav
%%HLDSDIR%%action/sound/cannon/cock.wav
%%HLDSDIR%%action/sound/cannon/cout.wav
%%HLDSDIR%%action/sound/cannon/empty.wav
%%HLDSDIR%%action/sound/cannon/fire.wav
%%HLDSDIR%%action/sound/cannon/open.wav
%%HLDSDIR%%action/sound/cannon/tapspan.wav
%%HLDSDIR%%action/sound/colt/fire.wav
%%HLDSDIR%%action/sound/colt/sl_fire.wav
%%HLDSDIR%%action/sound/colt1911/clip_in.wav
%%HLDSDIR%%action/sound/colt1911/clip_out.wav
%%HLDSDIR%%action/sound/colt1911/fire.wav
%%HLDSDIR%%action/sound/colt1911/sl_fire.wav
%%HLDSDIR%%action/sound/colt1911/slide.wav
%%HLDSDIR%%action/sound/colt1911/switch.wav
%%HLDSDIR%%action/sound/doom/bank/music.wav
%%HLDSDIR%%action/sound/doors/doormove10.wav
%%HLDSDIR%%action/sound/doors/doormove9.wav
%%HLDSDIR%%action/sound/doors/doorslam2.wav
%%HLDSDIR%%action/sound/doors/doorstop4.wav
%%HLDSDIR%%action/sound/doors/doorstop5.wav
%%HLDSDIR%%action/sound/doors/trunkslam.wav
%%HLDSDIR%%action/sound/drumdude/abt.wav
%%HLDSDIR%%action/sound/drumdude/citynoise.wav
%%HLDSDIR%%action/sound/drumdude/citynoise2.wav
%%HLDSDIR%%action/sound/drumdude/hbjazz.wav
%%HLDSDIR%%action/sound/drumdude/thekiller.wav
%%HLDSDIR%%action/sound/fists/knuckles.wav
%%HLDSDIR%%action/sound/grenade/bounce1.wav
%%HLDSDIR%%action/sound/grenade/bounce2.wav
%%HLDSDIR%%action/sound/grenade/pin.wav
%%HLDSDIR%%action/sound/hondo/blockwar/deghydra.wav
%%HLDSDIR%%action/sound/hondo/cliff2_snow/cliff_station.wav
%%HLDSDIR%%action/sound/hondo/cliff2_snow/cliff_tension.wav
%%HLDSDIR%%action/sound/hondo/cliff2_snow/cliff_water.wav
%%HLDSDIR%%action/sound/hondo/cliff2_snow/cliff_wind.wav
%%HLDSDIR%%action/sound/hondo/nocredit/citynoise1.wav
%%HLDSDIR%%action/sound/hondo/nocredit/citynoise2.wav
%%HLDSDIR%%action/sound/hondo/nocredit/csbell.wav
%%HLDSDIR%%action/sound/hondo/nocredit/hgthon.wav
%%HLDSDIR%%action/sound/hondo/nocredit/myaku.wav
%%HLDSDIR%%action/sound/hondo/nocredit/sirens.wav
%%HLDSDIR%%action/sound/items/ammo_44.wav
%%HLDSDIR%%action/sound/items/ammo_92fs.wav
%%HLDSDIR%%action/sound/items/ammo_m4.wav
%%HLDSDIR%%action/sound/items/ammo_mp5.wav
%%HLDSDIR%%action/sound/items/ammo_shells.wav
%%HLDSDIR%%action/sound/items/bandolier.wav
%%HLDSDIR%%action/sound/items/drop_weapon.wav
%%HLDSDIR%%action/sound/items/goggles.wav
%%HLDSDIR%%action/sound/items/holster.wav
%%HLDSDIR%%action/sound/items/laser.wav
%%HLDSDIR%%action/sound/items/pick_weapon.wav
%%HLDSDIR%%action/sound/items/silencer.wav
%%HLDSDIR%%action/sound/items/slippers.wav
%%HLDSDIR%%action/sound/items/vest.wav
%%HLDSDIR%%action/sound/ithaca/cock.wav
%%HLDSDIR%%action/sound/ithaca/fire.wav
%%HLDSDIR%%action/sound/ithaca/reload.wav
%%HLDSDIR%%action/sound/knife/air.wav
%%HLDSDIR%%action/sound/knife/hit.wav
%%HLDSDIR%%action/sound/knife/hit_flesh.wav
%%HLDSDIR%%action/sound/knife/hit_vest.wav
%%HLDSDIR%%action/sound/knife/hit_wall.wav
%%HLDSDIR%%action/sound/knife/stab.wav
%%HLDSDIR%%action/sound/knife/throw.wav
%%HLDSDIR%%action/sound/knife/wall.wav
%%HLDSDIR%%action/sound/m4/clip_in.wav
%%HLDSDIR%%action/sound/m4/clip_out.wav
%%HLDSDIR%%action/sound/m4/clipin.wav
%%HLDSDIR%%action/sound/m4/clipout.wav
%%HLDSDIR%%action/sound/m4/cock.wav
%%HLDSDIR%%action/sound/m4/fire.wav
%%HLDSDIR%%action/sound/m4/m4_cock.wav
%%HLDSDIR%%action/sound/m4/sl_fire.wav
%%HLDSDIR%%action/sound/materials.txt
%%HLDSDIR%%action/sound/misc/talk.wav
%%HLDSDIR%%action/sound/mp5/clip_in.wav
%%HLDSDIR%%action/sound/mp5/clip_out.wav
%%HLDSDIR%%action/sound/mp5/empty.wav
%%HLDSDIR%%action/sound/mp5/fire.wav
%%HLDSDIR%%action/sound/mp5/sl_fire.wav
%%HLDSDIR%%action/sound/mp5/slide.wav
%%HLDSDIR%%action/sound/mp5/switch.wav
%%HLDSDIR%%action/sound/octaved/70sound/70funkay.wav
%%HLDSDIR%%action/sound/octaved/70sound/elv.wav
%%HLDSDIR%%action/sound/octaved/70sound/gas_leak.wav
%%HLDSDIR%%action/sound/octaved/70sound/sirens.wav
%%HLDSDIR%%action/sound/octaved/ICXL_sound/ahl_dnb1_822.wav
%%HLDSDIR%%action/sound/octaved/ICXL_sound/ahl_dnb2_822.wav
%%HLDSDIR%%action/sound/octaved/ICXL_sound/warehousewind.wav
%%HLDSDIR%%action/sound/octaved/neon.wav
%%HLDSDIR%%action/sound/octaved/staf_city2.wav
%%HLDSDIR%%action/sound/octaved/windy.wav
%%HLDSDIR%%action/sound/player/female/pl_cut1.wav
%%HLDSDIR%%action/sound/player/female/pl_cut2.wav
%%HLDSDIR%%action/sound/player/female/pl_fall.wav
%%HLDSDIR%%action/sound/player/female/pl_fallhit1.wav
%%HLDSDIR%%action/sound/player/female/pl_fallhit2.wav
%%HLDSDIR%%action/sound/player/female/pl_fallhit3.wav
%%HLDSDIR%%action/sound/player/female/pl_pain100_1.wav
%%HLDSDIR%%action/sound/player/female/pl_pain100_2.wav
%%HLDSDIR%%action/sound/player/female/pl_pain25_1.wav
%%HLDSDIR%%action/sound/player/female/pl_pain25_2.wav
%%HLDSDIR%%action/sound/player/female/pl_pain50_1.wav
%%HLDSDIR%%action/sound/player/female/pl_pain50_2.wav
%%HLDSDIR%%action/sound/player/female/pl_pain75_1.wav
%%HLDSDIR%%action/sound/player/female/pl_pain75_2.wav
%%HLDSDIR%%action/sound/player/female/pl_shot1.wav
%%HLDSDIR%%action/sound/player/female/pl_shot2.wav
%%HLDSDIR%%action/sound/player/female/pl_shot3.wav
%%HLDSDIR%%action/sound/player/female/pl_shot4.wav
%%HLDSDIR%%action/sound/player/female/pl_shot5.wav
%%HLDSDIR%%action/sound/player/female/pl_shot6.wav
%%HLDSDIR%%action/sound/player/female/pl_shot7.wav
%%HLDSDIR%%action/sound/player/female/pl_sniped1.wav
%%HLDSDIR%%action/sound/player/female/pl_sniped2.wav
%%HLDSDIR%%action/sound/player/kick1.wav
%%HLDSDIR%%action/sound/player/kick2.wav
%%HLDSDIR%%action/sound/player/kickhit1.wav
%%HLDSDIR%%action/sound/player/kickhit2.wav
%%HLDSDIR%%action/sound/player/male/pl_cut1.wav
%%HLDSDIR%%action/sound/player/male/pl_cut2.wav
%%HLDSDIR%%action/sound/player/male/pl_fall.wav
%%HLDSDIR%%action/sound/player/male/pl_fallhit1.wav
%%HLDSDIR%%action/sound/player/male/pl_fallhit2.wav
%%HLDSDIR%%action/sound/player/male/pl_fallhit3.wav
%%HLDSDIR%%action/sound/player/male/pl_pain100_1.wav
%%HLDSDIR%%action/sound/player/male/pl_pain100_2.wav
%%HLDSDIR%%action/sound/player/male/pl_pain25_1.wav
%%HLDSDIR%%action/sound/player/male/pl_pain25_2.wav
%%HLDSDIR%%action/sound/player/male/pl_pain50_1.wav
%%HLDSDIR%%action/sound/player/male/pl_pain50_2.wav
%%HLDSDIR%%action/sound/player/male/pl_pain75_1.wav
%%HLDSDIR%%action/sound/player/male/pl_pain75_2.wav
%%HLDSDIR%%action/sound/player/male/pl_shot1.wav
%%HLDSDIR%%action/sound/player/male/pl_shot2.wav
%%HLDSDIR%%action/sound/player/male/pl_shot3.wav
%%HLDSDIR%%action/sound/player/male/pl_shot4.wav
%%HLDSDIR%%action/sound/player/male/pl_shot5.wav
%%HLDSDIR%%action/sound/player/male/pl_shot6.wav
%%HLDSDIR%%action/sound/player/male/pl_shot7.wav
%%HLDSDIR%%action/sound/player/male/pl_sniped1.wav
%%HLDSDIR%%action/sound/player/male/pl_sniped2.wav
%%HLDSDIR%%action/sound/player/pl_dirt1.wav
%%HLDSDIR%%action/sound/player/pl_dirt2.wav
%%HLDSDIR%%action/sound/player/pl_dirt3.wav
%%HLDSDIR%%action/sound/player/pl_dirt4.wav
%%HLDSDIR%%action/sound/player/pl_grate1.wav
%%HLDSDIR%%action/sound/player/pl_grate2.wav
%%HLDSDIR%%action/sound/player/pl_grate3.wav
%%HLDSDIR%%action/sound/player/pl_grate4.wav
%%HLDSDIR%%action/sound/player/pl_ladder1.wav
%%HLDSDIR%%action/sound/player/pl_ladder2.wav
%%HLDSDIR%%action/sound/player/pl_ladder3.wav
%%HLDSDIR%%action/sound/player/pl_ladder4.wav
%%HLDSDIR%%action/sound/player/pl_meatal5.wav
%%HLDSDIR%%action/sound/player/pl_metal1.wav
%%HLDSDIR%%action/sound/player/pl_metal2.wav
%%HLDSDIR%%action/sound/player/pl_metal3.wav
%%HLDSDIR%%action/sound/player/pl_metal4.wav
%%HLDSDIR%%action/sound/player/pl_snow1.wav
%%HLDSDIR%%action/sound/player/pl_snow2.wav
%%HLDSDIR%%action/sound/player/pl_snow3.wav
%%HLDSDIR%%action/sound/player/pl_snow4.wav
%%HLDSDIR%%action/sound/player/pl_step1.wav
%%HLDSDIR%%action/sound/player/pl_step2.wav
%%HLDSDIR%%action/sound/player/pl_step3.wav
%%HLDSDIR%%action/sound/player/pl_step4.wav
%%HLDSDIR%%action/sound/player/pl_tile1.wav
%%HLDSDIR%%action/sound/player/pl_tile2.wav
%%HLDSDIR%%action/sound/player/pl_tile3.wav
%%HLDSDIR%%action/sound/player/pl_tile4.wav
%%HLDSDIR%%action/sound/player/pl_wood1.wav
%%HLDSDIR%%action/sound/player/pl_wood2.wav
%%HLDSDIR%%action/sound/player/pl_wood3.wav
%%HLDSDIR%%action/sound/player/pl_wood4.wav
%%HLDSDIR%%action/sound/player/punch1.wav
%%HLDSDIR%%action/sound/player/punch2.wav
%%HLDSDIR%%action/sound/player/punchhit1.wav
%%HLDSDIR%%action/sound/player/punchhit2.wav
%%HLDSDIR%%action/sound/player/punchwall1.wav
%%HLDSDIR%%action/sound/player/punchwall2.wav
%%HLDSDIR%%action/sound/radio/female/1.wav
%%HLDSDIR%%action/sound/radio/female/10.wav
%%HLDSDIR%%action/sound/radio/female/2.wav
%%HLDSDIR%%action/sound/radio/female/3.wav
%%HLDSDIR%%action/sound/radio/female/4.wav
%%HLDSDIR%%action/sound/radio/female/5.wav
%%HLDSDIR%%action/sound/radio/female/6.wav
%%HLDSDIR%%action/sound/radio/female/7.wav
%%HLDSDIR%%action/sound/radio/female/8.wav
%%HLDSDIR%%action/sound/radio/female/9.wav
%%HLDSDIR%%action/sound/radio/female/back.wav
%%HLDSDIR%%action/sound/radio/female/backup.wav
%%HLDSDIR%%action/sound/radio/female/click.wav
%%HLDSDIR%%action/sound/radio/female/cover.wav
%%HLDSDIR%%action/sound/radio/female/down.wav
%%HLDSDIR%%action/sound/radio/female/enemyd.wav
%%HLDSDIR%%action/sound/radio/female/enemys.wav
%%HLDSDIR%%action/sound/radio/female/forward.wav
%%HLDSDIR%%action/sound/radio/female/go.wav
%%HLDSDIR%%action/sound/radio/female/im_hit.wav
%%HLDSDIR%%action/sound/radio/female/left.wav
%%HLDSDIR%%action/sound/radio/female/rdeath.wav
%%HLDSDIR%%action/sound/radio/female/reportin.wav
%%HLDSDIR%%action/sound/radio/female/right.wav
%%HLDSDIR%%action/sound/radio/female/taking_f.wav
%%HLDSDIR%%action/sound/radio/female/teamdown.wav
%%HLDSDIR%%action/sound/radio/female/treport.wav
%%HLDSDIR%%action/sound/radio/female/up.wav
%%HLDSDIR%%action/sound/radio/male/1.wav
%%HLDSDIR%%action/sound/radio/male/10.wav
%%HLDSDIR%%action/sound/radio/male/2.wav
%%HLDSDIR%%action/sound/radio/male/3.wav
%%HLDSDIR%%action/sound/radio/male/4.wav
%%HLDSDIR%%action/sound/radio/male/5.wav
%%HLDSDIR%%action/sound/radio/male/6.wav
%%HLDSDIR%%action/sound/radio/male/7.wav
%%HLDSDIR%%action/sound/radio/male/8.wav
%%HLDSDIR%%action/sound/radio/male/9.wav
%%HLDSDIR%%action/sound/radio/male/back.wav
%%HLDSDIR%%action/sound/radio/male/backup.wav
%%HLDSDIR%%action/sound/radio/male/click.wav
%%HLDSDIR%%action/sound/radio/male/cover.wav
%%HLDSDIR%%action/sound/radio/male/down.wav
%%HLDSDIR%%action/sound/radio/male/enemyd.wav
%%HLDSDIR%%action/sound/radio/male/enemys.wav
%%HLDSDIR%%action/sound/radio/male/forward.wav
%%HLDSDIR%%action/sound/radio/male/go.wav
%%HLDSDIR%%action/sound/radio/male/im_hit.wav
%%HLDSDIR%%action/sound/radio/male/left.wav
%%HLDSDIR%%action/sound/radio/male/rdeath.wav
%%HLDSDIR%%action/sound/radio/male/reportin.wav
%%HLDSDIR%%action/sound/radio/male/right.wav
%%HLDSDIR%%action/sound/radio/male/taking_f.wav
%%HLDSDIR%%action/sound/radio/male/teamdown.wav
%%HLDSDIR%%action/sound/radio/male/treport.wav
%%HLDSDIR%%action/sound/radio/male/up.wav
%%HLDSDIR%%action/sound/saa/cock.wav
%%HLDSDIR%%action/sound/saa/empty.wav
%%HLDSDIR%%action/sound/saa/fire.wav
%%HLDSDIR%%action/sound/saa/reload.wav
%%HLDSDIR%%action/sound/saa/round_in.wav
%%HLDSDIR%%action/sound/saa/swoosh.wav
%%HLDSDIR%%action/sound/saa/tapspan.wav
%%HLDSDIR%%action/sound/sniper/clip_in.wav
%%HLDSDIR%%action/sound/sniper/clip_out.wav
%%HLDSDIR%%action/sound/sniper/fire.wav
%%HLDSDIR%%action/sound/sniper/sl_fire.wav
%%HLDSDIR%%action/sound/sniper/zoom.wav
%%HLDSDIR%%action/sound/weapons/explode4.wav
%%HLDSDIR%%action/sound/weapons/explode5.wav
%%HLDSDIR%%action/sound/weapons/ric1.wav
%%HLDSDIR%%action/sound/weapons/ric2.wav
%%HLDSDIR%%action/sound/weapons/ric3.wav
%%HLDSDIR%%action/sound/weapons/ric4.wav
%%HLDSDIR%%action/sound/weapons/ric5.wav
%%HLDSDIR%%action/sprites/320_hud_ammo.spr
%%HLDSDIR%%action/sprites/320_hud_deaths.spr
%%HLDSDIR%%action/sprites/320_hud_icons.spr
%%HLDSDIR%%action/sprites/320_hud_items.spr
%%HLDSDIR%%action/sprites/320_hud_numbers.spr
%%HLDSDIR%%action/sprites/320_w50cals.spr
%%HLDSDIR%%action/sprites/320_w50calu.spr
%%HLDSDIR%%action/sprites/320_wakimbobs.spr
%%HLDSDIR%%action/sprites/320_wakimbobu.spr
%%HLDSDIR%%action/sprites/320_wakimcolts.spr
%%HLDSDIR%%action/sprites/320_wakimcoltu.spr
%%HLDSDIR%%action/sprites/320_wakimsaas.spr
%%HLDSDIR%%action/sprites/320_wakimsaau.spr
%%HLDSDIR%%action/sprites/320_wanacondas.spr
%%HLDSDIR%%action/sprites/320_wanacondau.spr
%%HLDSDIR%%action/sprites/320_wberettas.spr
%%HLDSDIR%%action/sprites/320_wberettau.spr
%%HLDSDIR%%action/sprites/320_wcolts.spr
%%HLDSDIR%%action/sprites/320_wcoltu.spr
%%HLDSDIR%%action/sprites/320_wde50s.spr
%%HLDSDIR%%action/sprites/320_wde50u.spr
%%HLDSDIR%%action/sprites/320_wfistss.spr
%%HLDSDIR%%action/sprites/320_wfistsu.spr
%%HLDSDIR%%action/sprites/320_wgrens.spr
%%HLDSDIR%%action/sprites/320_wgrenu.spr
%%HLDSDIR%%action/sprites/320_whcs.spr
%%HLDSDIR%%action/sprites/320_whcu.spr
%%HLDSDIR%%action/sprites/320_withacas.spr
%%HLDSDIR%%action/sprites/320_withacau.spr
%%HLDSDIR%%action/sprites/320_wknifes.spr
%%HLDSDIR%%action/sprites/320_wknifeu.spr
%%HLDSDIR%%action/sprites/320_wm4s.spr
%%HLDSDIR%%action/sprites/320_wm4u.spr
%%HLDSDIR%%action/sprites/320_wmp5s.spr
%%HLDSDIR%%action/sprites/320_wmp5u.spr
%%HLDSDIR%%action/sprites/320_wmsg90s.spr
%%HLDSDIR%%action/sprites/320_wmsg90u.spr
%%HLDSDIR%%action/sprites/320_wsaas.spr
%%HLDSDIR%%action/sprites/320_wsaau.spr
%%HLDSDIR%%action/sprites/320hud1.spr
%%HLDSDIR%%action/sprites/320hud2.spr
%%HLDSDIR%%action/sprites/320hud3.spr
%%HLDSDIR%%action/sprites/320hud4.spr
%%HLDSDIR%%action/sprites/320hud7.spr
%%HLDSDIR%%action/sprites/320hud7b.spr
%%HLDSDIR%%action/sprites/640_hud_ammo.spr
%%HLDSDIR%%action/sprites/640_hud_deaths.spr
%%HLDSDIR%%action/sprites/640_hud_icons.spr
%%HLDSDIR%%action/sprites/640_hud_items.spr
%%HLDSDIR%%action/sprites/640_hud_numbers.spr
%%HLDSDIR%%action/sprites/640_w50cals.spr
%%HLDSDIR%%action/sprites/640_w50calu.spr
%%HLDSDIR%%action/sprites/640_wakimbobs.spr
%%HLDSDIR%%action/sprites/640_wakimbobu.spr
%%HLDSDIR%%action/sprites/640_wakimcolts.spr
%%HLDSDIR%%action/sprites/640_wakimcoltu.spr
%%HLDSDIR%%action/sprites/640_wakimsaas.spr
%%HLDSDIR%%action/sprites/640_wakimsaau.spr
%%HLDSDIR%%action/sprites/640_wanacondas.spr
%%HLDSDIR%%action/sprites/640_wanacondau.spr
%%HLDSDIR%%action/sprites/640_wberettas.spr
%%HLDSDIR%%action/sprites/640_wberettau.spr
%%HLDSDIR%%action/sprites/640_wcolts.spr
%%HLDSDIR%%action/sprites/640_wcoltu.spr
%%HLDSDIR%%action/sprites/640_wde50s.spr
%%HLDSDIR%%action/sprites/640_wde50u.spr
%%HLDSDIR%%action/sprites/640_wfistss.spr
%%HLDSDIR%%action/sprites/640_wfistsu.spr
%%HLDSDIR%%action/sprites/640_wgrens.spr
%%HLDSDIR%%action/sprites/640_wgrenu.spr
%%HLDSDIR%%action/sprites/640_whcs.spr
%%HLDSDIR%%action/sprites/640_whcu.spr
%%HLDSDIR%%action/sprites/640_withacas.spr
%%HLDSDIR%%action/sprites/640_withacau.spr
%%HLDSDIR%%action/sprites/640_wknifes.spr
%%HLDSDIR%%action/sprites/640_wknifeu.spr
%%HLDSDIR%%action/sprites/640_wm4s.spr
%%HLDSDIR%%action/sprites/640_wm4u.spr
%%HLDSDIR%%action/sprites/640_wmp5s.spr
%%HLDSDIR%%action/sprites/640_wmp5u.spr
%%HLDSDIR%%action/sprites/640_wmsg90s.spr
%%HLDSDIR%%action/sprites/640_wmsg90u.spr
%%HLDSDIR%%action/sprites/640_wsaas.spr
%%HLDSDIR%%action/sprites/640_wsaau.spr
%%HLDSDIR%%action/sprites/BN_bulb.spr
%%HLDSDIR%%action/sprites/BN_lmp2l.spr
%%HLDSDIR%%action/sprites/BN_lmp2r.spr
%%HLDSDIR%%action/sprites/BN_me3.spr
%%HLDSDIR%%action/sprites/BN_tree.spr
%%HLDSDIR%%action/sprites/ahl_xhairs.spr
%%HLDSDIR%%action/sprites/crosshairs.spr
%%HLDSDIR%%action/sprites/duck.spr
%%HLDSDIR%%action/sprites/fists.txt
%%HLDSDIR%%action/sprites/hud.txt
%%HLDSDIR%%action/sprites/jump.spr
%%HLDSDIR%%action/sprites/ladder.spr
%%HLDSDIR%%action/sprites/laserdot.spr
%%HLDSDIR%%action/sprites/muzzleflash1.spr
%%HLDSDIR%%action/sprites/muzzleflash2.spr
%%HLDSDIR%%action/sprites/muzzleflash3.spr
%%HLDSDIR%%action/sprites/null.spr
%%HLDSDIR%%action/sprites/nvg.spr
%%HLDSDIR%%action/sprites/rain.spr
%%HLDSDIR%%action/sprites/rain2.spr
%%HLDSDIR%%action/sprites/scope_50cal.spr
%%HLDSDIR%%action/sprites/scope_msg90.spr
%%HLDSDIR%%action/sprites/shower.spr
%%HLDSDIR%%action/sprites/target.spr
%%HLDSDIR%%action/sprites/teamkiller.spr
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_50cal.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_akimbob.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_akimcolt.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_akimsaa.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_anaconda.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_beretta.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_colt.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_de50.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_fists.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_frag.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_handcannon.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_hkmp5.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_ithaca.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_knife.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_m4.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_msg90.txt
%%PORTDOCS%%%%HLDSDIR%%action/sprites/weapon_saa.txt
%%HLDSDIR%%action/teams.ini
%%HLDSDIR%%action/testahl
%%HLDSDIR%%action/testhlds
%%HLDSDIR%%action/user.scr
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_50cal.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_akimbob.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_akimcolt.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_akimsaa.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_anaconda.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_bandolier.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_beretta.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_colt.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_de50.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_fists.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_flashlight.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_frag.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_handcannon.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_holster.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_knife.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_lasersight.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_m4.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_mp5.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_nightvision.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_saa.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_shotgun.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_silencer.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_sniper.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_stealth.txt
%%PORTDOCS%%%%HLDSDIR%%action/weapons/info_vest.txt
@exec mkdir -p %D/%%HLDSDIR%%action
@dirrm %%HLDSDIR%%action/weapons
@dirrm %%HLDSDIR%%action/sprites
@dirrm %%HLDSDIR%%action/sound/weapons
@dirrm %%HLDSDIR%%action/sound/sniper
@dirrm %%HLDSDIR%%action/sound/saa
@dirrm %%HLDSDIR%%action/sound/radio/male
@dirrm %%HLDSDIR%%action/sound/radio/female
@dirrm %%HLDSDIR%%action/sound/radio
@dirrm %%HLDSDIR%%action/sound/player/male
@dirrm %%HLDSDIR%%action/sound/player/female
@dirrm %%HLDSDIR%%action/sound/player
@dirrm %%HLDSDIR%%action/sound/octaved/ICXL_sound
@dirrm %%HLDSDIR%%action/sound/octaved/70sound
@dirrm %%HLDSDIR%%action/sound/octaved
@dirrm %%HLDSDIR%%action/sound/mp5
@dirrm %%HLDSDIR%%action/sound/misc
@dirrm %%HLDSDIR%%action/sound/m4
@dirrm %%HLDSDIR%%action/sound/knife
@dirrm %%HLDSDIR%%action/sound/ithaca
@dirrm %%HLDSDIR%%action/sound/items
@dirrm %%HLDSDIR%%action/sound/hondo/nocredit
@dirrm %%HLDSDIR%%action/sound/hondo/cliff2_snow
@dirrm %%HLDSDIR%%action/sound/hondo/blockwar
@dirrm %%HLDSDIR%%action/sound/hondo
@dirrm %%HLDSDIR%%action/sound/grenade
@dirrm %%HLDSDIR%%action/sound/fists
@dirrm %%HLDSDIR%%action/sound/drumdude
@dirrm %%HLDSDIR%%action/sound/doors
@dirrm %%HLDSDIR%%action/sound/doom/bank
@dirrm %%HLDSDIR%%action/sound/doom
@dirrm %%HLDSDIR%%action/sound/colt1911
@dirrm %%HLDSDIR%%action/sound/colt
@dirrm %%HLDSDIR%%action/sound/cannon
@dirrm %%HLDSDIR%%action/sound/beretta
@dirrm %%HLDSDIR%%action/sound/banana
@dirrm %%HLDSDIR%%action/sound/anaconda
@dirrm %%HLDSDIR%%action/sound/ambience
@dirrm %%HLDSDIR%%action/sound/De50
@dirrm %%HLDSDIR%%action/sound/ACTION
@dirrm %%HLDSDIR%%action/sound/50cal
@dirrm %%HLDSDIR%%action/sound
@dirrm %%HLDSDIR%%action/models/player/virii
@dirrm %%HLDSDIR%%action/models/player/vato
@dirrm %%HLDSDIR%%action/models/player/tony
@dirrm %%HLDSDIR%%action/models/player/the_pro
@dirrm %%HLDSDIR%%action/models/player/ta-kill-ya
@dirrm %%HLDSDIR%%action/models/player/t
@dirrm %%HLDSDIR%%action/models/player/shafted
@dirrm %%HLDSDIR%%action/models/player/sas
@dirrm %%HLDSDIR%%action/models/player/saint
@dirrm %%HLDSDIR%%action/models/player/resdog
@dirrm %%HLDSDIR%%action/models/player/number_5
@dirrm %%HLDSDIR%%action/models/player/nsi_swat
@dirrm %%HLDSDIR%%action/models/player/michigan
@dirrm %%HLDSDIR%%action/models/player/maggie
@dirrm %%HLDSDIR%%action/models/player/luke
@dirrm %%HLDSDIR%%action/models/player/knuckles
@dirrm %%HLDSDIR%%action/models/player/josaphine
@dirrm %%HLDSDIR%%action/models/player/jeff
@dirrm %%HLDSDIR%%action/models/player/ivan
@dirrm %%HLDSDIR%%action/models/player/hm
@dirrm %%HLDSDIR%%action/models/player/henchman
@dirrm %%HLDSDIR%%action/models/player/harry
@dirrm %%HLDSDIR%%action/models/player/hannie
@dirrm %%HLDSDIR%%action/models/player/ghostdog
@dirrm %%HLDSDIR%%action/models/player/drake
@dirrm %%HLDSDIR%%action/models/player/castr
@dirrm %%HLDSDIR%%action/models/player/carrianne
@dirrm %%HLDSDIR%%action/models/player/benny
@dirrm %%HLDSDIR%%action/models/player/algod
@dirrm %%HLDSDIR%%action/models/player
@dirrm %%HLDSDIR%%action/models
@dirrm %%HLDSDIR%%action/media
@dirrm %%HLDSDIR%%action/maps
@dirrm %%HLDSDIR%%action/gfx/vgui
@dirrm %%HLDSDIR%%action/gfx/shell
@dirrm %%HLDSDIR%%action/gfx/env
@dirrm %%HLDSDIR%%action/gfx
@dirrm %%HLDSDIR%%action/events
@dirrm %%HLDSDIR%%action/dlls
@dirrm %%HLDSDIR%%action/cl_dlls
@unexec rmdir %D/%%HLDSDIR%%action/SAVE 2>/dev/null || true
@unexec rmdir %D/%%HLDSDIR%%action/logs 2>/dev/null || true
@unexec rmdir %D/%%HLDSDIR%%action 2>/dev/null || echo "If you are permanently removing this port, you should do a ``rm -rf ${PKG_PREFIX}/%%HLDSDIR%%action`` to remove any configuration files and logs left." | fmt