-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathl4d2_spawn_props_models_english.txt
More file actions
1064 lines (1064 loc) · 72.2 KB
/
l4d2_spawn_props_models_english.txt
File metadata and controls
1064 lines (1064 loc) · 72.2 KB
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
//Category Vehicles
models/props_vehicles/airport_baggage_cart2.mdl TAG- Airport Baggage Cart
models/props_vehicles/airport_baggage_tractor.mdl TAG- Airport Baggage Cart
models/props_vehicles/airport_catering_truck.mdl TAG- Airport Catering Truck
models/props_vehicles/airport_fuel_truck.mdl TAG- Airport Fuel Truck
models/props_vehicles/ambulance.mdl TAG- Ambulance
models/props_vehicles/army_truck.mdl TAG- Army Truck
models/props/de_nuke/truck_nuke.mdl TAG- Delivery Truck
models/props_vehicles/boat_fishing.mdl TAG- Fishing Boat
models/props_vehicles/boat_fishing02_static.mdl TAG- Rescue Boat
models/props_vehicles/boat_rescue_tug_sunshine.mdl TAG- Virgil Boat (Not Soild)
models/props_vehicles/boat_rescue_tug.mdl TAG- Virgil Boat - with Lights (Not Soild)
models/props_vehicles/sailboat.mdl TAG- Sailboat - c7
models/props_vehicles/boat_ski.mdl TAG- Waterski
models/props_urban/boat002.mdl TAG- Small Boat
models/lostcoast/props_wasteland/boat_wooden01a_static.mdl TAG- Logging Boat a
models/lostcoast/props_wasteland/boat_wooden03a_static.mdl TAG- Logging Boat b
models/props_vehicles/boat_trailer20ft.mdl TAG- Framed Boat
models/props_vehicles/bus01.mdl TAG- Bus 01
models/props_vehicles/bus01_2.mdl TAG- Bus 01_2
models/props_waterfront/tour_bus.mdl TAG- Celebrity Bus - c6
models/props_vehicles/cara_69sedan.mdl TAG- Sedan 69
models/props_vehicles/cara_82hatchback.mdl TAG- Hatchback 82
models/props_vehicles/cara_82hatchback_wrecked.mdl TAG- Wrecked hatchback 82
models/props_vehicles/cara_84sedan.mdl TAG- Sedan 84
models/props_vehicles/cara_95sedan.mdl TAG- Sedan 95
models/props_vehicles/cara_95sedan_wrecked.mdl TAG- Wrecked sedan 95
models/props_vehicles/zapastl.mdl TAG- Car - zapastl
models/props_vehicles/utility_truck.mdl TAG- Utility truck - No windows
models/props_vehicles/taxi_cab.mdl TAG- Taxi - No windows
models/props_vehicles/ceda_trailer_closed.mdl TAG- CEDA trailer
models/props_vehicles/cement_truck01.mdl TAG- Cement truck
models/props_vehicles/church_bus01.mdl TAG- Church bus
models/props_vehicles/deliveryvan.mdl TAG- Delivery van - No windows
models/props_vehicles/deliveryvan_armored.mdl TAG- Armored modified vehicle - C9M2
models/props_vehicles/flatnose_truck.mdl TAG- Flat nose truck
models/props_vehicles/flatnose_truck_wrecked.mdl TAG- Crashed flathead truck
models/props_vehicles/floodlight_generator_nolight.mdl TAG- Generator - No Light
models/props_vehicles/floodlight_generator_pose01_static.mdl TAG- Generator - With Light
models/props_vehicles/generatortrailer01.mdl TAG- Generator trailer
models/props_vehicles/c130.mdl TAG- C130 aircraft (Not Soild)
models/lighthouse/b_airplane01.mdl TAG- Aircraft (Not Soild)
models/props_vehicles/chopper_generic.mdl TAG- Standard helicopter
models/hybridphysx/news_helicoptor_hoveranim.mdl TAG- Helicopter NEWS 5 (C8M5)
models/props_vehicles/helicopter_news_downed.mdl TAG- Crashed Helicopter NEWS 5 (C9M1)
models/props_vehicles/helicopter_rescue.mdl TAG- Rescue Helicopter - c5m5 (Not Solid)
models/props_vehicles/helicopter_rescue_smashed.mdl TAG- Crashed Rescue Helicopter - c5 (Not Solid)
models/props_vehicles/hmmwv.mdl TAG- 180 Military Vehicle
models/props_vehicles/hmmwv_supply.mdl TAG- 180 Military Vehicle - Open Door
models/props_vehicles/humvee.mdl TAG- Military Humvee - No windows
models/props_vehicles/humvee_lighton.mdl TAG- Military Humvee - No windows - Lights on
models/props_vehicles/longnose_truck.mdl TAG- Truck head - White
models/props_vehicles/semi_truck3.mdl TAG- Truck head - Red - No windows
models/props_vehicles/m119howitzer_01.mdl TAG- Cannon
models/props_vehicles/news_van.mdl TAG- News van - No windows
models/props_vehicles/van.mdl TAG- White van - No windows
models/props_vehicles/pickup_dually.mdl TAG- Reverse truck - No windows
models/props_vehicles/pickup_truck_2004.mdl TAG- Minivan 2004
models/props_vehicles/pickup_truck_78.mdl TAG- Minivan 78
models/props_vehicles/police_car_city.mdl TAG- Police car - City
models/props_vehicles/police_car_rural.mdl TAG- Police car - Rural
models/props_vehicles/police_car.mdl TAG- Police car - No windows
models/props_vehicles/police_car_lights_on.mdl TAG- Police car - No windows - Lights on
models/props_vehicles/police_car_opentrunk.mdl TAG- Police car - No windows - Open trunk
models/props_vehicles/racecar.mdl TAG- Jimmy Gibbs Junior's race car
models/props_vehicles/racecar_damaged.mdl TAG- Jimmy Gibbs Junior's race car - Damaged
models/props_vehicles/semi_trailer.mdl TAG- Container truck
models/props_vehicles/semi_trailer_freestanding.mdl TAG- Container truck - Freestanding
models/props_vehicles/semi_trailer_wrecked.mdl TAG- Container truck - Overturned
models/props_trailers/trailer_small01.mdl TAG- Camping trailer
models/props_vehicles/suv_2001.mdl TAG- Utility vehicle 2001
models/props_vehicles/tanker001a.mdl TAG- Exploded Tanker Truck - Headless
models/props_vehicles/taxi_city.mdl TAG- Taxi - City
models/props_vehicles/taxi_rural.mdl TAG- Taxi - Rural
models/props_vehicles/pickup_regcab.mdl TAG- Rural Pickup Truck - No Windows c14m1
models/props_vehicles/van001a.mdl TAG- Destroyed Van c14m1
models/props_vehicles/car001b_hatchback.mdl TAG- Crushed Car c14m1
models/props_vehicles/car001a_hatchback.mdl TAG- Abandoned Car c14m1
models/props_vehicles/pickup_4x4.mdl TAG- Off-Road Vehicle for Repair - No Windows c14m1
models/props/de_prodigy/pushcart.mdl TAG- Repair Cart c14m1
models/props_equipment/toolchest_01.mdl TAG- Tool Cart c14m1
models/props_interiors/Hotel_Cart.mdl TAG- Hotel Cleaning Cart
models/props_fairgrounds/trailermessageboard.mdl TAG- Message Board Trailer
models/props_vehicles/front_loader01_rear.mdl TAG- Bulldozer - Body - No Windows c14m1
models/props_vehicles/front_loader01_front_down.mdl TAG- Bulldozer - Predecessor C14M1
models/props_vehicles/tractor01.mdl TAG- Tractor
models/props_fairgrounds/foodcart.mdl TAG- Food cart
models/props/cs_assault/forklift.mdl TAG- Forklift
models/props_equipment/construction_lift.mdl TAG- Construction lift
models/props_fairgrounds/bumpercar.mdl TAG- Amusement Park - Bumper Cars
models/props_fairgrounds/bumpercar_wpole.mdl TAG- Amusement Park - Bumper Cars - With Antenna
models/props_fairgrounds/coaster_car01.mdl TAG- Amusement Park - Roller Coaster
models/props_fairgrounds/kiddyland_ridecar.mdl TAG- Amusement Park - Cars
models/props_fairgrounds/kiddyland_ridetrain.mdl TAG- Amusement Park - Small Train
models/props_vehicles/train_box.mdl TAG- Train Box
models/props_vehicles/train_box_open.mdl TAG- Opened Train Car
models/props_vehicles/train_box_small.mdl TAG- Train Car - Small
models/props_vehicles/train_boxwreck.mdl TAG- Wrecked Train Car
models/props_vehicles/train_enginecar.mdl TAG- Train Engine Car
models/props_vehicles/train_flatcar.mdl TAG- One End of a Flatbed Train
models/props_vehicles/train_flatcar_small.mdl TAG- One End of a Flatbed Train - Long
models/props_vehicles/train_orecar.mdl TAG- Ore Train
models/props_vehicles/train_tank.mdl TAG- Oil Tank Train
models/props_vehicles/train_tank_small.mdl TAG- Oil Tank Train - Small
models/props_trainstation/train_transporter.mdl TAG- Train transporting a Sedan
models/props_unique/subwaycar_all_onetexture.mdl TAG- Subway Car
models/props_industrial/construction_crane.mdl TAG- Construction Crane - Extra Large
models/props_debris/airliner_wreckage1.mdl TAG- Airplane wreck - Head
models/props_debris/airliner_wreckage2.mdl TAG- Airplane wreck - Wing
models/props_debris/airliner_wreckage3.mdl TAG- Airplane wreck - Fuselage
models/props_vehicles/airliner_finale_left.mdl TAG- Airplane half-body Left
models/props_vehicles/airliner_finale_right.mdl TAG- Half Airplane - Right
models/props_vehicles/airplane_piperwreck.mdl TAG- Crashed Glider c14m1
//Category Foliage
models/props_foliage/cedar01.mdl TAG- Cedar Tree (Not solid)
models/props_foliage/cedar_medium01.mdl TAG- Cedar Tree - Medium (Not solid)
models/props_foliage/cedar_large01.mdl TAG- Cedar Tree - Large (Not solid)
models/props_foliage/cedar_large_spawn.mdl TAG- Cedar Tree - Large - Withered (Not solid)
models/props_foliage/swamp_fallentree01_bare.mdl TAG- Broken Swamp Tree Trunk
models/props_foliage/fallentree_dry01.mdl TAG- Fallen Tree Trunk
models/props_foliage/fallentree_dry02.mdl TAG- Fallen Tree Trunk Broken into three pieces
models/props_foliage/tree_trunk_fallen.mdl TAG- Fallen dead tree
models/props_foliage/hedge_128.mdl TAG- Tree hedge - 128 units
models/props_foliage/hedge_256_128high.mdl TAG- Tree hedge - 256x128 units
models/props_foliage/urban_palm01_medium.mdl TAG- Palm - Medium - Windblown
models/props_foliage/flower_barrel.mdl TAG- Barrel flower
models/props_foliage/mall_pot_large01.mdl TAG- Mall potted plant - Large
models/props_foliage/mall_pot_xlarge02.mdl TAG- Mall potted plant - Extra Large
models/props_foliage/mall_pot_square01.mdl TAG- Mall Square Pot 01
models/props_foliage/mall_pot_square02.mdl TAG- Mall Square Pot 02
models/props_foliage/urban_pot_square01.mdl TAG- Pot - Rectangular - Large
models/props_foliage/urban_pot_bigplant01.mdl TAG- Pot - Plant 1
models/props_foliage/urban_pot_clay01.mdl TAG- Pot - Plant 2
models/props_foliage/urban_pot_clay02.mdl TAG- Pot - Plant 3
models/props_foliage/urban_pot_clay03.mdl TAG- Pot - Plant 4
models/props_foliage/urban_pot_fancy01.mdl TAG- Potted Plant - Flowers and Plants 5
models/props_foliage/urban_vine02.mdl TAG- Urban Vine 02
models/props_foliage/urban_vine03.mdl TAG- Urban Vine 03
models/props_foliage/mall_bigleaves_plant01.mdl TAG- Mall Plant a (Not Solid)
models/props_foliage/mall_bigleaves_plant01_medium.mdl TAG- Mall Plant a - Short (Not Solid)
models/props_foliage/mall_bigleaves_plant02.mdl TAG- Mall Plant b (Not Solid)
models/props_foliage/mall_bigleaves_plant02_medium.mdl TAG- Mall Plant b - Short (Not solid)
models/props_foliage/mall_bigleaves_plant03.mdl TAG- Mall Plant c (Not solid)
models/props_foliage/mall_bigleaves_plant03_dirt.mdl TAG- Mall Plant c - With Soil (Not solid)
models/props_foliage/mall_bigleaves_plant03_medium.mdl TAG- Mall Plant c - Short (Not solid)
models/props_foliage/mall_big_plant01.mdl TAG- Mall Plant d (Not solid)
models/props_foliage/mall_big_plant01_dirt.mdl TAG- Mall Plant d - With Soil (Not solid)
models/props_foliage/mall_small_palm01.mdl TAG- Mall Plant e (Not solid) solid)
models/props_foliage/mall_small_palm01_medium.mdl TAG- Mall Plant e - Short (Not solid)
models/props_foliage/mall_small_palm01_cluster.mdl TAG- Mall Plant e - Three (Not solid)
models/props_foliage/mall_small_palm01_cluster_medium.mdl TAG- Mall Plant e - Three - Short (Not solid)
models/props_foliage/mall_grass_bush01.mdl TAG- Mall Grass Bush (Not solid)
models/props_foliage/mall_grass_bush01_dirt.mdl TAG- Mall Grass Bush - Dirt (Not solid)
models/props_foliage/mall_tree_large01.mdl TAG- Mall Tree - Large
models/props_foliage/mall_tree_medium01.mdl TAG- Mall Tree - Medium
models/props_foliage/mall_palm01.mdl TAG- Mall Palm - Large
models/props_foliage/mall_palm01_medium.mdl TAG- Mall Palm - Medium
models/props_foliage/mall_palmplant02.mdl TAG- Mall Palm - Small
models/props_foliage/oak_tree01.mdl TAG- Oak Tree - Large
models/props_foliage/old_tree01.mdl TAG- Old Tree - Large
models/props_foliage/swamp_cypress_dry01.mdl TAG- Swamp Cypress Tree - Withered
models/props_foliage/swamp_cypress_knee02.mdl TAG- Swamp Cypress Tree - Breathing Roots - Upright
models/props_foliage/swamp_cypress_large01_grnd.mdl TAG- Swamp Cypress Tree - Large
models/props_foliage/swamp_cypress_medium_grnd01.mdl TAG- Swamp Cypress Tree - Medium
models/props_foliage/swamp_cypress_small01.mdl TAG- Swamp Tree - Small
models/props_foliage/swamp_shrubwall_256_deep.mdl TAG- Swamp Bushwall 1 - 256 Units - Straight
models/props_foliage/swamp_shrubwall_256a.mdl TAG- Swamp Bushwall - 256 units - Arc
models/props_foliage/swamp_shrubwall_512_deep.mdl TAG- Swamp Bush Wall - 512 units - Arc
models/props_foliage/swamp_shrubwall_block_512.mdl TAG- Swamp Bush Wall - 512 units - Circle
models/props_foliage/swamp_shrubwall_block_512_deep.mdl TAG- Swamp Bush Wall - 512 units - Ellipse
models/props_foliage/shrub_small.mdl TAG- Bush - Small - Paper Shape (Not Solid)
models/props_foliage/mall_fern01.mdl TAG- Mall Bush - Small (Not Solid)
models/props_foliage/mall_bush01.mdl TAG- Mall Bush - Medium (Not Solid)
models/props_foliage/mall_bush02.mdl TAG- Mall Bush - Large (Not Solid)
models/props_foliage/urban_fern01.mdl TAG- Urban Bush - Small (Not Solid)
models/props_foliage/urban_bush01.mdl TAG- Urban Bush - Medium (Not Solid)
models/props_foliage/urban_bush02.mdl TAG- Urban Bush - Large (Not Solid)
models/props_foliage/urban_hedge_256_128_high.mdl TAG- Tree Hedge - 256x128 Height
models/props_foliage/urban_hedge_128_64_high.mdl TAG- Tree Hedge - 128x64 Height
models/props_foliage/urban_bush_angled_256.mdl TAG- Urban Bush - Angled - 256 units
models/props_foliage/urban_tree_base_bushes01_large.mdl TAG- Urban Tree Base Bush - Large
models/props_foliage/swamp_shrubwall_block_512.mdl TAG- Swamp Bushwall Block - Extra Large - 512 units
models/props_foliage/tree_city01.mdl TAG- Urban Tree
models/props_foliage/tree_deciduous_01a.mdl TAG- Urban Tree - Deciduous
models/props_foliage/tree_dry02.mdl TAG- Urban Tree - Withered
models/props_foliage/trees_cluster01.mdl TAG- Urban Tree - Three a's
models/props_foliage/trees_cluster02.mdl TAG- Urban Tree - Three b's
models/props_foliage/urban_streetpalm01_small.mdl TAG- Street Tree - Small
models/props_foliage/urban_streettree01_medium.mdl TAG- Street Tree - Medium
models/props_foliage/urban_tree_giant01_medium.mdl TAG- Giant Tree
models/lighthouse/b_burnedcedar01_01.mdl TAG- Burned Cedar Tree (Not Solid)
models/lighthouse/b_burnedtree01_01.mdl TAG- Burned Tree - Not Burned
models/lighthouse/b_burnedtree01_02.mdl TAG- Burned Tree a - Lower half burned
models/lighthouse/b_burnedtree01_03.mdl TAG- Burned Tree a - Upper half burned
models/lighthouse/b_burnedtree01_04.mdl TAG- Burned Tree a - Completely burned
models/lighthouse/b_burnedtree02_01.mdl TAG- Burned Tree b - Unburned
models/lighthouse/b_burnedtree02_02.mdl TAG- Burned Tree b - Lower half burned
models/lighthouse/b_burnedtree02_03.mdl TAG- Burned Tree b - Upper half burned
models/lighthouse/b_burnedtree02_04.mdl TAG- Burned Tree b - Completely Burned
models/lighthouse/b_burnedtree03_01.mdl TAG- Burned Tree c - Unburned
models/lighthouse/b_burnedtree03_02.mdl TAG- Burned Tree c - Lower Body Burned
models/lighthouse/b_burnedtree03_03.mdl TAG- Burned Tree c - Upper Body Burned
models/lighthouse/b_burnedtree03_04.mdl TAG- Burned Tree c - Completely Burned
models/lighthouse/b_fallentree01_01.mdl TAG- Burnt Tree - Fallen - Unburned
models/lighthouse/b_fallentree01_03.mdl TAG- Burnt Tree - Fallen - Half-burned
models/lighthouse/b_fallentree01_02.mdl TAG- Burnt Tree - Fallen - Fully burned
models/props_foliage/swamp_cluster01.mdl TAG- Swamp Jungle - Three Boulders + Three Trees
models/props_foliage/swamp_cluster_water.mdl TAG- Swamp Jungle - Three Boulders + Three Trees - Wet
models/props_unique/haybails_single.mdl TAG- Hay Bale
models/props_unique/haybails_farmhouse.mdl TAG- A pile of hay bales - only half
models/props_plants/corndry_split02.mdl TAG- Corn and rice paddy - c12m5 (Not solid)
models/props_plants/corndry_split01.mdl TAG- Corn and rice paddy - flattened - c12m5 (Not solid)
models/props_foliage/tree_trunk_chunk01.mdl TAG- Dead tree chunk 1 (breakable)
models/props_foliage/tree_trunk_chunk02.mdl TAG- Dead tree chunk 2 (breakable)
models/props_foliage/tree_trunk_chunk03.mdl TAG- Dead tree chunk 3 (breakable)
models/props_foliage/tree_trunk_chunk04.mdl TAG- Dead tree chunk 4 (Breakable)
models/props_foliage/tree_trunk_chunk05.mdl TAG- Dead Tree Chunk 5 (Breakable)
models/props_foliage/tree_trunk_chunk06.mdl TAG- Dead Tree Chunk 6 (Breakable)
//Category Interior
models/props_downtown/metal_door_112_static.mdl TAG- Metal Door
models/props_interiors/door_sliding_breakable01.mdl TAG- Roll-up Door (Breakable)
models/Props_doors/doormain01_airport.mdl TAG- Wooden Door - Airport (Breakable)
models/props_doors/doormain01_airport_small_02.mdl TAG- Wooden Door Fragment (Breakable)
models/props_doors/checkpoint_door_-01.mdl TAG- Security Door - Starting Point
models/props_doors/checkpoint_door_-02.mdl TAG- Security Door - End Point
models/lighthouse/checkpoint_door_lighthouse01.mdl TAG- Starting Security Door - Lamp Tower Map
models/lighthouse/checkpoint_door_lighthouse02.mdl TAG- Terminal Security Door - Lamp Tower Map
models/props_doors/doorfreezer01.mdl TAG- Invincible Iron Door
models/props_unique/subwaycar_all_onetexture_enddoor.mdl TAG- Subway Car Door - With Handle (Tank Breakable)
models/props_unique/subwaycar_all_onetexture_sidedoor.mdl TAG- Subway Car Door - Without Handle (Tank Breakable)
models/props_doors/gun_store_door.mdl TAG- Gun Store Door - c1m2
models/props_downtown/metal_door_112_16_frame.mdl TAG- Gun Store Door Frame - c1m2
models/props_downtown/bathroom_vanity01.mdl TAG- Sink c2m1
models/props/cs_militia/bar01.mdl TAG- Bar Cabinet Counter
models/props_furniture/desk1.mdl TAG- Table
models/props_interiors/furniture_desk01a.mdl TAG- Breakable Table
models/props_furniture/heavy_table.mdl TAG- Long Wooden Table 1
models/props_furniture/it_mkt_table2.mdl TAG- Long Wooden Table 2
models/props_interiors/table_console.mdl TAG- Long Wooden Table - with Drawers
models/props_wasteland/controlroom_desk001b.mdl TAG- Iron Table - Control Room Long
models/props_interiors/industrial_table01.mdl TAG- Metal Table - Industrial - Long
models/props_interiors/coffee_table_oval.mdl TAG- Coffee Table - Oval
models/props_interiors/coffee_table_rectangular.mdl TAG- Coffee Table - Rectangular
models/props_interiors/desk_executive.mdl TAG- Office Table
models/props_interiors/desk_metal.mdl TAG- Metal Office Table
models/props_interiors/dining_table_round.mdl TAG- Wooden Table - Round
models/props_interiors/dining_table_oval.mdl TAG- Wooden Table - Oval
models/props_interiors/side_table_square.mdl TAG- Small Table - Square
models/props_interiors/table_bedside.mdl TAG- Small Table - Rectangular
models/props_interiors/table_end.mdl TAG- Small Table - Square Corner
models/props_interiors/table_cafeteria.mdl TAG- Cafeteria Corner Table
models/props_interiors/table_folding.mdl TAG- Folding Table
models/props_interiors/table_folding_folded.mdl TAG- Folding Table - Folded (Breakable)
models/props_interiors/table_kitchen.mdl TAG- Table - Kitchen
models/props_interiors/table_motel.mdl TAG- Table - Restaurant (Breakable)
models/props/cs_office/table_meeting.mdl TAG- Conference Table
models/props_urban/round_table001.mdl TAG- Round Table - White
models/props_interiors/bench01a.mdl TAG- Wooden Long Chair
models/props_urban/bench001.mdl TAG- Iron Long Chair
models/props_interiors/bench_subway.mdl TAG- Long Stone Chair - Subway
models/props_interiors/boothfastfood01.mdl TAG- Long Seat - Dining Room
models/props_interiors/ottoman01.mdl TAG- Chair Cushion
models/props_furniture/cafe_barstool1.mdl TAG- Round Wood Chair - Cafe (Breakable)
models/props_furniture/chair2.mdl TAG- Chair (Breakable)
models/props_interiors/chair_office2.mdl TAG- Office Chair
models/props_interiors/chair_thonet.mdl TAG- Chair - Yellow
models/props_interiors/chairlobby01.mdl TAG- Chair - Lobby
models/props_interiors/chair_cafeteria.mdl TAG- Chair - Cafeteria
models/props_furniture/hotel_chair.mdl TAG- Chair - Restaurant
models/props_interiors/patio_chair2_white.mdl TAG- Chair - White European Style
models/props_urban/plastic_chair001.mdl TAG- Chair - White Plastic
models/props_interiors/picnic_bench_toddler.mdl TAG- Outdoor TableChair
models/props_interiors/chairs_airport.mdl TAG- Three-Chair Set - Airport
models/props_furniture/piano_bench.mdl TAG- Piano Bench
models/props_trainstation/BenchOutdoor01a.mdl TAG- Outdoor Bench - No Back
models/props_trainstation/bench_indoor001a.mdl TAG- Outdoor Bench - With Back
models/props_interiors/bookcase_48_96.mdl TAG- Long Book Cabinet
models/props_interiors/bookcasehutch01.mdl TAG- Long Book Cabinet - Storage
models/props_interiors/bookcase_64_96.mdl TAG- Long Book Cabinet - Large
models/props_furniture/cupboard1.mdl TAG- Bowl Cabinet
models/props_furniture/cafe_cabinet1.mdl TAG- Large Cabinet
models/props_furniture/inn_mailbox1.mdl TAG- Large Bookshelf
models/props_furniture/kitchen_cabinet1.mdl TAG- Decker Cabinet - Kitchen - Double Decker
models/props_furniture/kitchen_countertop1.mdl TAG- Countertop Cabinet - Kitchen
models/props_furniture/kitchen_shelf1.mdl TAG- Bookshelf - Kitchen
models/props_downtown/dresser.mdl TAG- TV Cabinet c2m1
models/props_interiors/tv_cabinet.mdl TAG- TV Cabinet c11m2
models/props_downtown/side_table.mdl TAG- Bedside Cabinet c2m1
models/props_furniture/shelf1.mdl TAG- Small Cabinet
models/props_furniture/dresser1.mdl TAG- Dresser Cabinet
models/props_furniture/drawer1.mdl TAG- Drawer Cabinet (Breakable)
models/props_interiors/dresser_short.mdl TAG- Drawer Cabinet - Three-Tier
models/props_interiors/dresser_tall.mdl TAG- Drawer Cabinet - Five-Tier
models/props_interiors/file_cabinet1_group.mdl TAG- File Drawer Cabinet - Iron
models/props/cs_office/file_cabinet2.mdl TAG- File Drawer Cabinet - 4th Floor
models/props_interiors/shelvinggrocery01.mdl TAG- Shelf Grocery Cabinet - 7th Floor
models/props_interiors/shelvingstore01.mdl TAG- Shelf Grocery Cabinet - 4th Floor
models/props_mall/mall_display_04.mdl TAG- Small Mall Display Cabinet
models/props_mall/mall_display_03.mdl TAG- Mall Poster and Information Display Cabinet
models/props_mall/mall_display_07.mdl TAG- Medium-Sized Store Cabinet
models/props_mall/mall_display_08.mdl TAG- Large-Sized Store Cabinet
models/lighthouse/props/wooden_cabinet.mdl TAG- Wooden Cabinet
models/props_unique/guncabinet_no_door_static.mdl TAG- Wooden Gun Cabinet (Solid)
models/props_unique/guncabinet01_main.mdl TAG- Iron Weapon Cabinet
models/props_urban/plastic_icechest001_static.mdl TAG- Plastic Ice Cabinet (Solid)
models/props_urban/hotel_bathroom_light001.mdl TAG- Powder Room Mirror Lamp
models/props_lighting/corner_light_180.mdl TAG- Corner Lamp - 180 units
models/props_lighting/light_shop.mdl TAG- Ceiling Daylight Lamp - Shop
models/props/cs_office/Light_ceiling.mdl TAG- Triple Daylight Tube Lamp
models/props_furniture/inn_chandelier1.mdl TAG- Hotel Ceiling Lamp
models/props_interiors/lamp_floor.mdl TAG- Table Lamp - Extended
models/props_urban/hotel_lamp001.mdl TAG- Table Lamp - Hotel
models/props_furniture/lamp1.mdl TAG- Lamp
models/props_interiors/furniture_lamp01a.mdl TAG- Lamp - Furniture
models/props_interiors/lamp_floor_arch.mdl TAG- Lamp - Curved
models/props_interiors/lamp_floor_gib1.mdl TAG- Lamp - No Lamp
models/props_interiors/lamp_floor_gib2.mdl TAG- Lamp Cover 1
models/props_interiors/lamp_table01_gib2.mdl TAG- Lamp Cover 2
models/props_interiors/lamp_table02_gib2.mdl TAG- Lamp Cover 3
models/props_interiors/lamp_table01.mdl TAG- Table Mounted Lamp 01
models/props_interiors/lamp_table02.mdl TAG- Table Mounted Lamp 02
models/props_interiors/lamp_table02_gib1.mdl TAG- Table Mounted Lamp - No Lamp
models/props_urban/light_fixture01.mdl TAG- Hanging Lamp
models/props_urban/closet_shelves001.mdl TAG- Closet Shelves
models/props_interiors/towel_rack.mdl TAG- Towel Rack
models/props_urban/hotel_curtain001.mdl TAG- Hotel Curtains
models/props_urban/hotel_curtain_rod001.mdl TAG- Hotel Curtain Rod
models/props_interiors/couch.mdl TAG- Sofa a
models/props_interiors/sofa.mdl TAG- Sofa b
models/props_interiors/sofa01.mdl TAG- Sofa c
models/props_interiors/sofa02.mdl TAG- Sofa d
models/props_interiors/sofa_chair.mdl TAG- Sofa - Single a
models/props_interiors/sofa_chair01.mdl TAG- Sofa - Single b
models/props_interiors/sofa_chair02.mdl TAG- Sofa - Single c
models/props_interiors/bed.mdl TAG- Bed
models/props_interiors/bed_houseboat.mdl TAG- Bed - Houseboat
models/props_interiors/bed_motel.mdl TAG- Bed - Hotel
models/props_interiors/baby_crib.mdl TAG- Baby Bed
models/props_interiors/kids_bed.mdl TAG- Single Bed
models/props_downtown/bed_motel01.mdl TAG- Hotel Bed c2m1
models/props_unique/hospital/hospital_bed.mdl TAG- Hospital Bed
models/props_urban/hotel_balcony_divider001.mdl TAG- Hotel Balcony Divider
models/props_windows/hotel_door_sliding.mdl TAG- Hotel Sliding Door
models/props_doors/door_urban_48_118.mdl TAG- City Gate 48x118
models/props_street/bay_window01.mdl TAG- Bay Window
models/props_windows/hotel_window.mdl TAG- Hotel Window
models/props_windows/hotel_window_glass002.mdl TAG- Hotel Glass Window
models/props_windows/window_urban_stacked_double_96_112.mdl TAG- Urban Window - 96x112
models/props_windows/window_urban_stacked_40_112.mdl TAG- Urban Window - 40x112
models/props_windows/window_industrial.mdl TAG- Glass Grid Window (Breakable)
models/props/cs_militia/militiawindow02_breakable_chunk_01.mdl TAG- Broken Wooden House Window 1 (Breakable)
models/props/cs_militia/militiawindow02_breakable_chunk_02.mdl TAG- Wooden House Broken Window 2 (Breakable)
models/props/cs_militia/militiawindow02_breakable_chunk_03.mdl TAG- Wooden House Broken Window 3 (Breakable)
models/props/cs_militia/militiawindow02_breakable_chunk_04.mdl TAG- Wooden House Broken Window 4 (Breakable)
models/props/cs_militia/militiawindow02_breakable.mdl TAG- Complete Cabin Window (Breakable)
models/props_vents/ventbreakable01.mdl TAG- Vent Duct Window Cover (Breakable)
models/props_interiors/table_picnic.mdl TAG- Picnic Table (Breakable)
models/props_interiors/table_picnic_break01.mdl TAG- Picnic Table - Break 1
models/props_interiors/table_picnic_break02.mdl TAG- Picnic Table - Break 2
models/props_interiors/table_picnic_break03.mdl TAG- Picnic Table - Break 3
models/props_interiors/table_picnic_break04.mdl TAG- Picnic Table - Break 4
models/props_interiors/table_picnic_break05.mdl TAG- Picnic Table - Broken 5
models/props_interiors/table_picnic_break06.mdl TAG- Picnic Table - Broken 6
models/props_interiors/table_picnic_break07.mdl TAG- Picnic Table - Broken 7
models/props_interiors/table_picnic_break08.mdl TAG- Picnic Table - Broken 8
models/props_interiors/table_picnic_break09.mdl TAG- Picnic Table - Broken 9
models/props_interiors/table_picnic_break10.mdl TAG- Picnic Table - Broken 10
models/props_interiors/table_picnic_break11.mdl TAG- Picnic Table - Broken 11
//Category Exterior
models/lighthouse/props/wooden_gate.mdl TAG- Wooden Gate
models/props/de_inferno/wood_fence.mdl TAG- Wooden Fence
models/props_exteriors/fence002.mdl TAG- Wooden Fence - Very Long
models/props_fairgrounds/coaster_gate.mdl TAG- Roller Coaster Gate (Not Solid)
models/props_fortifications/concrete_barrier01.mdl TAG- Concrete Wall
models/props_fortifications/concrete_wall001_96_reference.mdl TAG- Concrete Wall - Large
models/props_urban/fence_gate001_256.mdl TAG- Urban Fence Gate
models/props_fortifications/barricade_gate001_64_reference.mdl TAG- Barricade - Single-layer, no handles
models/props_fortifications/barricade001_64_reference.mdl TAG- Barricade - Single-layer
models/props_fortifications/barricade001_128_reference.mdl TAG- Barricade - Double-layer
models/props_unique/airport/temp_barricade.mdl TAG- Barricade - Airport
models/props_wasteland/exterior_fence002b.mdl TAG- Barbed Wire Fence - Shorter Single-layer
models/props_wasteland/exterior_fence002c.mdl TAG- Barbed Wire Fence - Single-layer
models/props_wasteland/exterior_fence002d.mdl TAG- Barbed Wire Fence - Two-layer
models/props_wasteland/exterior_fence002e.mdl TAG- Barbed Wire Fence - Four-layer
models/props_street/chainlinkfencedamage_01.mdl TAG- Damaged Fence - Left
models/props_street/chainlinkfencedamage_02.mdl TAG- Damaged Fence - Right
models/props_street/police_barricade.mdl TAG- Iron Frame Roadblock - One-layer
models/props_street/police_barricade2.mdl TAG- Iron Frame Roadblock - Three-layer
models/props_street/police_barricade3.mdl TAG- Iron Frame Roadblock - Sixth Floor
models/props_street/police_barricade_368in.mdl TAG- Iron Frame Barricade - Eighth Floor
models/props_street/police_barricade_496in.mdl TAG- Iron Frame Barricade - Tenth Floor
models/props_street/police_barricade4.mdl TAG- Iron Frame Barricade - Twelfth Floor
models/lostcoast/props_wasteland/gate01a.mdl TAG- Iron Fence Gate a
models/lostcoast/props_wasteland/gate01b.mdl TAG- Iron Fence Gate b
models/props_doors/roll-up_door_full.mdl TAG- Iron Roll-up Door - Complete
models/props_mill/elevator01_cagedoor02.mdl TAG- Elevator Retractable Door - c4m2 (Not Solid)
models/props_street/barricade_door_01.mdl TAG- Military Fence Door - c9m1
models/props_urban/fence_768_collapsed.mdl TAG- Collapsed Fence - c4m5
models/props_urban/fence_cover001_128.mdl TAG- Fence Cover - 128 units
models/props_urban/fence_cover001_256.mdl TAG- Fence Cover - 256 units
models/props_urban/gate_wall001_64.mdl TAG- Urban Wall - 64 units
models/props_urban/gate_wall001_128.mdl TAG- Urban Wall - 128 units Units
models/props_urban/gate_wall001_256.mdl TAG- Urban Wall - 256 units
models/props_urban/gate_wall002_128.mdl TAG- Urban Fence Wall - 128 units
models/props_urban/wood_fence001_64.mdl TAG- Urban Wooden Fence Wall a - 64 units
models/props_urban/wood_fence001_128.mdl TAG- Urban Wooden Fence Wall a - 128 units
models/props_urban/wood_fence001_256.mdl TAG- Urban Wooden Fence Wall a - 256 units
models/props_urban/wood_fence002_64.mdl TAG- Urban Wooden Fence Wall b - 64 units Units
models/props_urban/wood_fence002_128.mdl TAG- Urban Wooden Fence Wall - 128 units
models/props_urban/wood_fence002_256.mdl TAG- Urban Wooden Fence Wall - 256 units
models/props_urban/gate_wall003_32.mdl TAG- Screening Fence Wall - 32 units
models/props_urban/gate_wall003_64.mdl TAG- Screening Fence Wall - 64 units
models/props_urban/gate_wall003_128.mdl TAG- Screening Fence Wall - 128 units
models/props_cemetery/cemetery_gate_128.mdl TAG- Barbed Wire Fence Spiked
models/props_urban/concreteblock_wall001.mdl TAG- Pool Wall c2m1
models/props_collectables/striped_barricade.mdl TAG- White Striped Barricade
models/props_unique/wooden_barricade.mdl TAG- Wooden Barricade - Perfect
models/props_unique/wooden_barricade_break1.mdl TAG- Wooden Barricade - Low Damage
models/props_unique/wooden_barricade_break2.mdl TAG- Wooden Barricade - Medium Damage
models/props_unique/wooden_barricade_break3.mdl TAG- Wooden Barricade - High Damage
models/props_fortifications/concrete_block001_128_reference.mdl TAG- Concrete Block - 128 Units
models/props_fortifications/concrete_barrier001_96_reference.mdl TAG- Concrete Crash Barrier - 96 units
models/props_fortifications/concrete_barrier001_128_reference.mdl TAG- Concrete Crash Barrier - 128 units
models/props_c17/concrete_barrier001a.mdl TAG- Concrete Crash Barrier - Tall
models/props_exteriors/guardrail128a.mdl TAG- Road Guardrail
models/props_exteriors/roadsidefence_64.mdl TAG- Roadside Fence - Single-Storey
models/props_exteriors/roadsidefence_512.mdl TAG- Roadside Fence - Eight-Storey
models/props_urban/guardrail001_512.mdl TAG- Highway Guardrail c2m1
models/props_c17/Handrail04_long.mdl TAG- Handrail
models/props_mill/mill_railing_64.mdl TAG- Mill Railing - 64 Units
models/props_mill/mill_railing_128.mdl TAG- Mill Railing - 128 units
models/props_mill/mill_railing_corner.mdl TAG- Mill Railing - Right Angle
models/props_urban/hotel_balcony_rail001.mdl TAG- Hotel Balcony Railing
models/props_highway/bridge_rail_tall_128.mdl TAG- Bridge Railing - 128 units
models/props_highway/bridge_rail_tall_128_damaged.mdl TAG- Bridge Railing - Damaged - 128 units
models/props_unique/zombiebreakwallexteriorairport01_main.mdl TAG- Wallpaper - Airport
models/props_unique/zombiebreakwallhospitalexterior01_main.mdl TAG- Wallpaper - Hospital
models/props_unique/zombiebreakwallexteriorairportoffices01_main.mdl TAG- Wallpaper - Airport Offices
models/props_unique/zombiebreakwallinterior01_brick_dm_frame.mdl TAG- Destroy Wall c11m1
models/lighthouse/props/wall_144_324.mdl TAG- Wall - 144x324 units
models/props_update/brick_128.mdl TAG- Brick Wall - 128 units
models/props_update/brick_256.mdl TAG- Brick Wall - 256 units
models/props_update/concrete_128.mdl TAG- Concrete Wall - 128 Units
models/props_update/concrete_256.mdl TAG- Concrete Wall - 256 units
models/props_update/plywood_128.mdl TAG- Wood Wall - 128 units
models/props_update/plywood_256.mdl TAG- Wood Wall - 256 units
models/props_update/whitebrick_128.mdl TAG- White Brick Wall - 128 units
models/props_update/whitebrick_256.mdl TAG- White Brick Wall - 256 units
models/props_update/wood_128.mdl TAG- Wood Wall - 128 units
models/props_update/wood_256.mdl TAG- Wood Wall - 256 units Units
models/props_interiors/concretepillar01.mdl TAG- Basement Concrete Rebar (Tank Breakable)
models/props_interiors/concretepiller01_dm01.mdl TAG- Basement Concrete Rebar - Broken
models/props_pipes/destroyedpipes01c.mdl TAG- Broken Underground Rebar
models/props_interiors/constructionwalls02checkpoint.mdl TAG- Construction Steel Pillar Wall - Hole
models/props_interiors/constructionwalls03.mdl TAG- Construction Steel Pillar Wall - 4
models/props_cemetery/crypts_wall.mdl TAG- Thickened Stone Wall - Cemetery
models/props_exteriors/lighthouserailing_02_a.mdl TAG- Lamp Tower Railing (Breakable)
models/props_exteriors/wood_post001.mdl TAG- Wooden Post
models/props_exteriors/wood_railing004c.mdl TAG- Wooden Guardrail - Straight
models/props_exteriors/wood_railing004d.mdl TAG- Wooden Guardrail - Large Angular
models/props_exteriors/wood_railing001.mdl TAG- Wooden Guardrail - White Trapezoidal (Breakable)
models/props_exteriors/wood_railing002.mdl TAG- Wooden Guardrail - White Angular
models/lighthouse/wood_post.mdl TAG- Wooden Post
models/lighthouse/wood_post_large.mdl TAG- Wooden Post - Long
models/props_buildings/warehouse_beam_01.mdl TAG- Wooden Post - Warehouse
models/props_docks/dock02_pole02a.mdl TAG- Wooden Pole - Dock
models/props_windows/brick_window03_pillar.mdl TAG- Marble Pole
models/props_cemetery/cemetery_column.mdl TAG- Stone Pole - Cemetery
models/props_buildings/barn_supports_bases.mdl TAG- Eight Stone Pole - Barn
models/lighthouse/props/junkyard_column.mdl TAG- Square Pole - Junkyard
models/props_street/phonepole1_tall.mdl TAG- Telephone Pole
models/props_c17/utilitypole01d.mdl TAG- Electric Pole
models/props_urban/concreteblock_corner001.mdl TAG- Pool Enclosure Wall Posts c2m1
models/props_debris/barricade_short02a.mdl TAG- Rubble and Earth - Short 02a
models/props_debris/barricade_short03a.mdl TAG- Rubble and Earth - Short 03a
models/props_debris/barricade_short04a.mdl TAG- Rubble and Earth - Short 04a
models/props_debris/barricade_tall01a.mdl TAG- Rubble and Earth - Long 01a
models/props_debris/barricade_tall02a.mdl TAG- Rubble and Earth - Long 02a
models/props_debris/barricade_tall03a.mdl TAG- Rubble, Crushed Earth, and Stone - Length 03a
models/props_debris/barricade_tall04a.mdl TAG- Rubble, Crushed Earth, and Stone - Length 04a
models/props_wasteland/rock_moss01.mdl TAG- ROCK 1
models/props_wasteland/rock_moss02.mdl TAG- ROCK 2
models/props_wasteland/rock_moss03.mdl TAG- ROCK 3
models/props_wasteland/rock_moss04.mdl TAG- ROCK 4
models/props_wasteland/rock_moss05.mdl TAG- ROCK 5
models/props_wasteland/rockcliff07b.mdl TAG- 大石6
models/props/cs_militia/militiarock01.mdl TAG- 大石 7
models/props/cs_militia/militiarock02.mdl TAG- 大石8
models/props/cs_militia/militiarock03.mdl TAG- Large Rock 9
models/props/cs_militia/militiarock04.mdl TAG- Large Rock 10
models/props/cs_militia/militiarock05.mdl TAG- Large Rock 11
models/props/cs_militia/militiarock06.mdl TAG- Large Rock 12
models/props_wasteland/rockcliff_cluster03b.mdl TAG- Two Large Rocks a
models/props_wasteland/rockcliff_cluster03b_caves.mdl TAG- Two Large Rocks b
models/props_wasteland/rockcliff_cluster03c.mdl TAG- Two large rocks + one small rock
models/props_foliage/swamp_rock02.mdl TAG- Mossy Rock - Two
models/props_foliage/rock_coast02f.mdl TAG- Coastal Rock
models/props_foliage/rock_coast02_ls1.mdl TAG- Coastal Rock ls1
models/props_foliage/rock_coast02_ls2.mdl TAG- Coastal Rock ls2
models/lostcoast/props_wasteland/rock_coast02a.mdl TAG- Coastal Rock c
models/props_wasteland/rock_cliff01.mdl TAG- Massive Rock Cliff a
models/props_wasteland/rockcliff_cluster01a.mdl TAG- Massive Rock Cliff b
models/props_wasteland/rockcliff_cluster02c.mdl TAG- Massive Rock Face c
models/props_wasteland/rockcliff_cluster03a.mdl TAG- Massive Rock Face d
models/props_wasteland/rockcliff_cluster03a_river.mdl TAG- Massive Rock Face e
models/props_unique/airportdeparturescreen01.mdl TAG- Airport Screen
models/props_unique/airportdeparturedesk01.mdl TAG- Airport Check-in Desk
models/props_unique/airportdeparturepodium01.mdl TAG- Airport Check-in Podium - Small
models/props_equipment/securitycheckpoint.mdl TAG- Airport Security Scanner
models/props_unique/airport/phone_booth_airport.mdl TAG- Airport Phone Booth
models/props_equipment/phone_booth.mdl TAG- Outdoor Phone Booth
models/props_street/bus_stop.mdl TAG- Bus Stop
models/props_street/newspaper_dispensers.mdl TAG- Four Newspaper Dispensers
models/props_downtown/street_lamp01.mdl TAG- Street Lamp
models/props_urban/parkinglot_light001.mdl TAG- Parking Lot Lamp
models/props_street/trafficlight01.mdl TAG- Traffic Lamp - Large
models/props_c17/lamppost03a_on.mdl TAG- Street Lamp - On
models/props_c17/lamppost03a_off.mdl TAG- Street Lamp - Off
models/props_exteriors/guardshack.mdl TAG- Guardhouse
models/props_equipment/security_desk1.mdl TAG- Security Desk
models/props_unique/ticketbooth.mdl TAG- Ticket Gate
models/props_equipment/turnstile01.mdl TAG- Turnstile
models/props_equipment/ticketmachine.mdl TAG- Subway Ticket Machine
models/props_urban/outhouse001.mdl TAG- Public Restroom
models/props_misc/gazebo.mdl TAG- Gazebo
models/props_misc/triage_tent.mdl TAG- Triage Tent - Extra Large
models/props_street/mail_dropbox.mdl TAG- Street Mailbox
models/props/cs_militia/mailbox01.mdl TAG- Traditional Mailbox
models/props_mill/elevator01_cage.mdl TAG- Elevator - c4m2
models/lighthouse/diesel_pump.mdl TAG- Diesel Pump
models/props_rooftop/train_signalbox_01.mdl TAG- Train Signal Box
models/props/cs_militia/fireplacechimney01.mdl TAG- Fireplace Chimney
models/props_rooftop/vent_large1.mdl TAG- Ventilation Duct Voltage Box
models/props_rooftop/acvent01.mdl TAG- Roof Ventilation Window 01
models/props_rooftop/acvent02.mdl TAG- Roof Ventilation Window 02
models/props_rooftop/acvent03.mdl TAG- Roof Ventilation Window 03
models/props_rooftop/acvent04.mdl TAG- Roof Ventilation Window 04
models/props_rooftop/acvent05.mdl TAG- Roof Ventilation Window 05
models/props_unique/generator_short.mdl TAG- Generator - Turbine
models/props_c17/substation_circuitbreaker03.mdl TAG- Power Plant - Circuit Breaker
models/props_c17/substation_transformer01a.mdl TAG- Power Plant - Transformer
models/props_c17/substation_transformer01b.mdl TAG- Power Plant - Transformer Side
models/props_unique/generator.mdl TAG- Large Generator A - c8m2
models/props_unique/generator01.mdl TAG- Large Generator B - c8m2
models/props_wasteland/coolingtank01.mdl TAG- Cooling Tower - Elliptical
models/props_wasteland/coolingtank02.mdl TAG- Cooling Water Tower - Long Round
models/props_street/watertower01.mdl TAG- Water Tower - Large
models/props_buildings/watertower_001a.mdl TAG- Water Tower - Very Tall
models/props_rooftop/rooftank01.mdl TAG- Large Water Storage Tank
models/props_wasteland/powertower01.mdl TAG- High-Pressure Power Tower
models/props_unique/sandtower02.mdl TAG- Sand Water Tower
models/props_mill/tank_medium01.mdl TAG- Cylindrical Water Tower - C4
models/props_urban/dumpster001.mdl TAG- Industrial Large Dumpster
models/props_equipment/cargo_container01.mdl TAG- Cargo Cabinet
models/props_equipment/cargo_container02.mdl TAG- Opened Cargo Cabinet
models/props_equipment/cargo_container03.mdl TAG- Deformed Cargo Cabinet c14m1
models/props_unique/hospital05_rooftop_cube01.mdl TAG- Large Square Pedestal - c8m5
models/props_mall/mall_escalator.mdl TAG- Escalator - Mall
models/props_mall/mall_kiosk.mdl TAG- Mall Kiosk A
models/props_mall/mall_kioskb.mdl TAG- Mall Kiosk B
models/props_mall/mall_kioskc.mdl TAG- Mall Kiosk C
models/props_pipes/hotel_pipe001.mdl TAG- Hotel Pipe 001
models/props_pipes/hotel_pipe004.mdl TAG- Hotel Pipe 004
models/props_pipes/hotel_pipe006.mdl TAG- Hotel Pipe 006
models/props_pipes/hotel_pipe007.mdl TAG- Hotel Pipe 007
models/props_furniture/conduit_128.mdl TAG- White Pipe Set - 128 Units
models/props_furniture/conduit_bend_64.mdl TAG- White Pipe Set - Right Angle - 64 Units
models/props_pipes/pipeset08d_256_001a.mdl TAG- Pipe - 256 units
models/props_pipes/pipeset08d_corner128d_001a.mdl TAG- Pipe - Right Angle - 128 units
models/props_pipes/pipeset08d_128_001a.mdl TAG- Pipe - 128 units
models/props_mill/pipeset32d_128a.mdl TAG- Large Pipe - 128 units
models/props_mill/pipeset32d_256a.mdl TAG- Large Pipe - 256 units
models/props_mill/pipeset32d_512a.mdl TAG- Large Pipe - 512 units
models/props_pipes/PipeSet32d_128_001a.mdl TAG- Extra Thick Pipe - 128 Units
models/props_pipes/PipeSet32d_256_001a.mdl TAG- Extra Thick Pipe - 256 Units
models/props_pipes/PipeSet32d_512_001a.mdl TAG- Extra Thick Pipe - 512 Units
models/props_pipes/pipeset02d_64_001a.mdl TAG- Pipe Set - 64 Units
models/props_pipes/pipeset02d_128_001a.mdl TAG- Pipe Set - 128 Units
models/props_pipes/pipeset02d_512_001a.mdl TAG- Pipe Set - 512 Units Units
models/props_wasteland/prison_pipes002a.mdl TAG- Large Pipe Lines
models/props_unique/greenhouse_pipewall.mdl TAG- Large Pipe Line 1
models/props_unique/greenhouseboiler_all.mdl TAG- Large Pipe Line 2
models/props_rooftop/gutter_pipe_128.mdl TAG- Drainage Pipe - 128 units
models/props_rooftop/gutter_pipe_256.mdl TAG- Drainage Pipe - 256 units
models/props_industrial/oil_pipes.mdl TAG- Drainage Pipe Line
models/props_unique/pumpstation01.mdl TAG- Roof Drainage Pipe
models/props_industrial/pumpstation_pipes01.mdl TAG- Drainage Pipe
models/props_industrial/pumpvertical01.mdl TAG- Wastewater Treatment Plant
models/props_industrial/sluicegate.mdl TAG- Drainage Gate c8m2
models/lighthouse/props/junkyard_big_pipe.mdl TAG- Large Underpass Drain Pipe
models/props_canal/canal_bars004.mdl TAG- Underpass Drain Hole
models/props_swamp/boardwalk_128.mdl TAG- Wooden Dock Bridge - Swamp - 128 units
models/props_swamp/boardwalk_256.mdl TAG- Wooden Dock Bridge - Swamp - 256 units
models/props_docks/dock_broken01a_256.mdl TAG- Wooden Dock Bridge - Large - c10m5
models/props_vehicles/bridgecollapse_part01.mdl TAG- Wooden Bridge - c12m3 (Not solid)
models/lighthouse/props/wooden_bridge_a.mdl TAG- Wooden Bridge - Base
models/lighthouse/props/wooden_bridge_c.mdl TAG- Wooden Bridge - c14m1
models/props_unique/rope_bridge.mdl TAG- Hanging Bridge
models/props_exteriors/train_truss01.mdl TAG- Train Truss
models/props_highway/scaffolding_320.mdl TAG- Construction Scaffolding
models/props_equipment/scaffolding.mdl TAG- Airport Building Scaffolding a
models/props_equipment/scaffolding_norails.mdl TAG- Airport Building Scaffolding b
models/props_lighting/lights_industrialcluster01a.mdl TAG- Airport Lighting Lamp - Not Lighted
models/props_misc/fire_exit_crushed.mdl TAG- Broken Escape Ladder + Debris and Rocks - c8m1 (Not Solid)
models/lighthouse/b_waterwheel01.mdl TAG- Waterwheel - Irrigation Tool
models/lighthouse/waterwheelengine_01.mdl TAG- Waterwheel Engine 1
models/lighthouse/waterwheelengine_02.mdl TAG- Waterwheel Engine 2
models/props_industrial/dumpsterconstruction01.mdl TAG- Dumpster Construction - c11m2
models/props_industrial/vehicle_lift01_frame01.mdl TAG- Repair Gantry
models/props_industrial/vehicle_lift01.mdl TAG- Repair Gantry Chassis
models/lighthouse/junkyard_crane_arm.mdl TAG- Junkyard Crane - Boom
models/lighthouse/junkyard_crane_base.mdl TAG- Junkyard Crane - Base
models/lighthouse/junkyard_crane_magnet.mdl TAG- Junkyard Crane - Magnet (Not solid)
models/lighthouse/props/estuary_bridge_arch_big.mdl TAG- Large Estuary Bridge Arch
models/lighthouse/props/estuary_bridge_arch_small.mdl TAG- Small Estuary Bridge Arch
models/lighthouse/props/estuary_bridge_corrug.mdl TAG- Estuary Bridge Arch Corrugated Ceiling
models/lighthouse/props/wheelhouse_dock.mdl TAG- Wheelhouse Wooden Floor
models/props_fairgrounds/kiddyland_ridestructure_closed.mdl TAG- Closed Amusement Park Riding Tent
models/props_misc/fairground_tent_closed.mdl TAG- Amusement Park Tent
models/props_urban/diving_board001.mdl TAG- Diving Board c2m1
models/props_downtown/metal_door_doublewide_112_16_frame.mdl TAG- Elevator Door Frame
models/lighthouse/props/estuary_bridge_beams.mdl TAG- Estuary Bridge Arch Beams
models/lighthouse/props/wheelhouse_ceiling01.mdl TAG- Wheelhouse Wooden Ceiling Frame a
models/lighthouse/props/wheelhouse_ceiling02.mdl TAG- Wheelhouse Wooden Ceiling Frame b
models/lighthouse/props/ceiling_metal_beams.mdl TAG- Ceiling metal beams
models/props_unique/airport_greenhouse.mdl TAG- The giant greenhouse skeleton of the first airport level
models/props_fairgrounds/slide.mdl TAG- Amusement Park slide
models/props_unique/airport/atlas.mdl TAG- Hercules statue holding a model of the Earth
models/conspiracy/cspy_radiotower.mdl TAG- Super tall wireless power tower
models/props_unique/escalatortall.mdl TAG- Airport escalator handrail
models/props_unique/escalatorairport.mdl TAG- Airport two-way escalator handrail
models/props_unique/airport/boarding_ramp_frame.mdl TAG- Airport boarding ramp frame
models/props_debris/concrete_debris256pile001a.mdl TAG- Broken Stone - 256 units
models/props_debris/concrete_debris128pile001b.mdl TAG- Broken Stone - 128 units
models/props_debris/corner_rubble1.mdl TAG- Corner Rubble
models/props_rooftop/antenna01a.mdl TAG- Antenna
models/props_rooftop/antenna01.mdl TAG- Antenna - Extra Long
models/props_cemetery/grave_01.mdl TAG- Gravestone 1 (Breakable)
models/props_cemetery/grave_02.mdl TAG- Gravestone 2 (Breakable)
models/props_cemetery/grave_03.mdl TAG- Gravestone 3 (Breakable)
models/props_cemetery/grave_04.mdl TAG- Gravestone 4 (Breakable)
models/props_cemetery/grave_05.mdl TAG- Gravestone 5 (Breakable)
models/props_cemetery/grave_06.mdl TAG- Gravestone 6 (Breakable)
models/props_cemetery/grave_07.mdl TAG- Gravestone 7 (Breakable)
models/props_cemetery/grave_08.mdl TAG- Gravestone 8
models/props_unique/subwaytracks01_a.mdl TAG- Track a
models/props_unique/subwaytracks01_b.mdl TAG- Track b
models/props_unique/subwaytracks01_c.mdl TAG- Track c
models/props_unique/subwaytracks01_d.mdl TAG- Track d
models/props_unique/subwaytracks01_e.mdl TAG- Track e
models/props_unique/subwaytracks01_f.mdl TAG- Track f
models/props_unique/subwaytracks01_g.mdl TAG- Track g
models/props_unique/subwaytracks01_h.mdl TAG- Track h
//Category Decorative
models/props_unique/spawn_apartment/coffeeammo.mdl TAG- Ammo Pusher (L4D model)
models/props/terror/ammo_stack.mdl TAG- Ammo Pusher (L4D2 model)
models/props/de_prodigy/ammo_can_02.mdl TAG- Ammo Can model
models/w_models/weapons/w_pistol_1911.mdl TAG- L4D1 Pistol model
models/w_models/weapons/w_smg_uzi.mdl TAG- Uzi machine gun model
models/w_models/weapons/w_shotgun.mdl TAG- Wooden shotgun model
models/w_models/weapons/w_rifle_m16a2.mdl TAG- M16 Rifle Model
models/w_models/weapons/w_autoshot_m4super.mdl TAG- Automatic Shotgun Model
models/w_models/weapons/w_sniper_mini14.mdl TAG- Hunting Rifle Model
models/w_models/weapons/w_eq_Medkit.mdl TAG- Med Kit Model
models/w_models/weapons/w_eq_painpills.mdl TAG- Pain Pill Model
models/w_models/weapons/w_eq_pipebomb.mdl TAG- Improvised Bomb Model
models/w_models/weapons/w_eq_molotov.mdl TAG- Molotov Model
models/props_junk/gascan001a.mdl TAG- Gasoline Tank Model
models/props_equipment/oxygentank01.mdl TAG- Oxygen Tank Model
models/props_junk/propanecanister001a.mdl TAG- Gas Tank Model
models/props_interiors/medicalcabinet02.mdl TAG- Medical Cabinet Model
models/w_models/weapons/w_pistol_B.mdl TAG- L4D2 Pistol Model
models/w_models/weapons/w_desert_eagle.mdl TAG- Desert Eagle Model
models/w_models/weapons/w_smg_a.mdl TAG- Suppressed Machine Gun Model
models/w_models/weapons/w_pumpshotgun_A.mdl TAG- Iron Shotgun Model
models/w_models/weapons/w_shotgun_spas.mdl TAG- Combat Repeater Shotgun Model
models/w_models/weapons/w_sniper_military.mdl TAG- Military Sniper Rifle Model
models/w_models/weapons/w_desert_rifle.mdl TAG- Triple-Shot Rifle Model
models/w_models/weapons/w_rifle_ak47.mdl TAG- AK47 Rifle Model
models/w_models/weapons/w_smg_mp5.mdl TAG- MP5 Submachine Gun Model
models/w_models/weapons/w_sniper_scout.mdl TAG- Scout Sniper Rifle Model
models/w_models/weapons/w_sniper_awp.mdl TAG- AWP sniper rifle model
models/w_models/weapons/w_rifle_sg552.mdl TAG- SG552 rifle model
models/w_models/weapons/w_m60.mdl TAG- M60 machine gun model
models/w_models/weapons/w_grenade_launcher.mdl TAG- Grenade launcher model
models/w_models/weapons/w_eq_defibrillator.mdl TAG- Stunner model
models/w_models/weapons/w_eq_adrenaline.mdl TAG- Adrenaline model
models/w_models/weapons/w_eq_bile_flask.mdl TAG- Bile flask model
models/weapons/melee/w_cricket_bat.mdl TAG- Cricket bat model
models/weapons/melee/w_crowbar.mdl TAG- Crowbar model
models/weapons/melee/w_electric_guitar.mdl TAG- Electric guitar model
models/weapons/melee/w_katana.mdl TAG- Katana model
models/weapons/melee/w_machete.mdl TAG- Machete model
models/weapons/melee/w_tonfa.mdl TAG- Nightstick model
models/weapons/melee/w_frying_pan.mdl TAG- Frying pan model
models/weapons/melee/w_fireaxe.mdl TAG- Axe model
models/weapons/melee/w_bat.mdl TAG- Baseball bat model
models/weapons/melee/w_golfclub.mdl TAG- Golf Club Model
models/w_models/weapons/w_knife_t.mdl TAG- Knife Model
models/weapons/melee/w_pitchfork.mdl TAG- Pitchfork Model
models/weapons/melee/w_shovel.mdl TAG- Shovel Model
models/weapons/melee/w_chainsaw.mdl TAG- Chainsaw Model
models/w_models/weapons/w_eq_explosive_ammopack.mdl TAG- High Explosive Ammo Model
models/w_models/weapons/w_eq_incendiary_ammopack.mdl TAG- Flame Pack Model
models/props_junk/explosive_box001.mdl TAG- Firework Box Model
models/w_models/weapons/w_cola.mdl TAG- Coke Model
models/props_junk/gnome.mdl TAG- Sprite Model
models/w_models/weapons/50cal.mdl TAG- .50 Machine Gun Model
models/w_models/weapons/w_minigun TAG- Minigun Model
models/props/terror/hamradio.mdl TAG- Walkie-Talkie (Rescue)
models/props_fairgrounds/arcadegame01.mdl TAG- Amusement Park Game Console
models/props_fairgrounds/front_speaker.mdl TAG- Concert Speaker
models/props_interiors/dryer.mdl TAG- Dryer
models/props_interiors/washer.mdl TAG- Washing Machine
models/props_urban/shopping_cart001.mdl TAG- Convenience Store Shopping Cart
models/props_industrial/construction_crane_leverbody.mdl TAG- Electrical Box
models/props_downtown/mini_fridge.mdl TAG- Mini Fridge
models/props_interiors/refrigerator03.mdl TAG- Refrigerator
models/props_interiors/refrigerator02_main.mdl TAG- Refrigerator - Doorless
models/props_interiors/refrigerator_industrial01.mdl TAG- Freezer (Large)
models/props_interiors/toaster_static.mdl TAG- Toaster (Solid State)
models/props_unique/processor_tank.mdl TAG- Boiler
models/props_unique/grocerystorechiller01.mdl TAG- Convenience Store Fridge Cabinet
models/props_furniture/piano.mdl TAG- Piano
models/props_fairgrounds/fairgrounds_flagpole01.mdl TAG- Flagpole
models/props_junk/barrel_fire.mdl TAG- Oil Drum
models/props_c17/oildrum001.mdl TAG- Oil Drum (C17 Version)
models/props_interiors/fridge_mini.mdl TAG- Mini Fridge
models/props_interiors/magazine_rack.mdl TAG- Weekly Cabinet
models/props_interiors/makeshift_stove_battery.mdl TAG- Makeshift Stove Battery
models/props_interiors/printer.mdl TAG- Photocopier
models/props_c17/consolebox01a.mdl TAG- Console Box
models/props_interiors/water_cooler.mdl TAG- Water dispenser - Office
models/props_interiors/stove02.mdl TAG- Stove
models/props/cs_militia/microwave01.mdl TAG- Black microwave
models/props/cs_office/microwave_static.mdl TAG- White microwave
models/props_collectables/mushrooms_glowing.mdl TAG- Glowing mushrooms
models/lighthouse/props/wood_chunks02.mdl TAG- Three pieces of wood
models/lighthouse/props/wood_chunks03.mdl TAG- A broken piece of wood
models/lighthouse/props/wood_chunks04.mdl TAG- Half of a broken piece of wood
models/lighthouse/props/wood_plank_128.mdl TAG- Piece of wood
models/props_interiors/luggagecarthotel01.mdl TAG- Hotel luggage cart
models/props_interiors/bbq_grill.mdl TAG- Barbecue grill
models/props_buildings/warehouse_roofbeams.mdl TAG- Roof beams
models/props_fairgrounds/mic_stand.mdl TAG- Microphone
models/props_urban/ashtray_stand001.mdl TAG- Ashtray
models/props_fairgrounds/fairgrounds_banner02.mdl TAG- Plaza banner
models/props_junk/wheelbarrow01a_static.mdl TAG- Handcart (Solid State)
models/props/cs_assault/handtruck.mdl TAG- Cart
models/props_interiors/sawhorse.mdl TAG- Sawhorse
models/props_c17/hospital_surgerytable01.mdl TAG- Operating Table
models/props_urban/gas_meter.mdl TAG- Gas Meter
models/props_interiors/ac_wallunit.mdl TAG- Air Conditioner
models/props_interiors/airportdeparturerampcontrol01.mdl TAG- Instrument
models/props_wasteland/prison_sprinkler001a.mdl TAG- Pipe - Sprinkler
models/props_wasteland/prison_switchbox001a.mdl TAG- Pipe - Switch
models/props_fortifications/orange_cone001_reference.mdl TAG- Triangular pyramid
models/props_unique/mopbucket01.mdl TAG- Bucket - Mop for squeezing water
models/props_urban/tire001.mdl TAG- Tire
models/props/de_prodigy/tirestack.mdl TAG- Tire stack
models/props_windows/window_stained_glass_broken01_reference.mdl TAG- Cathedral glass
models/props/cs_militia/caseofbeer01.mdl TAG- Beer case
models/props_interiors/waterbottle.mdl TAG- Bucket
models/props_urban/plastic_bucket001.mdl TAG- White bucket
models/props_interiors/refrigerator02_freezerdoor.mdl TAG- Refrigerator Door
models/props_interiors/refrigerator02_lowerdoor.mdl TAG- Refrigerator - Lower Door
models/props_interiors/mounteddeerhead01.mdl TAG- Stuffed Deer Head
models/props_interiors/paper_towel_dispenser.mdl TAG- Toilet Paper Dispenser
models/props_interiors/paper_tray.mdl TAG- File Box
models/props_interiors/phone_motel.mdl TAG- Phone
models/props_equipment/phone_booth_indoor.mdl TAG- Wall-Mounted Phone
models/props_interiors/pot01a.mdl TAG- Teapot
models/props_interiors/shelf1_clutter01d.mdl TAG- Cabinet Item Arrangement
models/props_interiors/styrofoam_cups.mdl TAG- Stacked Cups (Possible)
models/props_interiors/waterheater.mdl TAG- Water Heater
models/props_unique/wheelchair01.mdl TAG- Wheelchair
models/props_interiors/tv.mdl TAG- Television
models/props_c17/computer01_keyboard.mdl TAG- Keyboard
models/props_interiors/corkboardverticle01.mdl TAG- Bulletin Board
models/props_urban/picture_frame001.mdl TAG- Painting 1
models/props_interiors/painting_landscape01.mdl TAG- Painting 2
models/props/de_nuke/electricalbox01.mdl TAG- Two large electrical boxes - Half side only
models/props/de_nuke/electricalbox02.mdl TAG- Two small electrical boxes - Half side only
models/props_downtown/robe_hanging.mdl TAG- Hotel robes
models/props_interiors/closet_clothes.mdl TAG- Hangers with clothes
models/props_interiors/clothing_pile1.mdl TAG- Dropped clothes 1
models/props_interiors/clothing_pile2.mdl TAG- Dropped clothes 2
models/props_interiors/clothing_pile3.mdl TAG- Dropped clothes 3
models/props_interiors/clothing_pile4.mdl TAG- Dropped clothes 4
models/props_interiors/clothing_pile5.mdl TAG- Clothes on the floor 5
models/props_junk/trashcluster01a_corner.mdl TAG- Pile of trash bags - Black - Small amount
models/props_junk/trashcluster01a.mdl TAG- Pile of trash bags - Black
models/props_junk/trashcluster01b.mdl TAG- Pile of trash bags - Red
models/props_junk/food_pile01.mdl TAG- Trash pile on the floor a
models/props_junk/food_pile02.mdl TAG- Trash pile on the floor b
models/props_junk/food_pile03.mdl TAG- Trash pile on the floor c
models/props_interiors/toilet.mdl TAG- Toilet
models/props_interiors/toilet_b.mdl TAG- Open Toilet a
models/props_interiors/toilet_c.mdl TAG- Open Toilet b
models/props_interiors/toiletpaperroll.mdl TAG- Toilet Paper
models/props_interiors/dvd_player.mdl TAG- DVD Player
models/props_interiors/vcr.mdl TAG- DVD
models/props_furniture/bathtub1.mdl TAG- Bathtub a
models/props_interiors/bathtub01.mdl TAG- Bathtub b
models/props_interiors/bathroomsink01.mdl TAG- Bathroom Sink
models/props_urban/hotel_bathroom_showerrod001.mdl TAG- Bathroom Shower Rod
models/props_urban/hotel_bathroom_showerhead001.mdl TAG- Bathroom Showerhead
models/props_interiors/drinking_fountain.mdl TAG- Water Dispenser - Nozzle
models/props_c17/furnituresink001a.mdl TAG- Furniture Sink
models/props_interiors/sink_industrial01.mdl TAG- Washing Sink - Iron
models/props/cs_office/fire_extinguisher.mdl TAG- Fire Extinguisher
models/props_furniture/fireplace2.mdl TAG- Traditional Fireplace
models/props_interiors/stove03_industrial.mdl TAG- Stove + Oven
models/props_interiors/stove04_industrial.mdl TAG- Large Freezer
models/props_rooftop/satellitedish_large01.mdl TAG- Satellite Dish
models/props_wasteland/prison_conduit001a.mdl TAG- High-Voltage Power Tower - Electrical Wires
models/props_fairgrounds/giraffe.mdl TAG- Toy Giraffe
models/props_fairgrounds/alligator.mdl TAG- Toy Crocodile
models/props_fairgrounds/snake.mdl TAG- Toy Snake
models/props_fairgrounds/elephant.mdl TAG- Toy Elephant Sitting
models/props_interiors/teddy_bear.mdl TAG- Teddy Bear
models/lighthouse/book_roku.mdl TAG- Book - Graffiti
models/lighthouse/candle.mdl TAG- Candle
models/lighthouse/mate/mate_sanclemente.mdl TAG- Tea Bowl
models/lighthouse/mate/mate_termo.mdl TAG- Tea Vase
models/lighthouse/mate/mate_yerba.mdl TAG- Tea Bag
models/lighthouse/checkpoint_door_lighthouse01_plank.mdl TAG- C14 Security Door Plank
models/extras/info_speech_australium.mdl TAG- Golden Speech Hint (Not Solid)
models/props_debris/paintbucket01_static.mdl TAG- Paint Bucket (Solid)
models/props_interiors/dish_soap_static.mdl TAG- Dishwashing detergent (Solid)
models/props_interiors/soap_dispenser_static.mdl TAG- Soap dispenser (Solid)
models/props_junk/garbage_glassbottle003a_static.mdl TAG- Garbage glass bottle (Solid)
models/props_junk/garbage_plasticbottle001a_static.mdl TAG- Garbage plastic bottle (Solid)
models/props_junk/metalbucket01a_static.mdl TAG- Metal bucket (Solid)
models/props_junk/metalbucket02a_static.mdl TAG- Large metal bucket (Solid)
models/props_junk/metal_paintcan001b_static.mdl TAG- Paint can (Solid State)
models/props_urban/hotel_bathroom_mirror001.mdl TAG- Mirror c2m1
models/props_interiors/medicinecabinet01_mirror.mdl TAG- Small Mirror c11m3
models/props_misc/mirror-1_static.mdl TAG- Magic Mirror (Solid State)
models/props_interiors/trashcankitchen01.mdl TAG- Kitchen Trash Can
models/props_street/garbage_can_static.mdl TAG- Round Trash Can
models/props_urban/garbage_can001.mdl TAG- Square Trash Can - with Sharp Corners
models/props_urban/garbage_can002.mdl TAG- Square Trash Can
models/props_urban/buoy003.mdl TAG- Beach Buoy
models/props_vehicles/carparts_axel01a_static.mdl TAG- Car Parts - Axe (Solid)
models/props_vehicles/carparts_door01a_static.mdl TAG- Car Parts - Door (Solid)
models/props_vehicles/carparts_tire01a_static.mdl TAG- Car Parts - Hollow Tire (Solid)
models/props_vehicles/carparts_wheel01a_static.mdl TAG- Car Parts - Solid Tire (Solid)
models/lighthouse/props/wheelhouse_window_bars.mdl TAG- Wheelhouse Window
models/lighthouse/props/brick_broken_wall_debris.mdl TAG- Scattered Bricks
models/props_signs/sign_truckstop_01_lettera.mdl TAG- Neon Lamp Letter A (Through)
models/props_street/concertinawire128.mdl TAG- Concertina Wire
models/props_junk/pooh_bucket_01.mdl TAG- Homemade Toilet
models/props_equipment/surgicaltray_01.mdl TAG- Hospital Surgical Tray
models/props_interiors/urinal01.mdl TAG- Men's Restroom Urinal
models/props/de_nuke/emergency_lighta.mdl TAG- Alarm Lamp
models/props_street/awning_department_store.mdl TAG- Awning
models/props_street/shutters_damaged.mdl TAG- Broken Venetian Blinds
models/props/de_inferno/ceiling_fan_blade.mdl TAG- Blade Ceiling Fan
models/props_downtown/keycard_reader.mdl TAG- Keycard Reader
models/props_downtown/ironing_board.mdl TAG- Ironing Board
models/props_downtown/ironing_board_flat.mdl TAG- Ironing Board - Folding
models/props_signs/sign_vannah_hotel_interior.mdl TAG- Vannah Hotel Sign
models/props_signs/kappels_store_exterior.mdl TAG- Kappels Store Sign
models/props_unique/hospital/iv_pole.mdl TAG- Hospital IV Pole
models/props_c17/hospital_cart01.mdl TAG- Hospital Cart
models/props/cs_assault/camera.mdl TAG- Surveillance Camera
models/props_urban/mega_phone001.mdl TAG- Dual-Head Broadcast Speaker
//Category Misc
models/props_exteriors/wood_stairs_swamp.mdl TAG- Swamp Wooden Stairs - 5 Steps
models/props_exteriors/wood_stairs_120_swamp.mdl TAG- Swamp Wooden Stairs - 15 Steps
models/props_exteriors/wood_stairs_40.mdl TAG- Wooden Stairs - 5 Steps (Works Well)
models/props_exteriors/wood_stairs_wide_48.mdl TAG- Wide Wooden Stairs - 6 Steps
models/props_exteriors/wood_porchsteps_01.mdl TAG- Wooden Stairs - 10 Steps (Works Well)
models/props_exteriors/wood_stairs_120.mdl TAG- Wooden Stairs - 15 Steps (Works Well)
models/props_buildings/barn_steps.mdl TAG- Wooden Staircase - 15 Steps - With Handrail
models/props_c17/metalladder001.mdl TAG- Gray Ladder - 8 Steps
models/props_equipment/metalladder002.mdl TAG- Red Ladder - 8 Steps
models/props/cs_office/ladder1.mdl TAG- Yellow Ladder - 9 Steps
models/props_vehicles/train_ladder.mdl TAG- Train Ladder - 9 Steps
models/props_highway/billboard_ladder.mdl TAG- BillBoard Ladder - 25 Steps
models/props/de_train/ladderaluminium.mdl TAG- Aluminum Ladder - Double Decker
models/props/cs_assault/ladderaluminium128.mdl TAG- Aluminum Ladder - Double Decker - Short
models/props_exteriors/stairs_house_01.mdl TAG- Stairs in the House 18 Steps
models/lighthouse/props/wooden_steps_a.mdl TAG- Hollow Wooden Steps - 4 Steps
models/lighthouse/props/wooden_steps_b.mdl TAG- Hollow Wooden Steps - 5 Steps
models/lighthouse/props/wooden_bridge_b.mdl TAG- Wooden Bridge Stairs - 4 Steps
models/props_exteriors/concrete_plant01_stairs_platform.mdl TAG- Stair Platform - 12 Steps
models/props_interiors/stair_metal_03.mdl TAG- Metal Spiral Stairs c2m1
models/props_urban/hotel_stairs001.mdl TAG- Hotel Stairs c2m1
models/props_urban/fire_escape_wide_upper.mdl TAG- Fire Escape Stairs Upper Section
models/props_urban/fire_escape_lower.mdl TAG- Fire Escape Ladder - Lower Section
models/props/cs_militia/ladderrung.mdl TAG- Sewer Ladder - 8 Steps
models/props_unique/generator_switch_01.mdl TAG- Power Switch
models/props/cs_militia/shelves.mdl TAG- AA Column Shelves
models/props/cs_office/Shelves_metal.mdl TAG- Shelves - No Shelves
models/props/cs_office/shelves_metal1.mdl TAG- Shelves - Shelves A
models/props/cs_office/shelves_metal2.mdl TAG- Shelves - Shelves B
models/props_industrial/warehouse_shelf001.mdl TAG- Cargo Pile 1
models/props_industrial/warehouse_shelf002.mdl TAG- Cargo Pile 2
models/props_industrial/warehouse_shelf003.mdl TAG- Cargo Pile 3
models/props_industrial/warehouse_shelf004.mdl TAG- Cargo Pile 4
models/props_equipment/light_floodlight.mdl TAG- LED Floodlight Lamp
models/props_interiors/constructionwalls04_damage01.mdl TAG- Extra-long Steel Column
models/props_interiors/ibeam_breakable01.mdl TAG- Rebar (Tank can be broken)
models/props_interiors/ibeam_breakable01_damaged02.mdl TAG- Rebar Broken
models/props/cs_militia/logpile2.mdl TAG- Wood Push
models/props_wasteland/light_spotlight01_lamp.mdl TAG- Lighting Lamp on Lamp Tower
models/props_fairgrounds/bass_amp.mdl TAG- Bass Amplifier
models/props_fairgrounds/bass_monitor.mdl TAG- Bass Controller
models/props_fairgrounds/bass_case.mdl TAG- Bass Box
models/props_fairgrounds/amp_plexi.mdl TAG- Speaker
models/props_fairgrounds/amp_stack_small.mdl TAG- Medium Speaker
models/props_fairgrounds/amp_stack.mdl TAG- Large Speaker
models/props_fairgrounds/anvil_case_32.mdl TAG- Party Case
models/props_fairgrounds/anvil_case_64.mdl TAG- Party Case - Long
models/props_fairgrounds/anvil_case_casters_32.mdl TAG- Party Case - With Casters (Handy)
models/props_fairgrounds/anvil_case_casters_64.mdl TAG- Party Case - Long - With Casters (Handy)
models/props/cs_office/paperbox_pile_01.mdl TAG- A4 Cardboard Box Pile
models/props_junk/cardboard_box03_static.mdl TAG- Cardboard Box A (Solid)
models/props_junk/cardboard_box04_static.mdl TAG- Cardboard Box b (Solid)
models/props_junk/cardboard_box05_static.mdl TAG- Cardboard box c (Solid)
models/props_junk/cardboard_box07_static.mdl TAG- Cardboard box d (Solid)
models/props/cs_assault/washer_box.mdl TAG- Laundry Box
models/props/cs_assault/box_stack1.mdl TAG- Hazardous Packaging - Double-layered, 12 boxes
models/props/cs_assault/box_stack2.mdl TAG- Hazardous Packaging - Single-layered, 9 boxes
models/props_crates/static_crate_40.mdl TAG- Military Crate (useful)
models/props/cs_militia/boxes_garage_lower.mdl TAG- Three boxes (useful)
models/props/cs_militia/boxes_frontroom.mdl TAG- Double-layered Crate - Five below, three above (useful)
models/props/cs_militia/footlocker01_closed.mdl TAG- Locked Box
models/props_junk/cinderblock01a.mdl TAG- Square Tile
models/props_junk/dumpster.mdl TAG- Dumpster - Green
models/props_junk/dumpster_2.mdl TAG- Dumpster - White
models/props/de_nuke/crate_small.mdl TAG- Wood Crate - Medium
models/props/de_nuke/crate_extralarge.mdl TAG- Wood Crate - Extra Large
models/props/cs_militia/crate_extralargemill.mdl TAG- Wood Crate - Extra Large - Worn
models/props_highway/plywood_01.mdl TAG- Small Wood Planks (Handy)
models/props_interiors/handrail_hospital01_16.mdl TAG- Wood Slats - Shorter
models/props_interiors/handrail_hospital01_32.mdl TAG- Wood Planks - Short
models/props_interiors/handrail_hospital01_64.mdl TAG- Wood Planks - Medium
models/props_interiors/handrail_hospital01_128.mdl TAG- Wood Planks - Long
models/props_interiors/handrail_hospital01_256.mdl TAG- Wood Planks - Very Long
models/props_junk/wood_pallet001a.mdl TAG- Wood Pallet
models/props_swamp/plank001a_192.mdl TAG- Swamp Wood Pallet - With Base
models/props_swamp/plank001b_192.mdl TAG- Swampwood Pallets
models/props_fairgrounds/building_support_128.mdl TAG- Building Support - 4th Floor
models/props_c17/truss02h.mdl TAG- Building Iron Support - 1st Floor
models/props_c17/truss02g.mdl TAG- Building Iron Support - 2nd Floor
models/props_c17/truss02e.mdl TAG- Building Iron Support - 4th Floor
models/props_c17/truss02d.mdl TAG- Building Iron Support - 5th Floor
models/props_furniture/kitchen_vent1.mdl TAG- Kitchen Range Hood - with Vent Duct
models/props_interiors/stovehood01.mdl TAG- Kitchen Range Hood - No Vent Pipe
models/props_vents/vent_large_straight002.mdl TAG- Vent Pipe
models/props_vents/vent_cluster006.mdl TAG- Vent Pipe - Long Straight
models/props_vents/vent_cluster007.mdl TAG- Vent Pipe - 90 Degree Bend
models/props_vents/vent_large_corner001.mdl TAG- Vent Pipe - Small Bend
models/props_vents/vent_large_straight001.mdl TAG- Vent Pipe - Short Straight
models/props_wasteland/chimneypipe01a.mdl TAG- Chimney Pipe
models/props_exteriors/chimney5.mdl TAG- Single Chimney
models/props_exteriors/chimney4.mdl TAG- Two-pipe chimney
models/props_exteriors/chimney2.mdl TAG- Three-pipe chimney
models/props_industrial/barrel_fuel.mdl TAG- Fuel barrel
models/props_industrial/wire_spool_01.mdl TAG- Cable spool
models/props_industrial/wire_spool_02.mdl TAG- Cable spool - no wire
models/props_interiors/ceda_easel01.mdl TAG- CEDA report stand
models/props_highway/highway_sign001.mdl TAG- Highway sign - Place name (No. 10)
models/props_highway/highway_sign002.mdl TAG- Highway sign - Place name (Upright Arrow)
models/props_highway/highway_sign003.mdl TAG- Highway Sign - Place Name (Right Lane)
models/props_highway/highway_sign004.mdl TAG- Highway Sign - Exit (Upright Arrow)
models/props_highway/highway_sign005.mdl TAG- Highway Sign - Exit 35MPH
models/props_highway/highway_sign006.mdl TAG- Highway Sign - Downright Directional Arrow
models/props_highway/highway_sign007.mdl TAG- Highway Sign - Exit 1
models/props_highway/highway_sign009.mdl TAG- Highway Sign - Route 10
models/props_interiors/luggagescale.mdl TAG- Signage - Luggage Cart
models/props_street/rent_sign.mdl TAG- Rental Sign
models/props_signs/sign_street_04.mdl TAG- Street Sign
models/props_street/stopsign01.mdl TAG- Stop Warning Sign
models/props_exteriors/park_sign.mdl TAG- Park Sign
models/props_misc/military_sign01.mdl TAG- Military Sign a
models/props_misc/military_sign01_2.mdl TAG- Military Sign b
models/props_misc/military_sign02.mdl TAG- Military Sign c
models/props_mall/mall_directory.mdl TAG- Signage - Mall Map
models/props_street/sign_pawnshop01.mdl TAG- Diamond Sign
models/props_street/signhotel01.mdl TAG- Billboard - HOTEL c8m1
models/props_signs/sign_apartment.mdl TAG- Apartment Sign c11m2
models/props_highway/billboard_01.mdl TAG- Billboard c2m1
models/props_rooftop/billboard06.mdl TAG- Billboard - MONEY BANK
models/props_signs/burgersign_beacon.mdl TAG- Oversized Billboard a - Burger Tank - Not Solid
models/props_signs/burgersign.mdl TAG- Oversized Billboard a - Burger Tank - Not Solid solid)
models/props_signs/raisedbillboard.mdl TAG- Oversized Billboard b - Burger Tank
models/props_fairgrounds/entrance_sign.mdl TAG- Oversized Sign - Amusement Park Entrance
models/props_fortifications/police_barrier001_128_reference.mdl TAG- Police Barrier Sign
models/props_street/traffic_plate_01.mdl TAG- Metal Sheet
models/props_interiors/sheetrock_leaning.mdl TAG- Long Sheet Rock - Stackable
models/props_equipment/tablegreenhouse01.mdl TAG- Long Sheet Rock Stand - c11m1
models/props_swamp/ferry.mdl TAG- Building a Tin House
models/props_unique/airport/atlas_break_ball.mdl TAG- Earth Model
models/lighthouse/props/camp_tent.mdl TAG- Camping Tent
models/lighthouse/glass_design01a.mdl TAG- Clear Glass
models/lighthouse/glass_design01b.mdl TAG- Clear Glass - Wide