forked from eezstreet/SWATEliteForce
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVisualEffects.ini
6342 lines (5502 loc) · 221 KB
/
VisualEffects.ini
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
[IGVisualEffectsSubsystem.VisualEffectsSubsystem]
EventResponse=TriggerTriggered
EventResponse=TemporaryPlaceholderWeaponAmmoBulletHit
EventResponse=FlashbangGrenadeProjectileDetonated_Explosion
EventResponse=TemporaryPlaceholderWeaponFired_EnemyWeapon
EventResponse=HotelTVwithDamageDamaged_Hot_FlatscreenTV
EventResponse=Hotel_BurgerLunchPreAppearanceChanged
EventResponse=Hotel_ExtinguisherBoxDamaged_hot_extinguisher_box
EventResponse=Hotel_TelephoneDamaged_Hot_BusinessPhone
EventResponse=Hotel_TVDamaged_Hot_FlatscreenTV
EventResponse=Hotel_SodaCanDamaged
EventResponse=Hotel_TV_RemoteDamaged
EventResponse=Hotel_CableBoxPreAppearanceChanged
EventResponse=Hotel_SmokeDetectorDamaged_Hot_SmokeDetector
EventResponse=Hotel_TVDamaged_hot_flatscreentv_on
EventResponse=Hotel_DeskLamp_onPreAppearanceChanged
EventResponse=Hotel_DesklampDamaged_hot_desklamp_off
EventResponse=TemporaryPlaceholderWeaponFired_OfficerWeapon
EventResponse=TemporaryPlaceholderWeaponAmmoBulletHit_Hotel_WaterCooler
EventResponse=Hotel_Extinguisher_FreeDamaged_hot_extinguisher
EventResponse=AmmunitionBulletHit_spangs
EventResponse=AmmunitionBulletHit_spangsNoDamage
EventResponse=M4A1_ThirdPersonFired
EventResponse=M4A1_FirstPersonFired
EventResponse=M4A1sd_ThirdPersonFired
EventResponse=M4A1sd_FirstPersonFired
EventResponse=M16A1_ThirdPersonFired
EventResponse=M16A1_FirstPersonFired
EventResponse=M16A1sd_ThirdPersonFired
EventResponse=M16A1sd_FirstPersonFired
EventResponse=M16A1sd_FirstPersonBurstFired
EventResponse=M16A1sd_ThirdPersonBurstFired
EventResponse=hk33_ThirdPersonFired
EventResponse=hk33_FirstPersonFired
EventResponse=hk33s_ThirdPersonFired
EventResponse=hk33s_FirstPersonFired
EventResponse=ColtM1911_ThirdPersonFired
EventResponse=ColtM1911_FirstPersonFired
EventResponse=BrowHP_ThirdPersonFired
EventResponse=BrowHP_FirstPersonFired
EventResponse=BrowHPsd_ThirdPersonFired
EventResponse=BrowHPsd_FirstPersonFired
EventResponse=MP5_FirstPersonFired
EventResponse=MP5_ThirdPersonFired
EventResponse=mp5k_FirstPersonFired
EventResponse=mp5k_ThirdPersonFired
EventResponse=mp5ksd_FirstPersonFired
EventResponse=mp5ksd_ThirdPersonFired
EventResponse=mp5ksd_FirstPersonBurstFired
EventResponse=mp5ksd_ThirdPersonBurstFired
EventResponse=UMP45sd_FirstPersonFired
EventResponse=UMP45sd_ThirdPersonFired
EventResponse=SwatOfficerSpoonFlip
EventResponse=FlashbangGrenadeProjectileDetonated_DynamicLight
EventResponse=DeployedC2ChargeDetonated_Explosion
EventResponse=CSGasGrenadeProjectileDetonated
EventResponse=RedSmokeGrenadeProjectileDetonated
EventResponse=StingGrenadeProjectileDetonated
EventResponse=PepperSpray_FirstPersonBurstFired
EventResponse=PepperSpray_ThirdPersonBurstFired
EventResponse=SilencedMP5_FirstPersonFired
EventResponse=SilencedMP5_ThirdPersonFired
EventResponse=mp5sd_FirstPersonFired
EventResponse=mp5sd_ThirdPersonFired
EventResponse=mp5sd_FirstPersonBurstFired
EventResponse=mp5sd_ThirdPersonBurstFired
EventResponse=M4Super90_FirstPersonFired
EventResponse=M4Super90_ThirdPersonFired
EventResponse=M1Super90sg_FirstPersonFired
EventResponse=M1Super90sg_ThirdPersonFired
EventResponse=NovaPump_FirstPersonFired
EventResponse=NovaPump_ThirdPersonFired
EventResponse=rem870_FirstPersonFired
EventResponse=rem870_ThirdPersonFired
EventResponse=Office_StyrofoamCupDestroyed
EventResponse=AshtrayDestroyed
EventResponse=BathproductsDestroyed
EventResponse=DonutsPreAppearanceChanged
EventResponse=JunctionBoxDamaged_hot_junctionbox
EventResponse=EmergencyLightDamaged_hot_emergencylight
EventResponse=PaintCanDamaged
EventResponse=Abomb_TVBroke
EventResponse=Foodwall_TVDamaged_mac_tv_17inoff
EventResponse=Hospital_TVBroke
EventResponse=Barber_TVDamaged_mac_oldtv
EventResponse=Conv_TVBroke
EventResponse=BoomboxPreAppearanceChanged
EventResponse=AshtrayAlive
EventResponse=FireAlarm_BuzzerDamaged_hot_firealarm
EventResponse=Office_BusinessPhoneDamaged
EventResponse=Barber_PokerChip_Stack_BlueDestroyed
EventResponse=Barber_PokerChip_Stack_RedDestroyed
EventResponse=Barber_PokerChip_Stack_WhiteDestroyed
EventResponse=BeerBottleDestroyed
EventResponse=CoffeePotDestroyed
EventResponse=SoySauceDestroyed
EventResponse=Conv_GasCan_ExplodeDestroyed
EventResponse=TaserFiredProbe
EventResponse=Glass_ObjectsDestroyed
EventResponse=TV_DinnerDestroyed
EventResponse=Conv_Candy1Destroyed
EventResponse=SoapDestroyed
EventResponse=Hotel_FlowerVaseDestroyed
EventResponse=M4A1_FirstPersonBurstFired
EventResponse=M4A1_ThirdPersonBurstFired
EventResponse=M4A1sd_FirstPersonBurstFired
EventResponse=M4A1sd_ThirdPersonBurstFired
EventResponse=M16A1_FirstPersonBurstFired
EventResponse=M16A1_ThirdPersonBurstFired
EventResponse=hk33_FirstPersonBurstFired
EventResponse=hk33_ThirdPersonBurstFired
EventResponse=hk33s_FirstPersonBurstFired
EventResponse=hk33s_ThirdPersonBurstFired
EventResponse=MP5_FirstPersonBurstFired
EventResponse=MP5_ThirdPersonBurstFired
EventResponse=mp5k_FirstPersonBurstFired
EventResponse=mp5k_ThirdPersonBurstFired
EventResponse=SilencedMP5_FirstPersonBurstFired
EventResponse=SilencedMP5_ThirdPersonBurstFired
EventResponse=AbombStageLightAlive
EventResponse=CoffeePotAlive
EventResponse=Paintball_FirstPersonFired
EventResponse=Paintball_ThirdPersonFired
EventResponse=CSballBulletHit
EventResponse=RedLibrary_ProjectorAlive_Beams
EventResponse=Tenement_ProjectorAlive
EventResponse=RedLibrary_ProjectorAlive_projection
EventResponse=NonLethalShotgun_FirstPersonFired
EventResponse=NonLethalShotgun_ThirdPersonFired
EventResponse=BreachingShotgun_FirstPersonFired
EventResponse=BreachingShotgun_ThirdPersonFired
EventResponse=AK47_ThirdPersonFired
EventResponse=AK47_ThirdPersonBurstFired
EventResponse=AK47t_ThirdPersonFired
EventResponse=AK47t_ThirdPersonBurstFired
EventResponse=AK74_ThirdPersonFired
EventResponse=AK74_ThirdPersonBurstFired
EventResponse=M4_ThirdPersonFired
EventResponse=M4_ThirdPersonBurstFired
EventResponse=AK74su_ThirdPersonFired
EventResponse=AK74su_ThirdPersonBurstFired
EventResponse=G36k_ThirdPersonFired
EventResponse=G36k_ThirdPersonBurstFired
EventResponse=G36ksd_ThirdPersonFired
EventResponse=G36ksd_ThirdPersonBurstFired
EventResponse=SR25_ThirdPersonFired
EventResponse=SR25_ThirdPersonBurstFired
EventResponse=UZI_ThirdPersonFired
EventResponse=UZI_ThirdPersonBurstFired
EventResponse=UMP45_ThirdPersonFired
EventResponse=HK53_ThirdPersonFired
EventResponse=HK53_ThirdPersonBurstFired
EventResponse=UMP45_ThirdPersonBurstFired
EventResponse=BerettaM9_ThirdPersonFired
EventResponse=Scorpion_ThirdPersonFired
EventResponse=Scorpion_ThirdPersonBurstFired
EventResponse=USP40_ThirdPersonFired
EventResponse=Ingram_ThirdPersonFired
EventResponse=Ingram_ThirdPersonBurstFired
EventResponse=PythonRevolver_ThirdPersonFired
EventResponse=Pump1_ThirdPersonFired
EventResponse=SawedOff_ThirdPersonFired
EventResponse=Pump2RifleGrip_ThirdPersonFired
EventResponse=M1super90_ThirdPersonFired
EventResponse=Taser_FirstPersonFired
EventResponse=Taser_ThirdPersonFired
EventResponse=AmmunitionBulletExited_spangs
EventResponse=AmmunitionBulletExited_spangsNoDamage
EventResponse=PoliceLightsSpawned_Red
EventResponse=PoliceLightsSpawned_Blue
EventResponse=Tenement_windowDamaged_ten_window01
EventResponse=PythonRevolver_ThirdPersonPythonReload
EventResponse=Office_SodaCan1Damaged
EventResponse=Office_SodaCan2Damaged
EventResponse=Office_SodaCan3Damaged
EventResponse=Office_RolodexDamaged
EventResponse=Silence_windowUpperPreAppearanceChanged_sil_WindowUpper
EventResponse=Silence_windowLowerPreAppearanceChanged_sil_WindowLower
EventResponse=BarberBarPullvroom
EventResponse=BarberBarPullScreechleft
EventResponse=BarberBarPullScreechRight
EventResponse=BarberBarPullSnap1
EventResponse=BarberBarPullSnap2
EventResponse=BarberBarPullSnap3
EventResponse=BarberBarPullSnap4
EventResponse=BarberBarPullbpSpark1
EventResponse=PowerPlant_InteriorWindowPreAppearanceChanged
EventResponse=PowerPlant_exteriorPane1PreAppearanceChanged
EventResponse=PowerPlant_exteriorPane2PreAppearanceChanged
EventResponse=PowerPlant_exteriorPane3PreAppearanceChanged
EventResponse=PowerPlant_exteriorPane4PreAppearanceChanged
EventResponse=FoodWall_Window1PreAppearanceChanged
EventResponse=FoodWall_Window2PreAppearanceChanged
EventResponse=Convenience_FridgeGlassDoorPreAppearanceChanged
EventResponse=BoobyTrap_Door_BombDetonated
EventResponse=BoobyTrap_BombDetonated
EventResponse=Tenement_SilverwareCupDestroyed
EventResponse=DishesDestroyed
EventResponse=Silence_PlateStackDestroyed
EventResponse=Tenement_PlateStackDestroyed
EventResponse=RemoteControlsDestroyed
EventResponse=RedLibrary_CoffeeMugDestroyed
EventResponse=Barber_DisinfectantJarDestroyed
EventResponse=Arms_windowLowerDamaged_arm_BottomWindow
EventResponse=Arms_WindowUpperDamaged_arm_TopWindow
EventResponse=con_windowFridgeBigDestroyed
EventResponse=con_dirtyWindowDoubleDestroyed
EventResponse=con_FrontDoorUpperRightPreAppearanceChanged_con_DoorWindowUpRi_
EventResponse=con_FrontDoorUpperLeftPreAppearanceChanged_con_DoorWindowUpLeft
EventResponse=con_FrontDoorLowerLeftPreAppearanceChanged_con_DoorWindowLowLe_
EventResponse=con_FrontDoorLowerRightPreAppearanceChanged_con_DoorWindowLowR_
EventResponse=repo_DirtyWindowDoubleDestroyed_repo_dirtyWindowPane
EventResponse=barb_WindowPane1Destroyed
EventResponse=barb_WindowPane2Destroyed
EventResponse=barb_WindowPane3Destroyed
EventResponse=barb_WindowFrontBigDestroyed
EventResponse=barb_WindowFrontLDestroyed
EventResponse=barb_WindowFrontRDestroyed
EventResponse=JewelryAlarmLightAlive
EventResponse=JewelryAlarmLightAlive_Projector
EventResponse=ColtM1911_FirstPersonFired_MuzzleFlash
EventResponse=ColtM1911_ThirdPersonFired_MuzzleFlash
EventResponse=BrowHP_FirstPersonFired_MuzzleFlash
EventResponse=BrowHP_ThirdPersonFired_MuzzleFlash
EventResponse=BreachingShotgun_FirstPersonFired_MuzzleFlash
EventResponse=BreachingShotgun_ThirdPersonFired_MuzzleFlash
EventResponse=PythonRevolver_ThirdPersonFired_MuzzleFlash
EventResponse=NovaPump_ThirdPersonFired_MuzzleFlash
EventResponse=NovaPump_FirstPersonFired_MuzzleFlash
EventResponse=rem870_ThirdPersonFired_MuzzleFlash
EventResponse=rem870_FirstPersonFired_MuzzleFlash
EventResponse=NonLethalShotgun_ThirdPersonFired_MuzzleFlash
EventResponse=NonLethalShotgun_FirstPersonFired_MuzzleFlash
EventResponse=MP5_FirstPersonFired_MuzzleFlash
EventResponse=MP5_FirstPersonBurstFired_MuzzleFlash
EventResponse=mp5k_FirstPersonFired_MuzzleFlash
EventResponse=mp5k_FirstPersonBurstFired_MuzzleFlash
EventResponse=M4Super90_FirstPersonFired_MuzzleFlash
EventResponse=M1Super90sg_FirstPersonFired_MuzzleFlash
EventResponse=M4A1_FirstPersonFired_MuzzleFlash
EventResponse=M4A1_FirstPersonBurstFired_MuzzleFlash
EventResponse=M16A1_FirstPersonFired_MuzzleFlash
EventResponse=M16A1_FirstPersonBurstFired_MuzzleFlash
EventResponse=hk33_FirstPersonFired_MuzzleFlash
EventResponse=hk33_FirstPersonBurstFired_MuzzleFlash
EventResponse=hk33s_FirstPersonFired_MuzzleFlash
EventResponse=hk33s_FirstPersonBurstFired_MuzzleFlash
EventResponse=AK47_ThirdPersonBurstFired_MuzzleFlash
EventResponse=AK47_ThirdPersonFired_MuzzleFlash
EventResponse=AK47t_ThirdPersonBurstFired_MuzzleFlash
EventResponse=AK47t_ThirdPersonFired_MuzzleFlash
EventResponse=AK74_ThirdPersonBurstFired_MuzzleFlash
EventResponse=AK74_ThirdPersonFired_MuzzleFlash
EventResponse=AK74su_ThirdPersonBurstFired_MuzzleFlash
EventResponse=AK74su_ThirdPersonFired_MuzzleFlash
EventResponse=BerettaM9_ThirdPersonFired_MuzzleFlash
EventResponse=M4Super90_ThirdPersonFired_MuzzleFlash
EventResponse=M1Super90sg_ThirdPersonFired_MuzzleFlash
EventResponse=MP5_ThirdPersonBurstFired_MuzzleFlash
EventResponse=MP5_ThirdPersonFired_MuzzleFlash
EventResponse=mp5k_ThirdPersonBurstFired_MuzzleFlash
EventResponse=mp5k_ThirdPersonFired_MuzzleFlash
EventResponse=G36k_ThirdPersonBurstFired_MuzzleFlash
EventResponse=G36k_ThirdPersonFired_MuzzleFlash
EventResponse=HK53_ThirdPersonBurstFired_MuzzleFlash
EventResponse=HK53_ThirdPersonFired_MuzzleFlash
EventResponse=Ingram_ThirdPersonBurstFired_MuzzleFlash
EventResponse=Ingram_ThirdPersonFired_MuzzleFlash
EventResponse=M4A1_ThirdPersonBurstFired_MuzzleFlash
EventResponse=M4A1_ThirdPersonFired_MuzzleFlash
EventResponse=M16A1_ThirdPersonBurstFired_MuzzleFlash
EventResponse=M16A1_ThirdPersonFired_MuzzleFlash
EventResponse=hk33_ThirdPersonBurstFired_MuzzleFlash
EventResponse=hk33_ThirdPersonFired_MuzzleFlash
EventResponse=hk33s_ThirdPersonBurstFired_MuzzleFlash
EventResponse=hk33s_ThirdPersonFired_MuzzleFlash
EventResponse=M4_ThirdPersonBurstFired_MuzzleFlash
EventResponse=M4_ThirdPersonFired_MuzzleFlash
EventResponse=USP40_ThirdPersonFired_MuzzleFlash
EventResponse=Pump1_ThirdPersonFired_MuzzleFlash
EventResponse=Pump2RifleGrip_ThirdPersonFired_MuzzleFlash
EventResponse=SawedOff_ThirdPersonFired_MuzzleFlash
EventResponse=Scorpion_ThirdPersonBurstFired_MuzzleFlash
EventResponse=Scorpion_ThirdPersonFired_MuzzleFlash
EventResponse=UMP45_ThirdPersonFired_MuzzleFlash
EventResponse=UMP45_ThirdPersonBurstFired_MuzzleFlash
EventResponse=Tenement_ProjectorAlive_projected
EventResponse=DoorModelBreached_door_jewel_door
EventResponse=AmmunitionBulletHit_decals
EventResponse=AmmunitionBulletExited_decals
EventResponse=BarberBarPullBarPullBrake
EventResponse=TaserProbeBulletHit
EventResponse=TaserProbeBounced
EventResponse=DoorModelBreached_door_foodwall_front
EventResponse=DoorModelBreached_door_bulldoor01
EventResponse=DoorModelBreached_door_dna_office
EventResponse=DoorModelBreached_door_dna_officesolid
EventResponse=DoorModelBreached_door_door01
EventResponse=DoorModelBreached_door_door02
EventResponse=DoorModelBreached_door_door03
EventResponse=DoorModelBreached_door_door04
EventResponse=DoorModelBreached_door_hosp_windowdoor
EventResponse=DoorModelBreached_door_hot_constructdoor
EventResponse=DoorModelBreached_door_hotel_roomdoor
EventResponse=DoorModelBreached_door_jewel_firedoor
EventResponse=DoorModelBreached_door_kitchendoor01
EventResponse=DoorModelBreached_door_metaldoor05
EventResponse=DoorModelBreached_door_silmetaldoor
EventResponse=DoorModelBreached_door_silmetaldoorcell
EventResponse=DoorModelBreached_door_ten_frontdoor01
EventResponse=DoorModelBreached_door_vip_door
EventResponse=DoorModelBreached_door_abomb_mensbathroom
EventResponse=DoorModelBreached_door_abomb_womensbathroom
EventResponse=DoorModelBreached_door_convinience1
EventResponse=DoorModelBreached_door_convinience2
EventResponse=DoorModelBreached_TestDoorKarma78Wide
EventResponse=DoorModelBlasted_door_abomb_mensbathroom
EventResponse=DoorModelBlasted_door_abomb_womensbathroom
EventResponse=DoorModelBlasted_door_bulldoor01
EventResponse=DoorModelBlasted_door_convinience1
EventResponse=DoorModelBlasted_door_convinience2
EventResponse=DoorModelBlasted_door_dna_office
EventResponse=DoorModelBlasted_door_dna_officesolid
EventResponse=DoorModelBlasted_door_door01
EventResponse=DoorModelBlasted_door_door02
EventResponse=DoorModelBlasted_door_door03
EventResponse=DoorModelBlasted_door_door04
EventResponse=DoorModelBlasted_door_hosp_windowdoor
EventResponse=DoorModelBlasted_door_hot_constructdoor
EventResponse=DoorModelBlasted_door_hotel_roomdoor
EventResponse=DoorModelBlasted_door_jewel_door
EventResponse=DoorModelBlasted_door_jewel_firedoor
EventResponse=DoorModelBlasted_door_kitchendoor01
EventResponse=DoorModelBlasted_door_metaldoor05
EventResponse=DoorModelBlasted_door_silmetaldoor
EventResponse=DoorModelBlasted_door_silmetaldoorcell
EventResponse=DoorModelBlasted_door_ten_frontdoor01
EventResponse=DoorModelBlasted_door_vip_door
EventResponse=DoorModelBlasted_TestDoorKarma78Wide
EventResponse=DoorModelBlasted_door_foodwall_front
EventResponse=AmmunitionBulletHit_dynamicLight
EventResponse=SwatPawnFootWalk
EventResponse=CSGasGrenadeProjectileStoppedBouncing
EventResponse=RedSmokeGrenadeProjectileStoppedBouncing
EventResponse=LessLethalAmmoBulletHit
EventResponse=ArmsSubwayTrainTrainSpark1
EventResponse=ArmsSubwayTrainTrainSpark2
EventResponse=ArmsSubwayTrainTrainSpark3
EventResponse=ArmsSubwayTrainTrainSpark1_corona
EventResponse=ArmsSubwayTrainTrainSpark2_corona
EventResponse=ArmsSubwayTrainTrainSpark3_corona
EventResponse=SilenceLivingRoom_TVAlive
EventResponse=SilenceBasement_TVAlive
EventResponse=VIPgun_FirstPersonFired
EventResponse=VIPgun_FirstPersonFired_MuzzleFlash
EventResponse=VIPgun_ThirdPersonFired
EventResponse=VIPgun_ThirdPersonFired_MuzzleFlash
EventResponse=CD_StackDestroyed
EventResponse=Cash_StackDestroyed
EventResponse=MilkCartonDamaged
EventResponse=MilkJugDamaged
EventResponse=CookingOilDamaged
EventResponse=2LiterSodaDamaged
EventResponse=Conv_2LiterSodaDamaged
EventResponse=TeddyBearDamaged
EventResponse=TeddyBearBearExplode
EventResponse=SprinklerHeadDamaged
EventResponse=con_counterWindowPreAppearanceChanged_con_counterWIndow
EventResponse=ConvTrafficAAlive_RightHeadLight
EventResponse=ConvTrafficAAlive_LeftHeadLight
EventResponse=ConvTrafficAAlive_Dust
EventResponse=Silence_GlassCagePreAppearanceChanged_sil_cage_glass_HEALTHY
EventResponse=HospitalMedium_TVBroke
EventResponse=HospitalSmall_TVBroke
EventResponse=Conv_KenoTVDamaged_con_kenotv
EventResponse=Conv_GameTVDamaged_mac_oldtv_vid01
EventResponse=con_FrontWindowLargePreAppearanceChanged
EventResponse=Repo_TouchTonePhoneDamaged_mac_touchtone_phone
EventResponse=Office_FlatPanelBroke
EventResponse=Office_ComputerMonitor_OffBroke
EventResponse=Hosp_OxygenTankPreAppearanceChanged
EventResponse=CalculatorDestroyed
EventResponse=DVDplayerBroke
EventResponse=Jewelry_ProjectorAlive_projectingAfrica
EventResponse=BombBombExploded
EventResponse=HospitalSmall_TVAlive
EventResponse=NurseStation_WindowDestroyed
EventResponse=Tenement_FrontSideWindowDestroyed
EventResponse=Tenement_FrontTopWindowDestroyed
EventResponse=SwatOfficerInZone
EventResponse=NineMMpistol_FirstPersonFired
EventResponse=NineMMpistol_FirstPersonFired_MuzzleFlash
EventResponse=NineMMpistol_ThirdPersonFired
EventResponse=NineMMpistol_ThirdPersonFired_MuzzleFlash
EventResponse=Glock18_FirstPersonFired
EventResponse=Glock18_FirstPersonBurstFired
EventResponse=Glock18_FirstPersonFired_MuzzleFlash
EventResponse=Glock18_FirstPersonBurstFired_MuzzleFlash
EventResponse=Glock18_ThirdPersonFired
EventResponse=Glock18_ThirdPersonBurstFired
EventResponse=Glock18_ThirdPersonFired_MuzzleFlash
EventResponse=Glock18_ThirdPersonBurstFired_MuzzleFlash
EventResponse=p226_FirstPersonFired
EventResponse=p226_FirstPersonFired_MuzzleFlash
EventResponse=p226_ThirdPersonFired
EventResponse=p226_ThirdPersonFired_MuzzleFlash
EventResponse=p226sd_FirstPersonFired
;EventResponse=p226sd_ThirdPersonFired
EventResponse=Tenement_PipeBombDestroyed
EventResponse=FlashbangGrenadeProjectileDetonated_ScorchMark
EventResponse=FoodwallEtrainTrainSpark1
EventResponse=FoodwallEtrainTrainSpark2
EventResponse=FoodwallEtrainTrainSpark3
EventResponse=FoodwallEtrainTrainSpark1_SparkShower
EventResponse=FoodwallEtrainTrainSpark2_SparkShower
EventResponse=FoodwallEtrainTrainSpark3_SparksShower
EventResponse=FoodwallEtrainTrainSpark1b
EventResponse=FoodwallEtrainTrainSpark1b_SparkShower
EventResponse=SilenceBasement_TVBroke
EventResponse=SilenceLivingRoom_TVBroke
EventResponse=barb_FrontDoorWindowBottomDestroyed
EventResponse=barb_FrontDoorWindowTopDestroyed
EventResponse=AK47_FirstPersonBurstFired
EventResponse=AK47_FirstPersonFired
EventResponse=AmmunitionBloodProjected
EventResponse=GUIcarAlive_Dust
EventResponse=GUIcarAlive_LeftHeadLight
EventResponse=GUIcarAlive_RightHeadLight
EventResponse=REPOhelicopterRepoHeloDust
EventResponse=Jewelry_SecurityMonitor_WallMountedBroke
EventResponse=Jewlery_SecurityMonitor_CeilingMountedBroke
EventResponse=Jewelry_SecurityMonitorBroke
EventResponse=Jewelry_SurveillanceMonitorBroke
EventResponse=VIP_SkyWindowCenterPreAppearanceChanged
EventResponse=VIP_SkyWindowShortPreAppearanceChanged
EventResponse=VIP_SkyWindowLongPreAppearanceChanged
EventResponse=Hospital_GetWell_BalloonDestroyed
EventResponse=Hospital_TeddyBear_BalloonDestroyed
EventResponse=Hospital_BirthdayCakeDestroyed
EventResponse=CameraPositionMarkerPostBombExploded
EventResponse=ShotgunSabotAmmoBulletHit_spangs
EventResponse=ShotgunSabotAmmoBulletHit_decals
EventResponse=HotelSafetyNetHotelHelicopterDust
EventResponse=SwatHostageSmokeUm
EventResponse=Foodwall_RefridComWallSmallGlassDestroyed
EventResponse=Foodwall_RefridComGlassDestroyed
EventResponse=TestDynamicLightDamaged
EventResponse=Red_WindowPaneDestroyed
EventResponse=VIP_InteriorWindowDestroyed
EventResponse=ComputerMouseDestroyed
EventResponse=Repo_GasCan_ExplodeDestroyed
EventResponse=Tenement_GasCan_ExplodeDestroyed
EventResponse=Uzi_FirstPersonFired
EventResponse=Uzi_FirstPersonBurstFired
EventResponse=VIP_FireHoseWindowDestroyed
EventResponse=FragGrenadeProjectileDetonated_Explosion
EventResponse=UMP45_FirstPersonBurstFired
EventResponse=UMP45_FirstPersonFired
EventResponse=UMP45_FirstPersonFired_MuzzleFlash
EventResponse=UMP45_FirstPersonBurstFired_MuzzleFlash
EventResponse=BadGuyUMP_ThirdPersonBurstFired
EventResponse=BadGuyUMP_ThirdPersonFired
EventResponse=BadGuyUMP_ThirdPersonBurstFired_MuzzleFlash
EventResponse=BadGuyUMP_ThirdPersonFired_MuzzleFlash
EventResponse=BadguyG36k_ThirdPersonBurstFired
EventResponse=BadguyG36k_ThirdPersonFired
EventResponse=BadguyG36k_ThirdPersonBurstFired_MuzzleFlash
EventResponse=BadguyG36k_ThirdPersonFired_MuzzleFlash
EventResponse=G36K_FirstPersonFired
EventResponse=G36K_FirstPersonBurstFired
EventResponse=G36K_FirstPersonFired_MuzzleFlash
EventResponse=G36K_FirstPersonBurstFired_MuzzleFlash
EventResponse=G36Ksd_FirstPersonFired
EventResponse=G36Ksd_FirstPersonBurstFired
EventResponse=AK47_FirstPersonBurstFired_MuzzleFlash
EventResponse=AK47_FirstPersonFired_MuzzleFlash
EventResponse=PythonRevolver_FirstPersonFired
EventResponse=PythonRevolver_FirstPersonFired_MuzzleFlash
EventResponse=SwatPawnSixShells
EventResponse=Silence_Jack-o-lanternPreAppearanceChanged
EventResponse=Silence_PumpkinPreAppearanceChanged
EventResponse=VendingMachineGlassDestroyed
EventResponse=PythonRevolverHG_FMJBulletHit_spangs
EventResponse=PythonRevolverHG_JHPBulletHit_spangs
EventResponse=PythonRevolverHG_FMJBulletHit_decals
EventResponse=PythonRevolverHG_JHPBulletHit_decals
EventResponse=VIPGoal_FlareAlive
EventResponse=VIPGoal_RedSmokeAlive
EventResponse=BadguyMP5_ThirdPersonBurstFired
EventResponse=BadguyMP5_ThirdPersonFired
EventResponse=BadguyMP5_ThirdPersonBurstFired_MuzzleFlash
EventResponse=BadguyMP5_ThirdPersonFired_MuzzleFlash
EventResponse=BadguySilencedMP5_ThirdPersonBurstFired
EventResponse=BadguySilencedMP5_ThirdPersonFired
EventResponse=BadguyColtM1911_ThirdPersonFired
EventResponse=BadguyColtM1911_ThirdPersonFired_MuzzleFlash
EventResponse=BadguyM4super90_ThirdPersonFired
EventResponse=BadguyM4super90_ThirdPersonFired_MuzzleFlash
EventResponse=Stingray_FirstPersonFired
EventResponse=Stingray_ThirdPersonFired
EventResponse=CAR_FirstPersonFired
EventResponse=CAR_ThirdPersonFired
EventResponse=P90_FirstPersonFired
EventResponse=P90_FirstPersonBurstFired
EventResponse=P90_ThirdPersonFired
EventResponse=P90_ThirdPersonBurstFired
EventResponse=P90sd_FirstPersonFired
EventResponse=P90sd_FirstPersonBurstFired
EventResponse=P90sd_ThirdPersonFired
EventResponse=P90sd_ThirdPersonBurstFired
EventResponse=SAW_FirstPersonFired
EventResponse=SAW_FirstPersonBurstFired
EventResponse=HK69GL_FirstPersonFired
EventResponse=HK69GL_ThirdPersonFired
EventResponse=SAW_ThirdPersonFired
EventResponse=SAW_ThirdPersonBurstFired
EventResponse=DesertEagle_FirstPersonFired
EventResponse=TEC9_FirstPersonFired
EventResponse=DesertEagle_ThirdPersonFired
EventResponse=TEC9_ThirdPersonFired
EventResponse=DesertEagle_FirstPersonBurstFired
EventResponse=DesertEagle_ThirdPersonBurstFired
EventResponse=TEC9_ThirdPersonBurstFired
EventResponse=SAW_FirstPersonFired_muzzleFlash
EventResponse=SAW_FirstPersonBurstFired_muzzleflash
EventResponse=SAW_ThirdPersonFired_muzzleFlash
EventResponse=SAW_ThirdPersonBurstFired_muzzleFlash
EventResponse=P90_FirstPersonFired_muzzleFlash
EventResponse=P90_FirstPersonBurstFired_muzzleFlash
EventResponse=P90sd_FirstPersonFired_muzzleFlash
EventResponse=P90sd_FirstPersonBurstFired_muzzleFlash
EventResponse=TEC9_FirstPersonBurstFired
EventResponse=TEC9_FirstPersonBurstFired_muzzleFlash
EventResponse=TEC9_ThirdPersonBurstFired_muzzleFlash
EventResponse=TEC9_FirstPersonFired_muzzleFlash
EventResponse=TEC9_ThirdPersonFired_muzzleFlash
EventResponse=DesertEagle_ThirdPersonFired_muzzleFlash
EventResponse=DesertEagle_FirstPersonFired_muzzleFlash
EventResponse=HK69GL_FirstPersonFired_muzzleFlash
EventResponse=HK69GL_ThirdPersonFired_muzzleFlash
EventResponse=Arwen37_FirstPersonFired
EventResponse=Arwen37_ThirdPersonFired
EventResponse=Arwen37_ThirdPersonFired_MuzzleFlash
EventResponse=Arwen37_FirstPersonFired_MuzzleFlash
EventResponse=sg552_ThirdPersonFired
EventResponse=sg552_ThirdPersonBurstFired
EventResponse=sg552_ThirdPersonBurstFired_MuzzleFlash
EventResponse=sg552_ThirdPersonFired_MuzzleFlash
EventResponse=sg552_FirstPersonFired
EventResponse=sg552_FirstPersonBurstFired
EventResponse=sg552_FirstPersonFired_MuzzleFlash
EventResponse=sg552_FirstPersonBurstFired_MuzzleFlash
EventResponse=sg552sd_FirstPersonFired
EventResponse=sg552sd_ThirdPersonFired
EventResponse=sg552sd_FirstPersonBurstFired
EventResponse=sg552sd_ThirdPersonBurstFired
[sg552sd_FirstPersonFired]
Event=Fired
SourceClassName=sg552sd_FirstPerson
Chance=100
Specification=(SpecificationType=SilencedMP51stPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552sd_ThirdPersonFired]
Event=Fired
SourceClassName=sg552sd_ThirdPerson
Chance=100
Specification=(SpecificationType=SilencedMP53rdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552sd_FirstPersonBurstFired]
Event=BurstFired
SourceClassName=sg552sd_FirstPerson
Chance=100
Specification=(SpecificationType=SilencedMP51stPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552sd_ThirdPersonBurstFired]
Event=BurstFired
SourceClassName=sg552sd_ThirdPerson
Chance=100
Specification=(SpecificationType=SilencedMP53rdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552_ThirdPersonFired]
Event=Fired
SourceClassName=sg552_ThirdPerson
Chance=100
Specification=(SpecificationType=G36k3rdpersonmuzzleflash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552_ThirdPersonBurstFired]
Event=BurstFired
SourceClassName=sg552_ThirdPerson
Chance=100
Specification=(SpecificationType=G36k3rdpersonmuzzleflash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552_ThirdPersonBurstFired_MuzzleFlash]
Event=BurstFired
SourceClassName=sg552_ThirdPerson
Suffix=MuzzleFlash
Chance=100
Specification=(SpecificationType=G36k3rdPersonFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552_ThirdPersonFired_MuzzleFlash]
Event=Fired
SourceClassName=sg552_ThirdPerson
Suffix=MuzzleFlash
Chance=100
Specification=(SpecificationType=G36k3rdPersonFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552_FirstPersonFired]
Event=Fired
SourceClassName=sg552_FirstPerson
Chance=100
Specification=(SpecificationType=G36K1stPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552_FirstPersonBurstFired]
Event=BurstFired
SourceClassName=sg552_FirstPerson
Chance=100
Specification=(SpecificationType=G36K1stPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552_FirstPersonFired_MuzzleFlash]
Event=Fired
SourceClassName=sg552_FirstPerson
Suffix=MuzzleFlash
Chance=100
Specification=(SpecificationType=DynamicLightMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[sg552_FirstPersonBurstFired_MuzzleFlash]
Event=BurstFired
SourceClassName=sg552_FirstPerson
Suffix=MuzzleFlash
Chance=100
Specification=(SpecificationType=DynamicLightMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Arwen37_FirstPersonFired]
Event=Fired
SourceClassName=Arwen37_FirstPerson
Chance=100
Specification=(SpecificationType=Arwen37_1stPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Arwen37_ThirdPersonFired]
Event=Fired
SourceClassName=Arwen37_ThirdPerson
Chance=100
Specification=(SpecificationType=Arwen37_3rdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Arwen37_FirstPersonFired_MuzzleFlash]
Event=Fired
SourceClassName=Arwen37_FirstPerson
Suffix=MuzzleFlash
Chance=100
Specification=(SpecificationType=DynamicLightMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Arwen37_ThirdPersonFired_MuzzleFlash]
Event=Fired
SourceClassName=Arwen37_ThirdPerson
Suffix=MuzzleFlash
Chance=100
Specification=(SpecificationType=DynamicLightMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[TriggerTriggered]
Event=Triggered
SourceClassName=Trigger
Chance=100
Specification=(SpecificationType=explosion,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[TemporaryPlaceholderWeaponAmmoBulletHit]
Event=BulletHit
SourceClassName=TemporaryPlaceholderWeaponAmmo
Chance=100
Specification=(SpecificationType=BulletHit,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[FlashbangGrenadeProjectileDetonated_Explosion]
Event=Detonated
SourceClassName=FlashbangGrenadeProjectile
Suffix=Explosion
Chance=100
Specification=(SpecificationType=FBExplode,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[TemporaryPlaceholderWeaponFired_EnemyWeapon]
Event=Fired
SourceClassName=TemporaryPlaceholderWeapon
Tag=EnemyWeapon
Chance=100
Specification=(SpecificationType=MuzzleFlashM4,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[HotelTVwithDamageDamaged_Hot_FlatscreenTV]
Event=Damaged
SourceClassName=HotelTVwithDamage
StaticMesh=Hot_FlatscreenTV
Chance=100
Specification=(SpecificationType=TVdamaged,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_BurgerLunchPreAppearanceChanged]
Event=PreAppearanceChanged
SourceClassName=Hotel_BurgerLunch
Chance=100
Specification=(SpecificationType=BurgerExplode,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_ExtinguisherBoxDamaged_hot_extinguisher_box]
Event=Damaged
SourceClassName=Hotel_ExtinguisherBox
StaticMesh=hot_extinguisher_box
Chance=100
Specification=(SpecificationType=ExtinguisherExplode,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_TelephoneDamaged_Hot_BusinessPhone]
Event=Damaged
SourceClassName=Hotel_Telephone
StaticMesh=Hot_BusinessPhone
Chance=100
Specification=(SpecificationType=HotelBlackPlasticExplode,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_TVDamaged_Hot_FlatscreenTV]
Event=Damaged
SourceClassName=Hotel_TV
StaticMesh=Hot_FlatscreenTV
Chance=100
Specification=(SpecificationType=TVdamaged,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_SodaCanDamaged]
Event=Damaged
SourceClassName=Hotel_SodaCan
Chance=100
Specification=(SpecificationType=SodaCanExplodes,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
Context=Broken
[Hotel_TV_RemoteDamaged]
Event=Damaged
SourceClassName=Hotel_TV_Remote
Chance=100
Specification=(SpecificationType=HotelBlackPlasticExplode,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_CableBoxPreAppearanceChanged]
Event=PreAppearanceChanged
SourceClassName=Hotel_CableBox
Chance=100
Specification=(SpecificationType=HotelBlackPlasticExplode,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_SmokeDetectorDamaged_Hot_SmokeDetector]
Event=Damaged
SourceClassName=Hotel_SmokeDetector
StaticMesh=Hot_SmokeDetector
Chance=100
Specification=(SpecificationType=SmokeAlarmExplode,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_TVDamaged_hot_flatscreentv_on]
Event=Damaged
SourceClassName=Hotel_TV
StaticMesh=hot_flatscreentv_on
Chance=100
Specification=(SpecificationType=TVdamaged,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_DeskLamp_onPreAppearanceChanged]
Event=PreAppearanceChanged
SourceClassName=Hotel_DeskLamp_on
Chance=100
Specification=(SpecificationType=DesklampExplode,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_DesklampDamaged_hot_desklamp_off]
Event=Damaged
SourceClassName=Hotel_Desklamp
StaticMesh=hot_desklamp_off
Chance=100
Specification=(SpecificationType=DesklampExplode,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[TemporaryPlaceholderWeaponFired_OfficerWeapon]
Event=Fired
SourceClassName=TemporaryPlaceholderWeapon
Tag=OfficerWeapon
Chance=100
Specification=(SpecificationType=MuzzleFlashM4,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[TemporaryPlaceholderWeaponAmmoBulletHit_Hotel_WaterCooler]
Event=BulletHit
SourceClassName=TemporaryPlaceholderWeaponAmmo
TargetClassName=Hotel_WaterCooler
Chance=100
Specification=(SpecificationType=BulletHitWaterCooler,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[Hotel_Extinguisher_FreeDamaged_hot_extinguisher]
Event=Damaged
SourceClassName=Hotel_Extinguisher_Free
StaticMesh=hot_extinguisher
Chance=100
Specification=(SpecificationType=ExtinguisherExplode,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[AmmunitionBulletHit_spangs]
Event=BulletHit
SourceClassName=Ammunition
Suffix=spangs
Chance=100
Specification=(SpecificationType=BulletHit,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[AmmunitionBulletHit_spangsNoDamage]
Event=BulletHit
SourceClassName=Ammunition
Suffix=spangs
Chance=100
Specification=(SpecificationType=BulletHitNoDamage,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
Context=NoDamage
[M4A1_ThirdPersonFired]
Event=Fired
SourceClassName=M4A1_ThirdPerson
Chance=100
Specification=(SpecificationType=M4A1thirdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[M4A1_FirstPersonFired]
Event=Fired
SourceClassName=M4A1_FirstPerson
Chance=100
Specification=(SpecificationType=M4A1FirstPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[M4A1sd_ThirdPersonFired]
Event=Fired
SourceClassName=M4A1_ThirdPerson
Chance=100
Specification=(SpecificationType=Uzi3rdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[M4A1sd_FirstPersonFired]
Event=Fired
SourceClassName=M4A1sd_FirstPerson
Chance=100
Specification=(SpecificationType=SilencedUzi1stPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[M16A1_ThirdPersonFired]
Event=Fired
SourceClassName=M16A1_ThirdPerson
Chance=100
Specification=(SpecificationType=M4A1thirdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[M16A1_FirstPersonFired]
Event=Fired
SourceClassName=M16A1_FirstPerson
Chance=100
Specification=(SpecificationType=M16A1FirstPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[M16A1sd_ThirdPersonFired]
Event=Fired
SourceClassName=M16A1sd_ThirdPerson
Chance=100
Specification=(SpecificationType=SilencedMP53rdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[M16A1sd_FirstPersonFired]
Event=Fired
SourceClassName=M16A1sd_FirstPerson
Chance=100
Specification=(SpecificationType=SilencedMP51stPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[M16A1sd_FirstPersonBurstFired]
Event=BurstFired
SourceClassName=M16A1sd_FirstPerson
Chance=100
Specification=(SpecificationType=SilencedMP51stPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[M16A1_ThirdPersonBurstFired]
Event=BurstFired
SourceClassName=M16A1sd_ThirdPerson
Chance=100
Specification=(SpecificationType=SilencedMP53rdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[hk33_ThirdPersonFired]
Event=Fired
SourceClassName=hk33_ThirdPerson
Chance=100
Specification=(SpecificationType=M4A1thirdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[hk33_FirstPersonFired]
Event=Fired
SourceClassName=hk33_FirstPerson
Chance=100
Specification=(SpecificationType=M16A1FirstPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[hk33s_ThirdPersonFired]
Event=Fired
SourceClassName=hk33s_ThirdPerson
Chance=100
Specification=(SpecificationType=M4A1thirdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[hk33s_FirstPersonFired]
Event=Fired
SourceClassName=hk33s_FirstPerson
Chance=100
Specification=(SpecificationType=M16A1FirstPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[ColtM1911_ThirdPersonFired]
Event=Fired
SourceClassName=ColtM1911_ThirdPerson
Chance=100
Specification=(SpecificationType=ColtHG3rdPersonFired,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[ColtM1911_FirstPersonFired]
Event=Fired
SourceClassName=ColtM1911_FirstPerson
Chance=100
Specification=(SpecificationType=ColtHG1stPersonFired,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[BrowHP_ThirdPersonFired]
Event=Fired
SourceClassName=BrowHP_ThirdPerson
Chance=100
Specification=(SpecificationType=ColtHG3rdPersonFired,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[BrowHP_FirstPersonFired]
Event=Fired
SourceClassName=BrowHP_FirstPerson
Chance=100
Specification=(SpecificationType=ColtHG1stPersonFired,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[BrowHPsd_FirstPersonFired]
Event=Fired
SourceClassName=BrowHPsd_FirstPerson
Chance=100
Specification=(SpecificationType=p226sd_1st,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[BrowHPsd_ThirdPersonFired]
Event=Fired
SourceClassName=p226sd_ThirdPerson
Chance=100
Specification=(SpecificationType=Uzi3rdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[MP5_FirstPersonFired]
Event=Fired
SourceClassName=MP5_FirstPerson
Chance=100
Specification=(SpecificationType=MP51stPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[MP5_ThirdPersonFired]
Event=Fired
SourceClassName=MP5_ThirdPerson
Chance=100
Specification=(SpecificationType=MP53rdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[mp5k_FirstPersonFired]
Event=Fired
SourceClassName=mp5k_FirstPerson
Chance=100
Specification=(SpecificationType=MP51stPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[mp5k_ThirdPersonFired]
Event=Fired
SourceClassName=mp5k_ThirdPerson
Chance=100
Specification=(SpecificationType=MP53rdPersonMuzzleFlash,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[SwatOfficerSpoonFlip]
Event=SpoonFlip
SourceClassName=SwatOfficer
Chance=100
Specification=(SpecificationType=GrenadeSpoonFlip,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[FlashbangGrenadeProjectileDetonated_DynamicLight]
Event=Detonated
SourceClassName=FlashbangGrenadeProjectile
Suffix=DynamicLight
Chance=100
Specification=(SpecificationType=FBDynamicLight,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[DeployedC2ChargeDetonated_Explosion]
Event=Detonated
SourceClassName=DeployedC2Charge
Suffix=Explosion
Chance=100
Specification=(SpecificationType=C2Explosion,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[CSGasGrenadeProjectileDetonated]
Event=Detonated
SourceClassName=CSGasGrenadeProjectile
Chance=100
Specification=(SpecificationType=CSgasEmitting,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[RedSmokeGrenadeProjectileDetonated]
Event=Detonated
SourceClassName=RedSmokeGrenadeProjectile
Chance=100
Specification=(SpecificationType=RedSmokeGrenadeEmitting,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[StingGrenadeProjectileDetonated]
Event=Detonated
SourceClassName=StingGrenadeProjectile
Chance=100
Specification=(SpecificationType=StingGrenadeDetonated,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[PepperSpray_FirstPersonBurstFired]
Event=BurstFired
SourceClassName=PepperSpray_FirstPerson
Chance=100
Specification=(SpecificationType=Pepperspray1stPersonFired,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[PepperSpray_ThirdPersonBurstFired]
Event=BurstFired
SourceClassName=PepperSpray_ThirdPerson
Chance=100
Specification=(SpecificationType=Pepperspray3rdPersonFired,SpecificationClass=Class'IGVisualEffectsSubsystem.VisualEffectSpecification')
[SilencedMP5_FirstPersonFired]
Event=Fired
SourceClassName=SilencedMP5_FirstPerson
Chance=100