summaryrefslogtreecommitdiff
path: root/games/hlserver-action/pkg-plist
blob: a35ae049075fb8b45f0984764ad527de21cff2b6 (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
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
%%HLDSDIR%%action/5am.wad
%%PORTDOCS%%%%HLDSDIR%%action/AHL Config and Development readme.txt
%%PORTDOCS%%%%HLDSDIR%%action/ahl_credits.txt
%%HLDSDIR%%action/ahl_napoli.wad
%%HLDSDIR%%action/autoexec.cfg
%%HLDSDIR%%action/banana.txt
%%HLDSDIR%%action/banana.wad
%%HLDSDIR%%action/botinfo/50Cal.bif
%%HLDSDIR%%action/botinfo/Angus.bif
%%HLDSDIR%%action/botinfo/BandoColt.bif
%%HLDSDIR%%action/botinfo/Beretta.bif
%%HLDSDIR%%action/botinfo/Berettas.bif
%%HLDSDIR%%action/botinfo/Colin.bif
%%HLDSDIR%%action/botinfo/Colt.bif
%%HLDSDIR%%action/botinfo/Colts.bif
%%HLDSDIR%%action/botinfo/DEagle.bif
%%HLDSDIR%%action/botinfo/Handcannon.bif
%%HLDSDIR%%action/botinfo/Knives.bif
%%HLDSDIR%%action/botinfo/Leon.bif
%%HLDSDIR%%action/botinfo/M4.bif
%%HLDSDIR%%action/botinfo/Magnum.bif
%%HLDSDIR%%action/botinfo/Mook.bif
%%HLDSDIR%%action/botinfo/Mp5.bif
%%HLDSDIR%%action/botinfo/Nova.bif
%%HLDSDIR%%action/botinfo/Random.bif
%%HLDSDIR%%action/botinfo/SAA.bif
%%HLDSDIR%%action/botinfo/Saas.bif
%%HLDSDIR%%action/botinfo/Shotgun.bif
%%HLDSDIR%%action/botinfo/Sniper.bif
%%HLDSDIR%%action/botinfo/biflist.txt
%%HLDSDIR%%action/botinfo/default.bif
%%HLDSDIR%%action/botinfo/die.bif
%%HLDSDIR%%action/botinfo/heath.bif
%%HLDSDIR%%action/botinfo/hide.bif
%%HLDSDIR%%action/botinfo/kaoru.bif
%%HLDSDIR%%action/botinfo/kirt.bif
%%HLDSDIR%%action/botinfo/kyo.bif
%%HLDSDIR%%action/botinfo/luebbi.bif
%%HLDSDIR%%action/botinfo/luke.bif
%%HLDSDIR%%action/botinfo/mrt.bif
%%HLDSDIR%%action/botinfo/paddy.bif
%%HLDSDIR%%action/botinfo/pata.bif
%%HLDSDIR%%action/botinfo/shaft.bif
%%HLDSDIR%%action/botinfo/shinya.bif
%%HLDSDIR%%action/botinfo/toshi.bif
%%HLDSDIR%%action/botinfo/toshiya.bif
%%HLDSDIR%%action/botinfo/yoshiki.bif
%%HLDSDIR%%action/cached.wad
%%PORTDOCS%%%%HLDSDIR%%action/changes.txt
%%HLDSDIR%%action/chswrx01.wad
%%HLDSDIR%%action/cl_dlls/client.dll
%%HLDSDIR%%action/cl_dlls/p2fx.dll
%%HLDSDIR%%action/config.cfg
%%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/endlrainhc.wad
%%HLDSDIR%%action/events/50cal.sc
%%HLDSDIR%%action/events/50cal_2.sc
%%HLDSDIR%%action/events/akimbo.sc
%%HLDSDIR%%action/events/akimbo_2.sc
%%HLDSDIR%%action/events/akimcolt.sc
%%HLDSDIR%%action/events/akimcolt_2.sc
%%HLDSDIR%%action/events/akimsaa.sc
%%HLDSDIR%%action/events/akimsaa_2.sc
%%HLDSDIR%%action/events/anaconda.sc
%%HLDSDIR%%action/events/anaconda_2.sc
%%HLDSDIR%%action/events/beretta.sc
%%HLDSDIR%%action/events/beretta_2.sc
%%HLDSDIR%%action/events/blood.sc
%%HLDSDIR%%action/events/colt.sc
%%HLDSDIR%%action/events/coltSAA.sc
%%HLDSDIR%%action/events/coltSAA_2.sc
%%HLDSDIR%%action/events/colt_2.sc
%%HLDSDIR%%action/events/corpse.sc
%%HLDSDIR%%action/events/de50.sc
%%HLDSDIR%%action/events/de50_2.sc
%%HLDSDIR%%action/events/gibbed.sc
%%HLDSDIR%%action/events/grenade.sc
%%HLDSDIR%%action/events/handcannon.sc
%%HLDSDIR%%action/events/handcannon_2.sc
%%HLDSDIR%%action/events/m4.sc
%%HLDSDIR%%action/events/m4_2.sc
%%HLDSDIR%%action/events/monster12mm.sc
%%HLDSDIR%%action/events/monstermp5.sc
%%HLDSDIR%%action/events/mp5.sc
%%HLDSDIR%%action/events/mp5_2.sc
%%HLDSDIR%%action/events/shotgun.sc
%%HLDSDIR%%action/events/shotgun_2.sc
%%HLDSDIR%%action/events/sniper.sc
%%HLDSDIR%%action/events/sniper_2.sc
%%HLDSDIR%%action/events/tk.sc
%%HLDSDIR%%action/events/train.sc
%%HLDSDIR%%action/gfx.wad
%%HLDSDIR%%action/gfx/env/chaoscitybk.tga
%%HLDSDIR%%action/gfx/env/chaoscitydn.tga
%%HLDSDIR%%action/gfx/env/chaoscityft.tga
%%HLDSDIR%%action/gfx/env/chaoscitylf.tga
%%HLDSDIR%%action/gfx/env/chaoscityrt.tga
%%HLDSDIR%%action/gfx/env/chaoscityup.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/daisea.txt
%%HLDSDIR%%action/gfx/env/daiseabk.tga
%%HLDSDIR%%action/gfx/env/daiseadn.tga
%%HLDSDIR%%action/gfx/env/daiseaft.tga
%%HLDSDIR%%action/gfx/env/daisealf.tga
%%HLDSDIR%%action/gfx/env/daiseart.tga
%%HLDSDIR%%action/gfx/env/daiseaup.tga
%%HLDSDIR%%action/gfx/env/dwellbk.tga
%%HLDSDIR%%action/gfx/env/dwelldn.tga
%%HLDSDIR%%action/gfx/env/dwellft.tga
%%HLDSDIR%%action/gfx/env/dwelllf.tga
%%HLDSDIR%%action/gfx/env/dwellrt.tga
%%HLDSDIR%%action/gfx/env/dwellup.tga
%%HLDSDIR%%action/gfx/env/elitebk.tga
%%HLDSDIR%%action/gfx/env/elitedn.tga
%%HLDSDIR%%action/gfx/env/eliteft.tga
%%HLDSDIR%%action/gfx/env/elitelf.tga
%%HLDSDIR%%action/gfx/env/elitert.tga
%%HLDSDIR%%action/gfx/env/eliteup.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/futurebk.tga
%%HLDSDIR%%action/gfx/env/futuredn.tga
%%HLDSDIR%%action/gfx/env/futureft.tga
%%HLDSDIR%%action/gfx/env/futurelf.tga
%%HLDSDIR%%action/gfx/env/futurert.tga
%%HLDSDIR%%action/gfx/env/futureup.tga
%%HLDSDIR%%action/gfx/env/london.txt
%%HLDSDIR%%action/gfx/env/londonbk.tga
%%HLDSDIR%%action/gfx/env/londondn.tga
%%HLDSDIR%%action/gfx/env/londonft.tga
%%HLDSDIR%%action/gfx/env/londonlf.tga
%%HLDSDIR%%action/gfx/env/londonrt.tga
%%HLDSDIR%%action/gfx/env/londonup.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/sierra_bk.tga
%%HLDSDIR%%action/gfx/env/sierra_dn.tga
%%HLDSDIR%%action/gfx/env/sierra_ft.tga
%%HLDSDIR%%action/gfx/env/sierra_lf.tga
%%HLDSDIR%%action/gfx/env/sierra_rt.tga
%%HLDSDIR%%action/gfx/env/sierra_up.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/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/liblist.gam
%%HLDSDIR%%action/mapcycle.txt
%%HLDSDIR%%action/maps/RESTRICT_EVERYTHING.wlf
%%HLDSDIR%%action/maps/ahl_5am.bsp
%%HLDSDIR%%action/maps/ahl_5am.ini
%%HLDSDIR%%action/maps/ahl_5am.loc
%%HLDSDIR%%action/maps/ahl_5am.mat
%%HLDSDIR%%action/maps/ahl_5am.res
%%HLDSDIR%%action/maps/ahl_5am.txt
%%HLDSDIR%%action/maps/ahl_astorage.bsp
%%HLDSDIR%%action/maps/ahl_astorage.ini
%%HLDSDIR%%action/maps/ahl_astorage.loc
%%HLDSDIR%%action/maps/ahl_astorage.mat
%%HLDSDIR%%action/maps/ahl_astorage.txt
%%HLDSDIR%%action/maps/ahl_bananamans.bsp
%%HLDSDIR%%action/maps/ahl_bananamans.ini
%%HLDSDIR%%action/maps/ahl_bananamans.loc
%%HLDSDIR%%action/maps/ahl_bananamans.mat
%%HLDSDIR%%action/maps/ahl_bananamans.txt
%%HLDSDIR%%action/maps/ahl_bananamas.wlf
%%HLDSDIR%%action/maps/ahl_bankdoom.bsp
%%HLDSDIR%%action/maps/ahl_bankdoom.ini
%%HLDSDIR%%action/maps/ahl_bankdoom.loc
%%HLDSDIR%%action/maps/ahl_bankdoom.mat
%%HLDSDIR%%action/maps/ahl_bankdoom.txt
%%HLDSDIR%%action/maps/ahl_bankdoom.wlf
%%HLDSDIR%%action/maps/ahl_bxminiluv.bsp
%%HLDSDIR%%action/maps/ahl_bxminiluv.ini
%%HLDSDIR%%action/maps/ahl_bxminiluv.loc
%%HLDSDIR%%action/maps/ahl_bxminiluv.res
%%HLDSDIR%%action/maps/ahl_bxminiluv.txt
%%HLDSDIR%%action/maps/ahl_bxminiluv.wlf
%%HLDSDIR%%action/maps/ahl_calypso.bsp
%%HLDSDIR%%action/maps/ahl_calypso.ini
%%HLDSDIR%%action/maps/ahl_calypso.loc
%%HLDSDIR%%action/maps/ahl_calypso.mat
%%HLDSDIR%%action/maps/ahl_calypso.txt
%%HLDSDIR%%action/maps/ahl_casagrande.bsp
%%HLDSDIR%%action/maps/ahl_casagrande.ini
%%HLDSDIR%%action/maps/ahl_casagrande.loc
%%HLDSDIR%%action/maps/ahl_casagrande.mat
%%HLDSDIR%%action/maps/ahl_casagrande.res
%%HLDSDIR%%action/maps/ahl_casagrande.txt
%%HLDSDIR%%action/maps/ahl_casagrande.wlf
%%HLDSDIR%%action/maps/ahl_endlrainhc.bsp
%%HLDSDIR%%action/maps/ahl_endlrainhc.ini
%%HLDSDIR%%action/maps/ahl_endlrainhc.loc
%%HLDSDIR%%action/maps/ahl_endlrainhc.mat
%%HLDSDIR%%action/maps/ahl_endlrainhc.res
%%HLDSDIR%%action/maps/ahl_endlrainhc.txt
%%HLDSDIR%%action/maps/ahl_engholm.bsp
%%HLDSDIR%%action/maps/ahl_engholm.ini
%%HLDSDIR%%action/maps/ahl_engholm.loc
%%HLDSDIR%%action/maps/ahl_engholm.mat
%%HLDSDIR%%action/maps/ahl_engholm.txt
%%HLDSDIR%%action/maps/ahl_hkheat.bsp
%%HLDSDIR%%action/maps/ahl_hkheat.ini
%%HLDSDIR%%action/maps/ahl_hkheat.loc
%%HLDSDIR%%action/maps/ahl_hkheat.mat
%%HLDSDIR%%action/maps/ahl_hkheat.txt
%%HLDSDIR%%action/maps/ahl_napoli.bsp
%%HLDSDIR%%action/maps/ahl_napoli.ini
%%HLDSDIR%%action/maps/ahl_napoli.loc
%%HLDSDIR%%action/maps/ahl_napoli.mat
%%HLDSDIR%%action/maps/ahl_napoli.txt
%%HLDSDIR%%action/maps/ahl_napoli.wlf
%%HLDSDIR%%action/maps/ahl_nocredit.bsp
%%HLDSDIR%%action/maps/ahl_nocredit.ini
%%HLDSDIR%%action/maps/ahl_nocredit.loc
%%HLDSDIR%%action/maps/ahl_nocredit.mat
%%HLDSDIR%%action/maps/ahl_nocredit.txt
%%HLDSDIR%%action/maps/ahl_streets.bsp
%%HLDSDIR%%action/maps/ahl_streets.ini
%%HLDSDIR%%action/maps/ahl_streets.loc
%%HLDSDIR%%action/maps/ahl_streets.mat
%%HLDSDIR%%action/maps/ahl_streets.res
%%HLDSDIR%%action/maps/ahl_streets.txt
%%HLDSDIR%%action/maps/stalkyard.ini
%%HLDSDIR%%action/maps/stalkyard.loc
%%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/beethoven.mdl
%%HLDSDIR%%action/models/bullettime/bullet.mdl
%%HLDSDIR%%action/models/bullettime/bulletT.mdl
%%HLDSDIR%%action/models/bullettime/pellet.mdl
%%HLDSDIR%%action/models/bullettime/pelletT.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/lamp_off.mdl
%%HLDSDIR%%action/models/lamp_on.mdl
%%HLDSDIR%%action/models/overviews/ahl_5am.tga
%%HLDSDIR%%action/models/overviews/ahl_5am.txt
%%HLDSDIR%%action/models/overviews/ahl_astorage.tga
%%HLDSDIR%%action/models/overviews/ahl_astorage.txt
%%HLDSDIR%%action/models/overviews/ahl_bananamans.tga
%%HLDSDIR%%action/models/overviews/ahl_bananamans.txt
%%HLDSDIR%%action/models/overviews/ahl_blockwar.tga
%%HLDSDIR%%action/models/overviews/ahl_blockwar.txt
%%HLDSDIR%%action/models/overviews/ahl_bxminiluv.tga
%%HLDSDIR%%action/models/overviews/ahl_bxminiluv.txt
%%HLDSDIR%%action/models/overviews/ahl_calypso.tga
%%HLDSDIR%%action/models/overviews/ahl_calypso.txt
%%HLDSDIR%%action/models/overviews/ahl_cliff2_snow.tga
%%HLDSDIR%%action/models/overviews/ahl_cliff2_snow.txt
%%HLDSDIR%%action/models/overviews/ahl_clinic.tga
%%HLDSDIR%%action/models/overviews/ahl_clinic.txt
%%HLDSDIR%%action/models/overviews/ahl_endlrainhc.tga
%%HLDSDIR%%action/models/overviews/ahl_endlrainhc.txt
%%HLDSDIR%%action/models/overviews/ahl_engholm.tga
%%HLDSDIR%%action/models/overviews/ahl_engholm.txt
%%HLDSDIR%%action/models/overviews/ahl_hacienda.tga
%%HLDSDIR%%action/models/overviews/ahl_hacienda.txt
%%HLDSDIR%%action/models/overviews/ahl_hbraid.tga
%%HLDSDIR%%action/models/overviews/ahl_hbraid.txt
%%HLDSDIR%%action/models/overviews/ahl_hkheat.tga
%%HLDSDIR%%action/models/overviews/ahl_hkheat.txt
%%HLDSDIR%%action/models/overviews/ahl_innercityxl.tga
%%HLDSDIR%%action/models/overviews/ahl_innercityxl.txt
%%HLDSDIR%%action/models/overviews/ahl_napoli.tga
%%HLDSDIR%%action/models/overviews/ahl_napoli.txt
%%HLDSDIR%%action/models/overviews/ahl_nocredit.tga
%%HLDSDIR%%action/models/overviews/ahl_nocredit.txt
%%HLDSDIR%%action/models/overviews/ahl_skylounge.tga
%%HLDSDIR%%action/models/overviews/ahl_skylounge.txt
%%HLDSDIR%%action/models/overviews/ahl_streets.tga
%%HLDSDIR%%action/models/overviews/ahl_streets.txt
%%HLDSDIR%%action/models/overviews/pspbrwse.jbf
%%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/Malysa/Malysa.mdl
%%HLDSDIR%%action/models/player/Malysa/malysa.bmp
%%HLDSDIR%%action/models/player/Malysa/readme.txt
%%HLDSDIR%%action/models/player/Malysa/scheme.txt
%%HLDSDIR%%action/models/player/arnie/arnie.bmp
%%HLDSDIR%%action/models/player/arnie/arnie.mdl
%%HLDSDIR%%action/models/player/arnie/readme.txt
%%HLDSDIR%%action/models/player/arnie/scheme.txt
%%HLDSDIR%%action/models/player/benny/JT+bennyReadme.txt
%%HLDSDIR%%action/models/player/benny/benny.bmp
%%HLDSDIR%%action/models/player/benny/benny.mdl
%%HLDSDIR%%action/models/player/benny/scheme.txt
%%HLDSDIR%%action/models/player/chingamy/chingamy.bmp
%%HLDSDIR%%action/models/player/chingamy/chingamy.mdl
%%HLDSDIR%%action/models/player/chingamy/readme.txt
%%HLDSDIR%%action/models/player/chingamy/scheme.txt
%%HLDSDIR%%action/models/player/costa/costa.bmp
%%HLDSDIR%%action/models/player/costa/costa.mdl
%%HLDSDIR%%action/models/player/costa/scheme.txt
%%HLDSDIR%%action/models/player/dieter/dieter.bmp
%%HLDSDIR%%action/models/player/dieter/dieter.mdl
%%HLDSDIR%%action/models/player/dieter/readme.txt
%%HLDSDIR%%action/models/player/dieter/scheme.txt
%%HLDSDIR%%action/models/player/drake/drake.bmp
%%HLDSDIR%%action/models/player/drake/drake.mdl
%%HLDSDIR%%action/models/player/drake/scheme.txt
%%HLDSDIR%%action/models/player/eclipse/JTeclipse.txt
%%HLDSDIR%%action/models/player/eclipse/eclipse.bmp
%%HLDSDIR%%action/models/player/eclipse/eclipse.mdl
%%HLDSDIR%%action/models/player/eclipse/scheme.txt
%%HLDSDIR%%action/models/player/falcon/falcon.bmp
%%HLDSDIR%%action/models/player/falcon/falcon.mdl
%%HLDSDIR%%action/models/player/falcon/readme.txt
%%HLDSDIR%%action/models/player/falcon/scheme.txt
%%HLDSDIR%%action/models/player/ghostdog/ghostdog.bmp
%%HLDSDIR%%action/models/player/ghostdog/ghostdog.mdl
%%HLDSDIR%%action/models/player/ghostdog/scheme.txt
%%HLDSDIR%%action/models/player/hunter/hunter.bmp
%%HLDSDIR%%action/models/player/hunter/hunter.mdl
%%HLDSDIR%%action/models/player/hunter/readme.txt
%%HLDSDIR%%action/models/player/hunter/scheme.txt
%%HLDSDIR%%action/models/player/ivan/ivan.bmp
%%HLDSDIR%%action/models/player/ivan/ivan.mdl
%%HLDSDIR%%action/models/player/ivan/scheme.txt
%%HLDSDIR%%action/models/player/jack/jack.bmp
%%HLDSDIR%%action/models/player/jack/jack.mdl
%%HLDSDIR%%action/models/player/jack/scheme.txt
%%HLDSDIR%%action/models/player/jawb/jawb.bmp
%%HLDSDIR%%action/models/player/jawb/jawb.mdl
%%HLDSDIR%%action/models/player/jawb/readme.txt
%%HLDSDIR%%action/models/player/jawb/scheme.txt
%%HLDSDIR%%action/models/player/jeff/jeff.bmp
%%HLDSDIR%%action/models/player/jeff/jeff.mdl
%%HLDSDIR%%action/models/player/jeff/scheme.txt
%%HLDSDIR%%action/models/player/junkie/junkie.bmp
%%HLDSDIR%%action/models/player/junkie/junkie.mdl
%%HLDSDIR%%action/models/player/junkie/readme.txt
%%HLDSDIR%%action/models/player/junkie/scheme.txt
%%HLDSDIR%%action/models/player/kat/kat.bmp
%%HLDSDIR%%action/models/player/kat/kat.mdl
%%HLDSDIR%%action/models/player/kat/readme.txt
%%HLDSDIR%%action/models/player/kat/scheme.txt
%%HLDSDIR%%action/models/player/liz/liz.bmp
%%HLDSDIR%%action/models/player/liz/liz.mdl
%%HLDSDIR%%action/models/player/liz/scheme.txt
%%HLDSDIR%%action/models/player/loony/loony.bmp
%%HLDSDIR%%action/models/player/loony/loony.mdl
%%HLDSDIR%%action/models/player/loony/scheme.txt
%%HLDSDIR%%action/models/player/maggie/maggie.bmp
%%HLDSDIR%%action/models/player/maggie/maggie.mdl
%%HLDSDIR%%action/models/player/maggie/scheme.txt
%%HLDSDIR%%action/models/player/mccauley/mccauley.bmp
%%HLDSDIR%%action/models/player/mccauley/mccauley.mdl
%%HLDSDIR%%action/models/player/mccauley/scheme.txt
%%HLDSDIR%%action/models/player/mcclane/mcclane.bmp
%%HLDSDIR%%action/models/player/mcclane/mcclane.mdl
%%HLDSDIR%%action/models/player/mcclane/scheme.txt
%%HLDSDIR%%action/models/player/meister/meister.bmp
%%HLDSDIR%%action/models/player/meister/meister.mdl
%%HLDSDIR%%action/models/player/meister/scheme.txt
%%HLDSDIR%%action/models/player/misswong/misswong.bmp
%%HLDSDIR%%action/models/player/misswong/misswong.mdl
%%HLDSDIR%%action/models/player/misswong/misswong.txt
%%HLDSDIR%%action/models/player/misswong/scheme.txt
%%HLDSDIR%%action/models/player/noel/noel.bmp
%%HLDSDIR%%action/models/player/noel/noel.mdl
%%HLDSDIR%%action/models/player/noel/readme.txt
%%HLDSDIR%%action/models/player/noel/scheme.txt
%%HLDSDIR%%action/models/player/nsi_swat/nsi_swat readme.txt
%%HLDSDIR%%action/models/player/nsi_swat/nsi_swat.bmp
%%HLDSDIR%%action/models/player/nsi_swat/nsi_swat.mdl
%%HLDSDIR%%action/models/player/nsi_swat/scheme.txt
%%HLDSDIR%%action/models/player/pistolero/pistolero.bmp
%%HLDSDIR%%action/models/player/pistolero/pistolero.mdl
%%HLDSDIR%%action/models/player/pistolero/scheme.txt
%%HLDSDIR%%action/models/player/roggesemmel/roggesemmel.bmp
%%HLDSDIR%%action/models/player/roggesemmel/roggesemmel.mdl
%%HLDSDIR%%action/models/player/roggesemmel/scheme.txt
%%HLDSDIR%%action/models/player/saint/saint.bmp
%%HLDSDIR%%action/models/player/saint/saint.mdl
%%HLDSDIR%%action/models/player/saint/scheme.txt
%%HLDSDIR%%action/models/player/sas/sas.bmp
%%HLDSDIR%%action/models/player/sas/sas.mdl
%%HLDSDIR%%action/models/player/sas/scheme.txt
%%HLDSDIR%%action/models/player/snake/scheme.txt
%%HLDSDIR%%action/models/player/snake/snake.bmp
%%HLDSDIR%%action/models/player/snake/snake.mdl
%%HLDSDIR%%action/models/player/stylez/Stylez.bmp
%%HLDSDIR%%action/models/player/stylez/readme.txt
%%HLDSDIR%%action/models/player/stylez/scheme.txt
%%HLDSDIR%%action/models/player/stylez/stylez.mdl
%%HLDSDIR%%action/models/player/stylez/stylez.zip
%%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
%%HLDSDIR%%action/models/player/the_one/readme.txt
%%HLDSDIR%%action/models/player/the_one/scheme.txt
%%HLDSDIR%%action/models/player/the_one/the_one.bmp
%%HLDSDIR%%action/models/player/the_one/the_one.mdl
%%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/skel.mdl
%%HLDSDIR%%action/models/slippers.mdl
%%HLDSDIR%%action/models/trashcan.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/pldecal.wad
%%HLDSDIR%%action/police.wad
%%PORTDOCS%%%%HLDSDIR%%action/readme.txt
%%HLDSDIR%%action/server.cfg
%%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/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/Nevermore.wav
%%HLDSDIR%%action/sound/ambience/SixSirens.wav
%%HLDSDIR%%action/sound/ambience/flush.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/bells.wav
%%HLDSDIR%%action/sound/banana/boid1.wav
%%HLDSDIR%%action/sound/banana/boid2.wav
%%HLDSDIR%%action/sound/banana/borg_vs.wav
%%HLDSDIR%%action/sound/banana/borghhq.wav
%%HLDSDIR%%action/sound/banana/bridgecrash.wav
%%HLDSDIR%%action/sound/banana/drips.wav
%%HLDSDIR%%action/sound/banana/fountain.wav
%%HLDSDIR%%action/sound/banana/jungle.wav
%%HLDSDIR%%action/sound/banana/kn2.wav
%%HLDSDIR%%action/sound/banana/latinsummer2k.wav
%%HLDSDIR%%action/sound/banana/mond.wav
%%HLDSDIR%%action/sound/banana/ocean.wav
%%HLDSDIR%%action/sound/banana/payback.wav
%%HLDSDIR%%action/sound/banana/pi.wav
%%HLDSDIR%%action/sound/banana/pi1.wav
%%HLDSDIR%%action/sound/banana/pi2.wav
%%HLDSDIR%%action/sound/banana/radio.wav
%%HLDSDIR%%action/sound/banana/splash.wav
%%HLDSDIR%%action/sound/banana/stream.wav
%%HLDSDIR%%action/sound/banana/streets.wav
%%HLDSDIR%%action/sound/banana/tennis.wav
%%HLDSDIR%%action/sound/banana/tick.wav
%%HLDSDIR%%action/sound/banana/tock.wav
%%HLDSDIR%%action/sound/banana/vacuum.wav
%%HLDSDIR%%action/sound/banana/water.wav
%%HLDSDIR%%action/sound/banana/waterfall.wav
%%HLDSDIR%%action/sound/banana/wind3.wav
%%HLDSDIR%%action/sound/banana/wizborg.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/bunnyx/spook.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/debris/crete1.wav
%%HLDSDIR%%action/sound/debris/crete2.wav
%%HLDSDIR%%action/sound/debris/crete3.wav
%%HLDSDIR%%action/sound/debris/debris_concrete.wav
%%HLDSDIR%%action/sound/debris/debris_concrete1.wav
%%HLDSDIR%%action/sound/debris/debris_concrete2.wav
%%HLDSDIR%%action/sound/debris/debris_concrete3.wav
%%HLDSDIR%%action/sound/debris/debris_concrete_1.wav
%%HLDSDIR%%action/sound/debris/debris_concrete_2.wav
%%HLDSDIR%%action/sound/debris/debris_generic.wav
%%HLDSDIR%%action/sound/debris/debris_generic1.wav
%%HLDSDIR%%action/sound/debris/debris_generic2.wav
%%HLDSDIR%%action/sound/debris/debris_generic3.wav
%%HLDSDIR%%action/sound/debris/debris_generic_1.wav
%%HLDSDIR%%action/sound/debris/debris_generic_2.wav
%%HLDSDIR%%action/sound/debris/debris_glass.wav
%%HLDSDIR%%action/sound/debris/debris_glass1.wav
%%HLDSDIR%%action/sound/debris/debris_glass2.wav
%%HLDSDIR%%action/sound/debris/debris_glass3.wav
%%HLDSDIR%%action/sound/debris/debris_glass_1.wav
%%HLDSDIR%%action/sound/debris/debris_glass_2.wav
%%HLDSDIR%%action/sound/debris/debris_metal.wav
%%HLDSDIR%%action/sound/debris/debris_metal1.wav
%%HLDSDIR%%action/sound/debris/debris_metal2.wav
%%HLDSDIR%%action/sound/debris/debris_metal3.wav
%%HLDSDIR%%action/sound/debris/debris_metal_1.wav
%%HLDSDIR%%action/sound/debris/debris_metal_2.wav
%%HLDSDIR%%action/sound/debris/debris_wood.wav
%%HLDSDIR%%action/sound/debris/debris_wood1.wav
%%HLDSDIR%%action/sound/debris/debris_wood2.wav
%%HLDSDIR%%action/sound/debris/debris_wood3.wav
%%HLDSDIR%%action/sound/debris/debris_wood_1.wav
%%HLDSDIR%%action/sound/debris/debris_wood_2.wav
%%HLDSDIR%%action/sound/debris/glass1.wav
%%HLDSDIR%%action/sound/debris/glass2.wav
%%HLDSDIR%%action/sound/debris/glass3.wav
%%HLDSDIR%%action/sound/debris/glass4.wav
%%HLDSDIR%%action/sound/debris/impact_concrete.wav
%%HLDSDIR%%action/sound/debris/impact_concrete1.wav
%%HLDSDIR%%action/sound/debris/impact_concrete2.wav
%%HLDSDIR%%action/sound/debris/impact_concrete3.wav
%%HLDSDIR%%action/sound/debris/impact_concrete_1.wav
%%HLDSDIR%%action/sound/debris/impact_concrete_2.wav
%%HLDSDIR%%action/sound/debris/impact_metal.wav
%%HLDSDIR%%action/sound/debris/impact_metal1.wav
%%HLDSDIR%%action/sound/debris/impact_metal2.wav
%%HLDSDIR%%action/sound/debris/impact_metal3.wav
%%HLDSDIR%%action/sound/debris/impact_metal_1.wav
%%HLDSDIR%%action/sound/debris/impact_metal_2.wav
%%HLDSDIR%%action/sound/debris/impact_vent.wav
%%HLDSDIR%%action/sound/debris/impact_vent1.wav
%%HLDSDIR%%action/sound/debris/impact_vent2.wav
%%HLDSDIR%%action/sound/debris/impact_vent3.wav
%%HLDSDIR%%action/sound/debris/impact_vent_1.wav
%%HLDSDIR%%action/sound/debris/impact_vent_2.wav
%%HLDSDIR%%action/sound/debris/impact_wood.wav
%%HLDSDIR%%action/sound/debris/impact_wood1.wav
%%HLDSDIR%%action/sound/debris/impact_wood2.wav
%%HLDSDIR%%action/sound/debris/impact_wood3.wav
%%HLDSDIR%%action/sound/debris/impact_wood_1.wav
%%HLDSDIR%%action/sound/debris/impact_wood_2.wav
%%HLDSDIR%%action/sound/debris/metal1.wav
%%HLDSDIR%%action/sound/debris/metal2.wav
%%HLDSDIR%%action/sound/debris/metal3.wav
%%HLDSDIR%%action/sound/debris/metal4.wav
%%HLDSDIR%%action/sound/debris/metal5.wav
%%HLDSDIR%%action/sound/debris/metal6.wav
%%HLDSDIR%%action/sound/debris/wood1.wav
%%HLDSDIR%%action/sound/debris/wood2.wav
%%HLDSDIR%%action/sound/debris/wood3.wav
%%HLDSDIR%%action/sound/debris/wood4.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/5am/fishscratchfever.wav
%%HLDSDIR%%action/sound/hondo/5am/swimmingpool.wav
%%HLDSDIR%%action/sound/hondo/endlrain/rain.wav
%%HLDSDIR%%action/sound/hondo/endlrain/rain_inside.wav
%%HLDSDIR%%action/sound/hondo/endlrain/rain_window.wav
%%HLDSDIR%%action/sound/hondo/endlrain/squeezeit.wav
%%HLDSDIR%%action/sound/hondo/endlrain/xgmtp.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/neon.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/plexor/pgirl.wav
%%HLDSDIR%%action/sound/radio/female/0.wav
%%HLDSDIR%%action/sound/radio/female/1.wav
%%HLDSDIR%%action/sound/radio/female/10.wav
%%HLDSDIR%%action/sound/radio/female/11.wav
%%HLDSDIR%%action/sound/radio/female/12.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/area.wav
%%HLDSDIR%%action/sound/radio/female/back.wav
%%HLDSDIR%%action/sound/radio/female/backup.wav
%%HLDSDIR%%action/sound/radio/female/black.wav
%%HLDSDIR%%action/sound/radio/female/blue.wav
%%HLDSDIR%%action/sound/radio/female/building.wav
%%HLDSDIR%%action/sound/radio/female/caution.wav
%%HLDSDIR%%action/sound/radio/female/ceasefire.wav
%%HLDSDIR%%action/sound/radio/female/clear.wav
%%HLDSDIR%%action/sound/radio/female/click.wav
%%HLDSDIR%%action/sound/radio/female/code.wav
%%HLDSDIR%%action/sound/radio/female/cover.wav
%%HLDSDIR%%action/sound/radio/female/coverme.wav
%%HLDSDIR%%action/sound/radio/female/coverthis.wav
%%HLDSDIR%%action/sound/radio/female/door.wav
%%HLDSDIR%%action/sound/radio/female/down.wav
%%HLDSDIR%%action/sound/radio/female/enemy.wav
%%HLDSDIR%%action/sound/radio/female/enemyd.wav
%%HLDSDIR%%action/sound/radio/female/enemys.wav
%%HLDSDIR%%action/sound/radio/female/flank.wav
%%HLDSDIR%%action/sound/radio/female/floor.wav
%%HLDSDIR%%action/sound/radio/female/forward.wav
%%HLDSDIR%%action/sound/radio/female/go.wav
%%HLDSDIR%%action/sound/radio/female/gotit.wav
%%HLDSDIR%%action/sound/radio/female/green.wav
%%HLDSDIR%%action/sound/radio/female/grenade.wav
%%HLDSDIR%%action/sound/radio/female/holdpos.wav
%%HLDSDIR%%action/sound/radio/female/im_hit.wav
%%HLDSDIR%%action/sound/radio/female/incoming.wav
%%HLDSDIR%%action/sound/radio/female/left.wav
%%HLDSDIR%%action/sound/radio/female/negative.wav
%%HLDSDIR%%action/sound/radio/female/oclock.wav
%%HLDSDIR%%action/sound/radio/female/rdeath.wav
%%HLDSDIR%%action/sound/radio/female/red.wav
%%HLDSDIR%%action/sound/radio/female/regroup.wav
%%HLDSDIR%%action/sound/radio/female/reportin.wav
%%HLDSDIR%%action/sound/radio/female/retreat.wav
%%HLDSDIR%%action/sound/radio/female/right.wav
%%HLDSDIR%%action/sound/radio/female/roof.wav
%%HLDSDIR%%action/sound/radio/female/room.wav
%%HLDSDIR%%action/sound/radio/female/run.wav
%%HLDSDIR%%action/sound/radio/female/silence.wav
%%HLDSDIR%%action/sound/radio/female/splitup.wav
%%HLDSDIR%%action/sound/radio/female/stairway.wav
%%HLDSDIR%%action/sound/radio/female/standback.wav
%%HLDSDIR%%action/sound/radio/female/street.wav
%%HLDSDIR%%action/sound/radio/female/takecover.wav
%%HLDSDIR%%action/sound/radio/female/taking_f.wav
%%HLDSDIR%%action/sound/radio/female/team.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/female/white.wav
%%HLDSDIR%%action/sound/radio/female/window.wav
%%HLDSDIR%%action/sound/radio/female/yellow.wav
%%HLDSDIR%%action/sound/radio/male/0.wav
%%HLDSDIR%%action/sound/radio/male/1.wav
%%HLDSDIR%%action/sound/radio/male/10.wav
%%HLDSDIR%%action/sound/radio/male/11.wav
%%HLDSDIR%%action/sound/radio/male/12.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/area.wav
%%HLDSDIR%%action/sound/radio/male/back.wav
%%HLDSDIR%%action/sound/radio/male/backup.wav
%%HLDSDIR%%action/sound/radio/male/black.wav
%%HLDSDIR%%action/sound/radio/male/blue.wav
%%HLDSDIR%%action/sound/radio/male/borg1.wav
%%HLDSDIR%%action/sound/radio/male/building.wav
%%HLDSDIR%%action/sound/radio/male/caution.wav
%%HLDSDIR%%action/sound/radio/male/ceasefire.wav
%%HLDSDIR%%action/sound/radio/male/clear.wav
%%HLDSDIR%%action/sound/radio/male/click.wav
%%HLDSDIR%%action/sound/radio/male/code.wav
%%HLDSDIR%%action/sound/radio/male/cover.wav
%%HLDSDIR%%action/sound/radio/male/coverme.wav
%%HLDSDIR%%action/sound/radio/male/coverthis.wav
%%HLDSDIR%%action/sound/radio/male/door.wav
%%HLDSDIR%%action/sound/radio/male/down.wav
%%HLDSDIR%%action/sound/radio/male/enemy.wav
%%HLDSDIR%%action/sound/radio/male/enemyd.wav
%%HLDSDIR%%action/sound/radio/male/enemys.wav
%%HLDSDIR%%action/sound/radio/male/flank.wav
%%HLDSDIR%%action/sound/radio/male/floor.wav
%%HLDSDIR%%action/sound/radio/male/forward.wav
%%HLDSDIR%%action/sound/radio/male/go.wav
%%HLDSDIR%%action/sound/radio/male/gotit.wav
%%HLDSDIR%%action/sound/radio/male/green.wav
%%HLDSDIR%%action/sound/radio/male/grenade.wav
%%HLDSDIR%%action/sound/radio/male/holdpos.wav
%%HLDSDIR%%action/sound/radio/male/im_hit.wav
%%HLDSDIR%%action/sound/radio/male/incoming.wav
%%HLDSDIR%%action/sound/radio/male/left.wav
%%HLDSDIR%%action/sound/radio/male/negative.wav
%%HLDSDIR%%action/sound/radio/male/oclock.wav
%%HLDSDIR%%action/sound/radio/male/rdeath.wav
%%HLDSDIR%%action/sound/radio/male/red.wav
%%HLDSDIR%%action/sound/radio/male/regroup.wav
%%HLDSDIR%%action/sound/radio/male/reportin.wav
%%HLDSDIR%%action/sound/radio/male/retreat.wav
%%HLDSDIR%%action/sound/radio/male/right.wav
%%HLDSDIR%%action/sound/radio/male/roof.wav
%%HLDSDIR%%action/sound/radio/male/room.wav
%%HLDSDIR%%action/sound/radio/male/run.wav
%%HLDSDIR%%action/sound/radio/male/silence.wav
%%HLDSDIR%%action/sound/radio/male/splitup.wav
%%HLDSDIR%%action/sound/radio/male/stairway.wav
%%HLDSDIR%%action/sound/radio/male/standback.wav
%%HLDSDIR%%action/sound/radio/male/street.wav
%%HLDSDIR%%action/sound/radio/male/takecover.wav
%%HLDSDIR%%action/sound/radio/male/taking_f.wav
%%HLDSDIR%%action/sound/radio/male/team.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/radio/male/white.wav
%%HLDSDIR%%action/sound/radio/male/window.wav
%%HLDSDIR%%action/sound/radio/male/yellow.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/50cal_scope.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/bn_leaves.spr
%%HLDSDIR%%action/sprites/bn_me.spr
%%HLDSDIR%%action/sprites/bn_me2.spr
%%HLDSDIR%%action/sprites/bn_mey.spr
%%HLDSDIR%%action/sprites/bn_tree1.spr
%%HLDSDIR%%action/sprites/bullettime/bullet.spr
%%HLDSDIR%%action/sprites/bullettime/bullet_trail.spr
%%HLDSDIR%%action/sprites/bullettime/bullet_wizz.spr
%%HLDSDIR%%action/sprites/bullettime/pellet.spr
%%HLDSDIR%%action/sprites/crosshairs.spr
%%HLDSDIR%%action/sprites/hud.txt
%%HLDSDIR%%action/sprites/laserdot.spr
%%HLDSDIR%%action/sprites/msg90_scope.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/p2fx/blood.spr
%%HLDSDIR%%action/sprites/p2fx/debris_concrete1.spr
%%HLDSDIR%%action/sprites/p2fx/debris_concrete2.spr
%%HLDSDIR%%action/sprites/p2fx/debris_concrete3.spr
%%HLDSDIR%%action/sprites/p2fx/debris_concrete4.spr
%%HLDSDIR%%action/sprites/p2fx/debris_concrete5.spr
%%HLDSDIR%%action/sprites/p2fx/debris_default.spr
%%HLDSDIR%%action/sprites/p2fx/debris_dirt1.spr
%%HLDSDIR%%action/sprites/p2fx/debris_dirt2.spr
%%HLDSDIR%%action/sprites/p2fx/debris_dirt3.spr
%%HLDSDIR%%action/sprites/p2fx/debris_dirt4.spr
%%HLDSDIR%%action/sprites/p2fx/debris_dirt5.spr
%%HLDSDIR%%action/sprites/p2fx/debris_generic1.spr
%%HLDSDIR%%action/sprites/p2fx/debris_generic2.spr
%%HLDSDIR%%action/sprites/p2fx/debris_generic3.spr
%%HLDSDIR%%action/sprites/p2fx/debris_generic4.spr
%%HLDSDIR%%action/sprites/p2fx/debris_generic5.spr
%%HLDSDIR%%action/sprites/p2fx/debris_glass1.spr
%%HLDSDIR%%action/sprites/p2fx/debris_glass2.spr
%%HLDSDIR%%action/sprites/p2fx/debris_glass3.spr
%%HLDSDIR%%action/sprites/p2fx/debris_glass4.spr
%%HLDSDIR%%action/sprites/p2fx/debris_glass5.spr
%%HLDSDIR%%action/sprites/p2fx/debris_metal1.spr
%%HLDSDIR%%action/sprites/p2fx/debris_metal2.spr
%%HLDSDIR%%action/sprites/p2fx/debris_metal3.spr
%%HLDSDIR%%action/sprites/p2fx/debris_metal4.spr
%%HLDSDIR%%action/sprites/p2fx/debris_metal5.spr
%%HLDSDIR%%action/sprites/p2fx/debris_rock1.spr
%%HLDSDIR%%action/sprites/p2fx/debris_rock2.spr
%%HLDSDIR%%action/sprites/p2fx/debris_rock3.spr
%%HLDSDIR%%action/sprites/p2fx/debris_rock4.spr
%%HLDSDIR%%action/sprites/p2fx/debris_rock5.spr
%%HLDSDIR%%action/sprites/p2fx/debris_snow1.spr
%%HLDSDIR%%action/sprites/p2fx/debris_snow2.spr
%%HLDSDIR%%action/sprites/p2fx/debris_snow3.spr
%%HLDSDIR%%action/sprites/p2fx/debris_snow4.spr
%%HLDSDIR%%action/sprites/p2fx/debris_snow5.spr
%%HLDSDIR%%action/sprites/p2fx/debris_tile1.spr
%%HLDSDIR%%action/sprites/p2fx/debris_tile2.spr
%%HLDSDIR%%action/sprites/p2fx/debris_tile3.spr
%%HLDSDIR%%action/sprites/p2fx/debris_tile4.spr
%%HLDSDIR%%action/sprites/p2fx/debris_tile5.spr
%%HLDSDIR%%action/sprites/p2fx/debris_wood1.spr
%%HLDSDIR%%action/sprites/p2fx/debris_wood2.spr
%%HLDSDIR%%action/sprites/p2fx/debris_wood3.spr
%%HLDSDIR%%action/sprites/p2fx/debris_wood4.spr
%%HLDSDIR%%action/sprites/p2fx/debris_wood5.spr
%%HLDSDIR%%action/sprites/p2fx/metal_spark1.spr
%%HLDSDIR%%action/sprites/p2fx/metal_spark2.spr
%%HLDSDIR%%action/sprites/p2fx/muzzle_50cal.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_akimbob.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_akimcolt.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_akimsaa.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_anaconda.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_beretta.spr
%%HLDSDIR%%action/sprites/p2fx/muzzle_beretta.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_colt.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_de50.spr
%%HLDSDIR%%action/sprites/p2fx/muzzle_de50.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_handcannon.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_hkmp5.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_ithaca.spr
%%HLDSDIR%%action/sprites/p2fx/muzzle_ithaca.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_m4.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_saa.txt
%%HLDSDIR%%action/sprites/p2fx/muzzle_sniper.txt
%%HLDSDIR%%action/sprites/p2fx/smoke1_loop.spr
%%HLDSDIR%%action/sprites/p2fx/spark_particle.spr
%%HLDSDIR%%action/sprites/p2fx/wallpuff.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/teamkiller.spr
%%HLDSDIR%%action/sprites/weapon_50cal.txt
%%HLDSDIR%%action/sprites/weapon_akimbob.txt
%%HLDSDIR%%action/sprites/weapon_akimcolt.txt
%%HLDSDIR%%action/sprites/weapon_akimsaa.txt
%%HLDSDIR%%action/sprites/weapon_anaconda.txt
%%HLDSDIR%%action/sprites/weapon_beretta.txt
%%HLDSDIR%%action/sprites/weapon_colt.txt
%%HLDSDIR%%action/sprites/weapon_de50.txt
%%HLDSDIR%%action/sprites/weapon_fists.txt
%%HLDSDIR%%action/sprites/weapon_frag.txt
%%HLDSDIR%%action/sprites/weapon_handcannon.txt
%%HLDSDIR%%action/sprites/weapon_hkmp5.txt
%%HLDSDIR%%action/sprites/weapon_ithaca.txt
%%HLDSDIR%%action/sprites/weapon_knife.txt
%%HLDSDIR%%action/sprites/weapon_m4.txt
%%HLDSDIR%%action/sprites/weapon_msg90.txt
%%HLDSDIR%%action/sprites/weapon_punch.txt
%%HLDSDIR%%action/sprites/weapon_saa.txt
%%HLDSDIR%%action/teams.ini
%%HLDSDIR%%action/weapons/info_50cal.txt
%%HLDSDIR%%action/weapons/info_akimbob.txt
%%HLDSDIR%%action/weapons/info_akimcolt.txt
%%HLDSDIR%%action/weapons/info_akimsaa.txt
%%HLDSDIR%%action/weapons/info_anaconda.txt
%%HLDSDIR%%action/weapons/info_bandolier.txt
%%HLDSDIR%%action/weapons/info_beretta.txt
%%HLDSDIR%%action/weapons/info_colt.txt
%%HLDSDIR%%action/weapons/info_de50.txt
%%HLDSDIR%%action/weapons/info_fists.txt
%%HLDSDIR%%action/weapons/info_flashlight.txt
%%HLDSDIR%%action/weapons/info_frag.txt
%%HLDSDIR%%action/weapons/info_handcannon.txt
%%HLDSDIR%%action/weapons/info_holster.txt
%%HLDSDIR%%action/weapons/info_knife.txt
%%HLDSDIR%%action/weapons/info_lasersight.txt
%%HLDSDIR%%action/weapons/info_m4.txt
%%HLDSDIR%%action/weapons/info_mp5.txt
%%HLDSDIR%%action/weapons/info_nightvision.txt
%%HLDSDIR%%action/weapons/info_saa.txt
%%HLDSDIR%%action/weapons/info_shotgun.txt
%%HLDSDIR%%action/weapons/info_silencer.txt
%%HLDSDIR%%action/weapons/info_sniper.txt
%%HLDSDIR%%action/weapons/info_stealth.txt
%%HLDSDIR%%action/weapons/info_vest.txt
%%HLDSDIR%%action/wpfiles/ahl_5am.awf
%%HLDSDIR%%action/wpfiles/ahl_astorage.awf
%%HLDSDIR%%action/wpfiles/ahl_bananamans.awf
%%HLDSDIR%%action/wpfiles/ahl_bankdoom.awf
%%HLDSDIR%%action/wpfiles/ahl_bxminiluv.awf
%%HLDSDIR%%action/wpfiles/ahl_calypso.awf
%%HLDSDIR%%action/wpfiles/ahl_casagrande.awf
%%HLDSDIR%%action/wpfiles/ahl_endlrainhc.awf
%%HLDSDIR%%action/wpfiles/ahl_engholm.awf
%%HLDSDIR%%action/wpfiles/ahl_hkheat.awf
%%HLDSDIR%%action/wpfiles/ahl_napoli.awf
%%HLDSDIR%%action/wpfiles/ahl_nocredit.awf
%%HLDSDIR%%action/wpfiles/ahl_streets.awf
%%HLDSDIR%%action/wpfiles/stalkyard.awf
@dirrm %%HLDSDIR%%action/wpfiles
@dirrm %%HLDSDIR%%action/weapons
@dirrm %%HLDSDIR%%action/sprites/p2fx
@dirrm %%HLDSDIR%%action/sprites/bullettime
@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/plexor
@dirrm %%HLDSDIR%%action/sound/player/male
@dirrm %%HLDSDIR%%action/sound/player/female
@dirrm %%HLDSDIR%%action/sound/player
@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/endlrain
@dirrm %%HLDSDIR%%action/sound/hondo/5am
@dirrm %%HLDSDIR%%action/sound/hondo
@dirrm %%HLDSDIR%%action/sound/grenade
@dirrm %%HLDSDIR%%action/sound/fists
@dirrm %%HLDSDIR%%action/sound/drumdude
@dirrm %%HLDSDIR%%action/sound/debris
@dirrm %%HLDSDIR%%action/sound/colt1911
@dirrm %%HLDSDIR%%action/sound/colt
@dirrm %%HLDSDIR%%action/sound/cannon
@dirrm %%HLDSDIR%%action/sound/bunnyx
@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/the_one
@dirrm %%HLDSDIR%%action/models/player/ta-kill-ya
@dirrm %%HLDSDIR%%action/models/player/stylez
@dirrm %%HLDSDIR%%action/models/player/snake
@dirrm %%HLDSDIR%%action/models/player/sas
@dirrm %%HLDSDIR%%action/models/player/saint
@dirrm %%HLDSDIR%%action/models/player/roggesemmel
@dirrm %%HLDSDIR%%action/models/player/pistolero
@dirrm %%HLDSDIR%%action/models/player/nsi_swat
@dirrm %%HLDSDIR%%action/models/player/noel
@dirrm %%HLDSDIR%%action/models/player/misswong
@dirrm %%HLDSDIR%%action/models/player/meister
@dirrm %%HLDSDIR%%action/models/player/mcclane
@dirrm %%HLDSDIR%%action/models/player/mccauley
@dirrm %%HLDSDIR%%action/models/player/maggie
@dirrm %%HLDSDIR%%action/models/player/loony
@dirrm %%HLDSDIR%%action/models/player/liz
@dirrm %%HLDSDIR%%action/models/player/kat
@dirrm %%HLDSDIR%%action/models/player/junkie
@dirrm %%HLDSDIR%%action/models/player/jeff
@dirrm %%HLDSDIR%%action/models/player/jawb
@dirrm %%HLDSDIR%%action/models/player/jack
@dirrm %%HLDSDIR%%action/models/player/ivan
@dirrm %%HLDSDIR%%action/models/player/hunter
@dirrm %%HLDSDIR%%action/models/player/ghostdog
@dirrm %%HLDSDIR%%action/models/player/falcon
@dirrm %%HLDSDIR%%action/models/player/eclipse
@dirrm %%HLDSDIR%%action/models/player/drake
@dirrm %%HLDSDIR%%action/models/player/dieter
@dirrm %%HLDSDIR%%action/models/player/costa
@dirrm %%HLDSDIR%%action/models/player/chingamy
@dirrm %%HLDSDIR%%action/models/player/benny
@dirrm %%HLDSDIR%%action/models/player/arnie
@dirrm %%HLDSDIR%%action/models/player/Malysa
@dirrm %%HLDSDIR%%action/models/player
@dirrm %%HLDSDIR%%action/models/overviews
@dirrm %%HLDSDIR%%action/models/bullettime
@dirrm %%HLDSDIR%%action/models
@dirrm %%HLDSDIR%%action/maps
@dirrm %%HLDSDIR%%action/gfx/env
@dirrm %%HLDSDIR%%action/gfx
@dirrm %%HLDSDIR%%action/events
@dirrm %%HLDSDIR%%action/dlls
@dirrm %%HLDSDIR%%action/cl_dlls
@dirrm %%HLDSDIR%%action/botinfo
@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