-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPVPSound_SoundLengths.lua
More file actions
1335 lines (1292 loc) · 222 KB
/
PVPSound_SoundLengths.lua
File metadata and controls
1335 lines (1292 loc) · 222 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
-- UnrealTournament3 SoundPacks
-- Eng
PVPSound_UnrealTournament3EngDurations = { }
PVPSound_UnrealTournament3EngKillDurations = { }
PVPSound_UnrealTournament3EngMultiKillDurations = { }
PVPSound_UnrealTournament3EngPaybackKillDurations = { }
PVPSound_UnrealTournament3EngTestDurations = { }
PVPSound_UnrealTournament3EngDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\CountDown\\FiveKillsRemain.mp3", duration = 1.8075 }
PVPSound_UnrealTournament3EngDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\CountDown\\FiveMinutesRemain.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3EngDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\CountDown\\OneKillRemains.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3EngDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\CountDown\\OneMinuteRemains.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3EngDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\CountDown\\TenKillsRemain.mp3", duration = 1.7115 }
PVPSound_UnrealTournament3EngDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\CountDown\\ThreeMinutesRemain.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3EngDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\CountDown\\TwoMinutesRemain.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3EngDurations[8] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Effects\\KillingMaxRank.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3EngDurations[9] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Effects\\MultiKillingMaxRank.mp3", duration = 3.9195 }
PVPSound_UnrealTournament3EngDurations[10] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\AllianceDominating.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3EngDurations[11] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\AllianceWins.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3EngDurations[12] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\EndOfRound.mp3", duration = 1.0875 }
PVPSound_UnrealTournament3EngDurations[13] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\FinalRound.mp3", duration = 1.2075 }
PVPSound_UnrealTournament3EngDurations[14] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\HordeDominating.mp3", duration = 1.7115 }
PVPSound_UnrealTournament3EngDurations[15] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\HordeWins.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3EngDurations[16] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\HumiliatingDefeat.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3EngDurations[17] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\PlayYouAreOnBlue.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3EngDurations[18] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\PlayYouAreOnRed.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EngDurations[19] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\PrepareForBattle.mp3", duration = 1.8075 }
PVPSound_UnrealTournament3EngDurations[20] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\UnrealTournament3.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3EngDurations[21] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\YouHaveLostTheMatch.mp3", duration = 1.5435 }
PVPSound_UnrealTournament3EngDurations[22] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\GameStatus\\YouHaveWonTheMatch.mp3", duration = 1.7115 }
PVPSound_UnrealTournament3EngKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Kill\\1First Blood.mp3", name = "First Blood", duration = 2.4795 }
PVPSound_UnrealTournament3EngKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Kill\\2Killing Spree.mp3", name = "Killing Spree", duration = 2.4795 }
PVPSound_UnrealTournament3EngKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Kill\\3Rampage.mp3", name = "Rampage", duration = 2.4795 }
PVPSound_UnrealTournament3EngKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Kill\\4Dominating.mp3", name = "Dominating", duration = 1.6395 }
PVPSound_UnrealTournament3EngKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Kill\\5Unstoppable.mp3", name = "Unstoppable", duration = 2.5995 }
PVPSound_UnrealTournament3EngKillDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Kill\\6Godlike.mp3", name = "Godlike", duration = 1.9035 }
PVPSound_UnrealTournament3EngKillDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Kill\\7MASSACRE.mp3", name = "MASSACRE", duration = 2.4555 }
PVPSound_UnrealTournament3EngMultiKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\MultiKill\\1Double Kill.mp3", name = "Double Kill", duration = 1.9755 }
PVPSound_UnrealTournament3EngMultiKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\MultiKill\\2Multi Kill.mp3", name = "Multi Kill", duration = 1.9995 }
PVPSound_UnrealTournament3EngMultiKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\MultiKill\\3Mega Kill.mp3", name = "Mega Kill", duration = 2.6955 }
PVPSound_UnrealTournament3EngMultiKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\MultiKill\\4Ultra Kill.mp3", name = "Ultra Kill", duration = 1.6155 }
PVPSound_UnrealTournament3EngMultiKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\MultiKill\\5MONSTER KILL.mp3", name = "MONSTER KILL", duration = 2.8635 }
PVPSound_UnrealTournament3EngPaybackKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Payback\\1Payback.mp3", name = "Payback", duration = 2.2155 }
PVPSound_UnrealTournament3EngPaybackKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Payback\\2Retribution.mp3", name = "Retribution", duration = 2.8155 }
PVPSound_UnrealTournament3EngTestDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Test\\1Pancake.mp3", name = "Pancake", duration = 2.1435 }
PVPSound_UnrealTournament3EngDurations[23] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_AlteracValley\\ALLIANCE_Node_Defense.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3EngDurations[24] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_AlteracValley\\ALLIANCE_Node_Offense.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3EngDurations[25] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_AlteracValley\\ALLIANCE_TowerNode_Defense.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EngDurations[26] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_AlteracValley\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3EngDurations[27] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_AlteracValley\\ALLIANCE_TowerNode_Offense.mp3", duration = 2.5275 }
PVPSound_UnrealTournament3EngDurations[28] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_AlteracValley\\HORDE_Node_Defense.mp3", duration = 1.6875 }
PVPSound_UnrealTournament3EngDurations[29] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_AlteracValley\\HORDE_Node_Offense.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3EngDurations[30] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_AlteracValley\\HORDE_TowerNode_Defense.mp3", duration = 2.2155 }
PVPSound_UnrealTournament3EngDurations[31] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_AlteracValley\\HORDE_TowerNode_Destroyed.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3EngDurations[32] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_AlteracValley\\HORDE_TowerNode_Offense.mp3", duration = 2.4795 }
PVPSound_UnrealTournament3EngDurations[33] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_ArathiBasin\\ALLIANCE_Base_Defense.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EngDurations[34] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_ArathiBasin\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EngDurations[35] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_ArathiBasin\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3EngDurations[36] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_ArathiBasin\\HORDE_Base_Offense.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3EngDurations[37] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_CookingImpossible\\ALLIANCE_Scores.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3EngDurations[38] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_CookingImpossible\\HORDE_Scores.mp3", duration = 1.5915 }
PVPSound_UnrealTournament3EngDurations[39] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\ALLIANCE_Base_Defense.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EngDurations[40] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EngDurations[41] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\ALLIANCE_Flag_Dropped.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3EngDurations[42] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\ALLIANCE_Flag_Returned.mp3", duration = 1.5195 }
PVPSound_UnrealTournament3EngDurations[43] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\ALLIANCE_Flag_Taken.mp3", duration = 1.4475 }
PVPSound_UnrealTournament3EngDurations[44] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\ALLIANCE_Scores.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3EngDurations[45] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3EngDurations[46] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\HORDE_Base_Offense.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3EngDurations[47] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\HORDE_Flag_Dropped.mp3", duration = 1.5195 }
PVPSound_UnrealTournament3EngDurations[48] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\HORDE_Flag_Returned.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3EngDurations[49] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\HORDE_Flag_Taken.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3EngDurations[50] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\HORDE_Scores.mp3", duration = 1.5915 }
PVPSound_UnrealTournament3EngDurations[51] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_DeepwindGorge\\LastSecondSave.mp3", duration = 1.3275 }
PVPSound_UnrealTournament3EngDurations[52] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_EyeoftheStorm\\ALLIANCE_Base_Defense.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EngDurations[53] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_EyeoftheStorm\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EngDurations[54] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_EyeoftheStorm\\ALLIANCE_Scores.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3EngDurations[55] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_EyeoftheStorm\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3EngDurations[56] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_EyeoftheStorm\\HORDE_Base_Offense.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3EngDurations[57] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_EyeoftheStorm\\HORDE_Scores.mp3", duration = 1.5915 }
PVPSound_UnrealTournament3EngDurations[58] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_IsleofConquest\\ALLIANCE_Base_Defense.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EngDurations[59] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_IsleofConquest\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EngDurations[60] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_IsleofConquest\\BarricadeDestroyedBlueCoreIsVulnerable.mp3", duration = 3.5355 }
PVPSound_UnrealTournament3EngDurations[61] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_IsleofConquest\\BarricadeDestroyedRedCoreIsVulnerable.mp3", duration = 3.5595 }
PVPSound_UnrealTournament3EngDurations[62] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_IsleofConquest\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3EngDurations[63] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_IsleofConquest\\HORDE_Base_Offense.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3EngDurations[64] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_SeethingShore\\ALLIANCE_Scores.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3EngDurations[65] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_SeethingShore\\HORDE_Scores.mp3", duration = 1.5915 }
PVPSound_UnrealTournament3EngDurations[66] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_SilvershardMines\\ALLIANCE_Scores.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3EngDurations[67] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_SilvershardMines\\HORDE_Scores.mp3", duration = 1.5915 }
PVPSound_UnrealTournament3EngDurations[68] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_SilvershardMines\\MineShaftOpening.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3EngDurations[69] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TarrenShore\\ALLIANCE_Inc_Lead.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3EngDurations[70] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TarrenShore\\ALLIANCE_Takes_Lead.mp3", duration = 1.8075 }
PVPSound_UnrealTournament3EngDurations[71] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TarrenShore\\HORDE_Inc_Lead.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EngDurations[72] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TarrenShore\\HORDE_Takes_Lead.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EngDurations[73] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TempleofKotmogu\\ALLIANCE_Orb_PickedUp.mp3", duration = 1.7115 }
PVPSound_UnrealTournament3EngDurations[74] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TempleofKotmogu\\HORDE_Orb_PickedUp.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3EngDurations[75] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TempleofKotmogu\\OrbReturned.mp3", duration = 1.2795 }
PVPSound_UnrealTournament3EngDurations[76] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Defense.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EngDurations[77] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EngDurations[78] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TheBattleforGilneas\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3EngDurations[79] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TheBattleforGilneas\\HORDE_Base_Offense.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3EngDurations[80] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\ALLIANCE_Base_Defense.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EngDurations[81] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EngDurations[82] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3EngDurations[83] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.5755 }
PVPSound_UnrealTournament3EngDurations[84] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3EngDurations[85] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\HORDE_Base_Offense.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3EngDurations[86] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\HORDE_TowerNode_Destroyed.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3EngDurations[87] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.6235 }
PVPSound_UnrealTournament3EngDurations[88] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 3.6555 }
PVPSound_UnrealTournament3EngDurations[89] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 3.4155 }
PVPSound_UnrealTournament3EngDurations[90] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 3.7515 }
PVPSound_UnrealTournament3EngDurations[91] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TolBarad\\PlayYouAreOnRedDefendYourCore.mp3", duration = 3.5115 }
PVPSound_UnrealTournament3EngDurations[92] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\ALLIANCE_Flag_Dropped.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3EngDurations[93] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\ALLIANCE_Flag_Returned.mp3", duration = 1.5195 }
PVPSound_UnrealTournament3EngDurations[94] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\ALLIANCE_Flag_Taken.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3EngDurations[95] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\ALLIANCE_Inc_Lead.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3EngDurations[96] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\ALLIANCE_Scores.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3EngDurations[97] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\ALLIANCE_Takes_Lead.mp3", duration = 1.8075 }
PVPSound_UnrealTournament3EngDurations[98] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\HORDE_Flag_Dropped.mp3", duration = 1.5195 }
PVPSound_UnrealTournament3EngDurations[99] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\HORDE_Flag_Returned.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3EngDurations[100] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\HORDE_Flag_Taken.mp3", duration = 1.4475 }
PVPSound_UnrealTournament3EngDurations[101] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\HORDE_Inc_Lead.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EngDurations[102] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\HORDE_Scores.mp3", duration = 1.5915 }
PVPSound_UnrealTournament3EngDurations[103] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\HORDE_Takes_Lead.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EngDurations[104] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\LastSecondSave.mp3", duration = 1.3275 }
PVPSound_UnrealTournament3EngDurations[105] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_TwinPeaks\\Overtime.mp3", duration = 1.0875 }
PVPSound_UnrealTournament3EngDurations[106] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\ALLIANCE_Flag_Dropped.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3EngDurations[107] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\ALLIANCE_Flag_Returned.mp3", duration = 1.5195 }
PVPSound_UnrealTournament3EngDurations[108] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\ALLIANCE_Flag_Taken.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3EngDurations[109] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\ALLIANCE_Inc_Lead.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3EngDurations[110] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\ALLIANCE_Scores.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3EngDurations[111] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\ALLIANCE_Takes_Lead.mp3", duration = 1.8075 }
PVPSound_UnrealTournament3EngDurations[112] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\HORDE_Flag_Dropped.mp3", duration = 1.5195 }
PVPSound_UnrealTournament3EngDurations[113] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\HORDE_Flag_Returned.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3EngDurations[114] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\HORDE_Flag_Taken.mp3", duration = 1.4475 }
PVPSound_UnrealTournament3EngDurations[115] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\HORDE_Inc_Lead.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EngDurations[116] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\HORDE_Scores.mp3", duration = 1.5915 }
PVPSound_UnrealTournament3EngDurations[117] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\HORDE_Takes_Lead.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EngDurations[118] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\LastSecondSave.mp3", duration = 1.3275 }
PVPSound_UnrealTournament3EngDurations[119] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_WarsongGulch\\Overtime.mp3", duration = 1.0875 }
PVPSound_UnrealTournament3EngDurations[120] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\ALLIANCE_Base_Defense.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EngDurations[121] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EngDurations[122] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3EngDurations[123] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.5755 }
PVPSound_UnrealTournament3EngDurations[124] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\BarricadeDestroyed.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3EngDurations[125] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3EngDurations[126] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\HORDE_Base_Offense.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3EngDurations[127] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\HORDE_TowerNode_Destroyed.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3EngDurations[128] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.6235 }
PVPSound_UnrealTournament3EngDurations[129] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 3.6555 }
PVPSound_UnrealTournament3EngDurations[130] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 3.4155 }
PVPSound_UnrealTournament3EngDurations[131] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 3.7515 }
PVPSound_UnrealTournament3EngDurations[132] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Eng\\Zone_Wintergrasp\\PlayYouAreOnRedDefendYourCore.mp3", duration = 3.5115 }
-- Deu
PVPSound_UnrealTournament3DeuDurations = { }
PVPSound_UnrealTournament3DeuKillDurations = { }
PVPSound_UnrealTournament3DeuMultiKillDurations = { }
PVPSound_UnrealTournament3DeuPaybackKillDurations = { }
PVPSound_UnrealTournament3DeuTestDurations = { }
PVPSound_UnrealTournament3DeuDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\CountDown\\FiveKillsRemain.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3DeuDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\CountDown\\FiveMinutesRemain.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3DeuDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\CountDown\\OneKillRemains.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3DeuDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\CountDown\\OneMinuteRemains.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\CountDown\\TenKillsRemain.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3DeuDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\CountDown\\ThreeMinutesRemain.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\CountDown\\TwoMinutesRemain.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[8] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Effects\\KillingMaxRank.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3DeuDurations[9] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Effects\\MultiKillingMaxRank.mp3", duration = 3.9195 }
PVPSound_UnrealTournament3DeuDurations[10] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\AllianceDominating.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3DeuDurations[11] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\AllianceWins.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[12] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\EndOfRound.mp3", duration = 1.3515 }
PVPSound_UnrealTournament3DeuDurations[13] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\FinalRound.mp3", duration = 1.2555 }
PVPSound_UnrealTournament3DeuDurations[14] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\HordeDominating.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[15] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\HordeWins.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[16] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\HumiliatingDefeat.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3DeuDurations[17] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\PlayYouAreOnBlue.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3DeuDurations[18] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\PlayYouAreOnRed.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3DeuDurations[19] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\PrepareForBattle.mp3", duration = 1.0635 }
PVPSound_UnrealTournament3DeuDurations[20] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\UnrealTournament3.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[21] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\YouHaveLostTheMatch.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[22] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\GameStatus\\YouHaveWonTheMatch.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3DeuKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Kill\\1Erstes Blut.mp3", name = "Erstes Blut", duration = 2.6475 }
PVPSound_UnrealTournament3DeuKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Kill\\2Blutrausch.mp3", name = "Blutrausch", duration = 2.6475 }
PVPSound_UnrealTournament3DeuKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Kill\\3Randale.mp3", name = "Randale", duration = 2.2395 }
PVPSound_UnrealTournament3DeuKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Kill\\4Dominierend.mp3", name = "Dominierend", duration = 2.4315 }
PVPSound_UnrealTournament3DeuKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Kill\\5Unaufhaltsam.mp3", name = "Unaufhaltsam", duration = 2.6475 }
PVPSound_UnrealTournament3DeuKillDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Kill\\6Gottlich.mp3", name = "Gottlich", duration = 1.7355 }
PVPSound_UnrealTournament3DeuKillDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Kill\\7MASSAKER.mp3", name = "MASSAKER", duration = 1.8555 }
PVPSound_UnrealTournament3DeuMultiKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\MultiKill\\1Double Kill.mp3", name = "Double Kill", duration = 1.8315 }
PVPSound_UnrealTournament3DeuMultiKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\MultiKill\\2Multi Kill.mp3", name = "Multi Kill", duration = 2.0235 }
PVPSound_UnrealTournament3DeuMultiKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\MultiKill\\3Mega Kill.mp3", name = "Mega Kill", duration = 2.2395 }
PVPSound_UnrealTournament3DeuMultiKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\MultiKill\\4Ultra Kill.mp3", name = "Ultra Kill", duration = 1.8315 }
PVPSound_UnrealTournament3DeuMultiKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\MultiKill\\5MONSTER KILL.mp3", name = "MONSTER KILL", duration = 2.9355 }
PVPSound_UnrealTournament3DeuPaybackKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Payback\\1Rache.mp3", name = "Rache", duration = 2.4315 }
PVPSound_UnrealTournament3DeuPaybackKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Payback\\2Vergeltung.mp3", name = "Vergeltung", duration = 2.6475 }
PVPSound_UnrealTournament3DeuTestDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Test\\1Pfannkuchen.mp3", name = "Pfannkuchen", duration = 2.7195 }
PVPSound_UnrealTournament3DeuDurations[23] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_AlteracValley\\ALLIANCE_Node_Defense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[24] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_AlteracValley\\ALLIANCE_Node_Offense.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[25] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_AlteracValley\\ALLIANCE_TowerNode_Defense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[26] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_AlteracValley\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3DeuDurations[27] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_AlteracValley\\ALLIANCE_TowerNode_Offense.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[28] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_AlteracValley\\HORDE_Node_Defense.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[29] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_AlteracValley\\HORDE_Node_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[30] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_AlteracValley\\HORDE_TowerNode_Defense.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[31] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_AlteracValley\\HORDE_TowerNode_Destroyed.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[32] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_AlteracValley\\HORDE_TowerNode_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[33] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_ArathiBasin\\ALLIANCE_Base_Defense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[34] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_ArathiBasin\\ALLIANCE_Base_Offense.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[35] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_ArathiBasin\\HORDE_Base_Defense.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[36] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_ArathiBasin\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[37] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_CookingImpossible\\ALLIANCE_Scores.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3DeuDurations[38] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_CookingImpossible\\HORDE_Scores.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[39] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\ALLIANCE_Base_Defense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[40] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\ALLIANCE_Base_Offense.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[41] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\ALLIANCE_Flag_Dropped.mp3", duration = 2.4555 }
PVPSound_UnrealTournament3DeuDurations[42] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\ALLIANCE_Flag_Returned.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[43] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\ALLIANCE_Flag_Taken.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3DeuDurations[44] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\ALLIANCE_Scores.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3DeuDurations[45] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\HORDE_Base_Defense.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[46] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[47] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\HORDE_Flag_Dropped.mp3", duration = 2.5515 }
PVPSound_UnrealTournament3DeuDurations[48] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\HORDE_Flag_Returned.mp3", duration = 2.6475 }
PVPSound_UnrealTournament3DeuDurations[49] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\HORDE_Flag_Taken.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3DeuDurations[50] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\HORDE_Scores.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[51] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_DeepwindGorge\\LastSecondSave.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[52] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_EyeoftheStorm\\ALLIANCE_Base_Defense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[53] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_EyeoftheStorm\\ALLIANCE_Base_Offense.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[54] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_EyeoftheStorm\\ALLIANCE_Scores.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3DeuDurations[55] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_EyeoftheStorm\\HORDE_Base_Defense.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[56] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_EyeoftheStorm\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[57] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_EyeoftheStorm\\HORDE_Scores.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[58] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_IsleofConquest\\ALLIANCE_Base_Defense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[59] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_IsleofConquest\\ALLIANCE_Base_Offense.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[60] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_IsleofConquest\\BarricadeDestroyedBlueCoreIsVulnerable.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[61] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_IsleofConquest\\BarricadeDestroyedRedCoreIsVulnerable.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[62] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_IsleofConquest\\HORDE_Base_Defense.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[63] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_IsleofConquest\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[64] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_SeethingShore\\ALLIANCE_Scores.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3DeuDurations[65] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_SeethingShore\\HORDE_Scores.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[66] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_SilvershardMines\\ALLIANCE_Scores.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3DeuDurations[67] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_SilvershardMines\\HORDE_Scores.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[68] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_SilvershardMines\\MineShaftOpening.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[69] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TarrenShore\\ALLIANCE_Inc_Lead.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[70] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TarrenShore\\ALLIANCE_Takes_Lead.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[71] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TarrenShore\\HORDE_Inc_Lead.mp3", duration = 2.7435 }
PVPSound_UnrealTournament3DeuDurations[72] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TarrenShore\\HORDE_Takes_Lead.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[73] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TempleofKotmogu\\ALLIANCE_Orb_PickedUp.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[74] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TempleofKotmogu\\HORDE_Orb_PickedUp.mp3", duration = 2.4555 }
PVPSound_UnrealTournament3DeuDurations[75] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TempleofKotmogu\\OrbReturned.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3DeuDurations[76] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Defense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[77] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Offense.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[78] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TheBattleforGilneas\\HORDE_Base_Defense.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[79] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TheBattleforGilneas\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[80] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\ALLIANCE_Base_Defense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[81] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\ALLIANCE_Base_Offense.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[82] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3DeuDurations[83] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3DeuDurations[84] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\HORDE_Base_Defense.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[85] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[86] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\HORDE_TowerNode_Destroyed.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[87] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.5515 }
PVPSound_UnrealTournament3DeuDurations[88] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[89] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[90] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[91] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TolBarad\\PlayYouAreOnRedDefendYourCore.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[92] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\ALLIANCE_Flag_Dropped.mp3", duration = 2.4555 }
PVPSound_UnrealTournament3DeuDurations[93] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\ALLIANCE_Flag_Returned.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[94] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\ALLIANCE_Flag_Taken.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3DeuDurations[95] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\ALLIANCE_Inc_Lead.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[96] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\ALLIANCE_Scores.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3DeuDurations[97] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\ALLIANCE_Takes_Lead.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[98] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\HORDE_Flag_Dropped.mp3", duration = 2.5515 }
PVPSound_UnrealTournament3DeuDurations[99] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\HORDE_Flag_Returned.mp3", duration = 2.6475 }
PVPSound_UnrealTournament3DeuDurations[100] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\HORDE_Flag_Taken.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3DeuDurations[101] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\HORDE_Inc_Lead.mp3", duration = 2.7435 }
PVPSound_UnrealTournament3DeuDurations[102] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\HORDE_Scores.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[103] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\HORDE_Takes_Lead.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[104] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\LastSecondSave.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[105] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_TwinPeaks\\Overtime.mp3", duration = 1.1355 }
PVPSound_UnrealTournament3DeuDurations[106] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\ALLIANCE_Flag_Dropped.mp3", duration = 2.4555 }
PVPSound_UnrealTournament3DeuDurations[107] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\ALLIANCE_Flag_Returned.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[108] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\ALLIANCE_Flag_Taken.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3DeuDurations[109] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\ALLIANCE_Inc_Lead.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[110] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\ALLIANCE_Scores.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3DeuDurations[111] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\ALLIANCE_Takes_Lead.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[112] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\HORDE_Flag_Dropped.mp3", duration = 2.5515 }
PVPSound_UnrealTournament3DeuDurations[113] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\HORDE_Flag_Returned.mp3", duration = 2.6475 }
PVPSound_UnrealTournament3DeuDurations[114] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\HORDE_Flag_Taken.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3DeuDurations[115] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\HORDE_Inc_Lead.mp3", duration = 2.7435 }
PVPSound_UnrealTournament3DeuDurations[116] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\HORDE_Scores.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[117] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\HORDE_Takes_Lead.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[118] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\LastSecondSave.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[119] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_WarsongGulch\\Overtime.mp3", duration = 1.1355 }
PVPSound_UnrealTournament3DeuDurations[120] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\ALLIANCE_Base_Defense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3DeuDurations[121] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\ALLIANCE_Base_Offense.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3DeuDurations[122] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3DeuDurations[123] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3DeuDurations[124] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\BarricadeDestroyed.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3DeuDurations[125] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\HORDE_Base_Defense.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3DeuDurations[126] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[127] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\HORDE_TowerNode_Destroyed.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3DeuDurations[128] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.5515 }
PVPSound_UnrealTournament3DeuDurations[129] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[130] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3DeuDurations[131] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3DeuDurations[132] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Deu\\Zone_Wintergrasp\\PlayYouAreOnRedDefendYourCore.mp3", duration = 2.0475 }
-- Esn
PVPSound_UnrealTournament3EsnDurations = { }
PVPSound_UnrealTournament3EsnKillDurations = { }
PVPSound_UnrealTournament3EsnMultiKillDurations = { }
PVPSound_UnrealTournament3EsnPaybackKillDurations = { }
PVPSound_UnrealTournament3EsnTestDurations = { }
PVPSound_UnrealTournament3EsnDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\CountDown\\FiveKillsRemain.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3EsnDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\CountDown\\FiveMinutesRemain.mp3", duration = 1.6875 }
PVPSound_UnrealTournament3EsnDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\CountDown\\OneKillRemains.mp3", duration = 1.5915 }
PVPSound_UnrealTournament3EsnDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\CountDown\\OneMinuteRemains.mp3", duration = 1.3755 }
PVPSound_UnrealTournament3EsnDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\CountDown\\TenKillsRemain.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3EsnDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\CountDown\\ThreeMinutesRemain.mp3", duration = 1.6875 }
PVPSound_UnrealTournament3EsnDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\CountDown\\TwoMinutesRemain.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3EsnDurations[8] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Effects\\KillingMaxRank.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3EsnDurations[9] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Effects\\MultiKillingMaxRank.mp3", duration = 3.9195 }
PVPSound_UnrealTournament3EsnDurations[10] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\AllianceDominating.mp3", duration = 1.5915 }
PVPSound_UnrealTournament3EsnDurations[11] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\AllianceWins.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3EsnDurations[12] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\EndOfRound.mp3", duration = 1.3035 }
PVPSound_UnrealTournament3EsnDurations[13] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\FinalRound.mp3", duration = 1.2315 }
PVPSound_UnrealTournament3EsnDurations[14] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\HordeDominating.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3EsnDurations[15] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\HordeWins.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3EsnDurations[16] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\HumiliatingDefeat.mp3", duration = 1.5435 }
PVPSound_UnrealTournament3EsnDurations[17] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\PlayYouAreOnBlue.mp3", duration = 1.1355 }
PVPSound_UnrealTournament3EsnDurations[18] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\PlayYouAreOnRed.mp3", duration = 1.3515 }
PVPSound_UnrealTournament3EsnDurations[19] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\PrepareForBattle.mp3", duration = 0.9435 }
PVPSound_UnrealTournament3EsnDurations[20] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\UnrealTournament3.mp3", duration = 1.9035 }
PVPSound_UnrealTournament3EsnDurations[21] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\YouHaveLostTheMatch.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3EsnDurations[22] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\GameStatus\\YouHaveWonTheMatch.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3EsnKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Kill\\1Primera Sangre.mp3", name = "Primera Sangre", duration = 2.3115 }
PVPSound_UnrealTournament3EsnKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Kill\\2Matanza Indiscriminada.mp3", name = "Matanza Indiscriminada", duration = 2.6475 }
PVPSound_UnrealTournament3EsnKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Kill\\3Furia Desenfrenada.mp3", name = "Furia Desenfrenada", duration = 2.6955 }
PVPSound_UnrealTournament3EsnKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Kill\\4Dominante.mp3", name = "Dominante", duration = 1.7355 }
PVPSound_UnrealTournament3EsnKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Kill\\5Imparable.mp3", name = "Imparable", duration = 2.3835 }
PVPSound_UnrealTournament3EsnKillDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Kill\\6Divino.mp3", name = "Divino", duration = 1.5435 }
PVPSound_UnrealTournament3EsnKillDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Kill\\7MASACRE.mp3", name = "MASACRE", duration = 1.8795 }
PVPSound_UnrealTournament3EsnMultiKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\MultiKill\\1Doble Muerte.mp3", name = "Doble Muerte", duration = 1.9755 }
PVPSound_UnrealTournament3EsnMultiKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\MultiKill\\2Muerte Multiple.mp3", name = "Muerte Multiple", duration = 2.1435 }
PVPSound_UnrealTournament3EsnMultiKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\MultiKill\\3Megamuerte.mp3", name = "Megamuerte", duration = 2.2875 }
PVPSound_UnrealTournament3EsnMultiKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\MultiKill\\4Ultramuerte.mp3", name = "Ultramuerte", duration = 2.0955 }
PVPSound_UnrealTournament3EsnMultiKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\MultiKill\\5MUERTE MONSTRUOSA.mp3", name = "MUERTE MONSTRUOSA", duration = 2.7915 }
PVPSound_UnrealTournament3EsnPaybackKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Payback\\1Tiempo de Pagar.mp3", name = "Tiempo de Pagar", duration = 2.1435 }
PVPSound_UnrealTournament3EsnPaybackKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Payback\\2Retribcion.mp3", name = "Retribcion", duration = 2.2875 }
PVPSound_UnrealTournament3EsnTestDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Test\\1Tortita.mp3", name = "Tortita", duration = 1.4475 }
PVPSound_UnrealTournament3EsnDurations[23] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_AlteracValley\\ALLIANCE_Node_Defense.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EsnDurations[24] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_AlteracValley\\ALLIANCE_Node_Offense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3EsnDurations[25] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_AlteracValley\\ALLIANCE_TowerNode_Defense.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EsnDurations[26] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_AlteracValley\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.9035 }
PVPSound_UnrealTournament3EsnDurations[27] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_AlteracValley\\ALLIANCE_TowerNode_Offense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3EsnDurations[28] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_AlteracValley\\HORDE_Node_Defense.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EsnDurations[29] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_AlteracValley\\HORDE_Node_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[30] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_AlteracValley\\HORDE_TowerNode_Defense.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EsnDurations[31] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_AlteracValley\\HORDE_TowerNode_Destroyed.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3EsnDurations[32] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_AlteracValley\\HORDE_TowerNode_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[33] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_ArathiBasin\\ALLIANCE_Base_Defense.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EsnDurations[34] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_ArathiBasin\\ALLIANCE_Base_Offense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3EsnDurations[35] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_ArathiBasin\\HORDE_Base_Defense.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EsnDurations[36] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_ArathiBasin\\HORDE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[37] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_CookingImpossible\\ALLIANCE_Scores.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3EsnDurations[38] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_CookingImpossible\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3EsnDurations[39] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\ALLIANCE_Base_Defense.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EsnDurations[40] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\ALLIANCE_Base_Offense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3EsnDurations[41] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\ALLIANCE_Flag_Dropped.mp3", duration = 1.6875 }
PVPSound_UnrealTournament3EsnDurations[42] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\ALLIANCE_Flag_Returned.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3EsnDurations[43] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\ALLIANCE_Flag_Taken.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3EsnDurations[44] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\ALLIANCE_Scores.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3EsnDurations[45] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\HORDE_Base_Defense.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EsnDurations[46] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\HORDE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[47] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\HORDE_Flag_Dropped.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3EsnDurations[48] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\HORDE_Flag_Returned.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EsnDurations[49] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\HORDE_Flag_Taken.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3EsnDurations[50] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3EsnDurations[51] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_DeepwindGorge\\LastSecondSave.mp3", duration = 1.9755 }
PVPSound_UnrealTournament3EsnDurations[52] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_EyeoftheStorm\\ALLIANCE_Base_Defense.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EsnDurations[53] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_EyeoftheStorm\\ALLIANCE_Base_Offense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3EsnDurations[54] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_EyeoftheStorm\\ALLIANCE_Scores.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3EsnDurations[55] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_EyeoftheStorm\\HORDE_Base_Defense.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EsnDurations[56] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_EyeoftheStorm\\HORDE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[57] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_EyeoftheStorm\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3EsnDurations[58] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_IsleofConquest\\ALLIANCE_Base_Defense.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EsnDurations[59] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_IsleofConquest\\ALLIANCE_Base_Offense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3EsnDurations[60] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_IsleofConquest\\BarricadeDestroyedBlueCoreIsVulnerable.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3EsnDurations[61] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_IsleofConquest\\BarricadeDestroyedRedCoreIsVulnerable.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3EsnDurations[62] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_IsleofConquest\\HORDE_Base_Defense.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EsnDurations[63] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_IsleofConquest\\HORDE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[64] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_SeethingShore\\ALLIANCE_Scores.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3EsnDurations[65] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_SeethingShore\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3EsnDurations[66] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_SilvershardMines\\ALLIANCE_Scores.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3EsnDurations[67] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_SilvershardMines\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3EsnDurations[68] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_SilvershardMines\\MineShaftOpening.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3EsnDurations[69] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TarrenShore\\ALLIANCE_Inc_Lead.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3EsnDurations[70] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TarrenShore\\ALLIANCE_Takes_Lead.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3EsnDurations[71] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TarrenShore\\HORDE_Inc_Lead.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[72] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TarrenShore\\HORDE_Takes_Lead.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3EsnDurations[73] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TempleofKotmogu\\ALLIANCE_Orb_PickedUp.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3EsnDurations[74] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TempleofKotmogu\\HORDE_Orb_PickedUp.mp3", duration = 1.8075 }
PVPSound_UnrealTournament3EsnDurations[75] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TempleofKotmogu\\OrbReturned.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3EsnDurations[76] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Defense.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EsnDurations[77] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Offense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3EsnDurations[78] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TheBattleforGilneas\\HORDE_Base_Defense.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EsnDurations[79] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TheBattleforGilneas\\HORDE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[80] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\ALLIANCE_Base_Defense.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EsnDurations[81] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\ALLIANCE_Base_Offense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3EsnDurations[82] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.9035 }
PVPSound_UnrealTournament3EsnDurations[83] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.4555 }
PVPSound_UnrealTournament3EsnDurations[84] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\HORDE_Base_Defense.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EsnDurations[85] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\HORDE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[86] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\HORDE_TowerNode_Destroyed.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3EsnDurations[87] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3EsnDurations[88] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 1.7115 }
PVPSound_UnrealTournament3EsnDurations[89] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 1.4955 }
PVPSound_UnrealTournament3EsnDurations[90] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 1.7115 }
PVPSound_UnrealTournament3EsnDurations[91] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TolBarad\\PlayYouAreOnRedDefendYourCore.mp3", duration = 1.4955 }
PVPSound_UnrealTournament3EsnDurations[92] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\ALLIANCE_Flag_Dropped.mp3", duration = 1.6875 }
PVPSound_UnrealTournament3EsnDurations[93] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\ALLIANCE_Flag_Returned.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3EsnDurations[94] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\ALLIANCE_Flag_Taken.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3EsnDurations[95] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\ALLIANCE_Inc_Lead.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3EsnDurations[96] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\ALLIANCE_Scores.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3EsnDurations[97] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\ALLIANCE_Takes_Lead.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3EsnDurations[98] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\HORDE_Flag_Dropped.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3EsnDurations[99] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\HORDE_Flag_Returned.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EsnDurations[100] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\HORDE_Flag_Taken.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3EsnDurations[101] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\HORDE_Inc_Lead.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[102] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3EsnDurations[103] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\HORDE_Takes_Lead.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3EsnDurations[104] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\LastSecondSave.mp3", duration = 1.9755 }
PVPSound_UnrealTournament3EsnDurations[105] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_TwinPeaks\\Overtime.mp3", duration = 1.2555 }
PVPSound_UnrealTournament3EsnDurations[106] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\ALLIANCE_Flag_Dropped.mp3", duration = 1.6875 }
PVPSound_UnrealTournament3EsnDurations[107] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\ALLIANCE_Flag_Returned.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3EsnDurations[108] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\ALLIANCE_Flag_Taken.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3EsnDurations[109] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\ALLIANCE_Inc_Lead.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3EsnDurations[110] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\ALLIANCE_Scores.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3EsnDurations[111] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\ALLIANCE_Takes_Lead.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3EsnDurations[112] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\HORDE_Flag_Dropped.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3EsnDurations[113] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\HORDE_Flag_Returned.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3EsnDurations[114] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\HORDE_Flag_Taken.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3EsnDurations[115] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\HORDE_Inc_Lead.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[116] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3EsnDurations[117] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\HORDE_Takes_Lead.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3EsnDurations[118] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\LastSecondSave.mp3", duration = 1.9755 }
PVPSound_UnrealTournament3EsnDurations[119] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_WarsongGulch\\Overtime.mp3", duration = 1.2555 }
PVPSound_UnrealTournament3EsnDurations[120] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\ALLIANCE_Base_Defense.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3EsnDurations[121] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\ALLIANCE_Base_Offense.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3EsnDurations[122] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.9035 }
PVPSound_UnrealTournament3EsnDurations[123] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.4555 }
PVPSound_UnrealTournament3EsnDurations[124] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\BarricadeDestroyed.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3EsnDurations[125] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\HORDE_Base_Defense.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3EsnDurations[126] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\HORDE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3EsnDurations[127] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\HORDE_TowerNode_Destroyed.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3EsnDurations[128] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3EsnDurations[129] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 1.7115 }
PVPSound_UnrealTournament3EsnDurations[130] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 1.4955 }
PVPSound_UnrealTournament3EsnDurations[131] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 1.7115 }
PVPSound_UnrealTournament3EsnDurations[132] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Esn\\Zone_Wintergrasp\\PlayYouAreOnRedDefendYourCore.mp3", duration = 1.4955 }
-- Fra
PVPSound_UnrealTournament3FraDurations = { }
PVPSound_UnrealTournament3FraKillDurations = { }
PVPSound_UnrealTournament3FraMultiKillDurations = { }
PVPSound_UnrealTournament3FraPaybackKillDurations = { }
PVPSound_UnrealTournament3FraTestDurations = { }
PVPSound_UnrealTournament3FraDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\CountDown\\FiveKillsRemain.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3FraDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\CountDown\\FiveMinutesRemain.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\CountDown\\OneKillRemains.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3FraDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\CountDown\\OneMinuteRemains.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3FraDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\CountDown\\TenKillsRemain.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\CountDown\\ThreeMinutesRemain.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3FraDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\CountDown\\TwoMinutesRemain.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3FraDurations[8] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Effects\\KillingMaxRank.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3FraDurations[9] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Effects\\MultiKillingMaxRank.mp3", duration = 3.9195 }
PVPSound_UnrealTournament3FraDurations[10] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\AllianceDominating.mp3", duration = 1.7115 }
PVPSound_UnrealTournament3FraDurations[11] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\AllianceWins.mp3", duration = 1.9035 }
PVPSound_UnrealTournament3FraDurations[12] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\EndOfRound.mp3", duration = 1.2075 }
PVPSound_UnrealTournament3FraDurations[13] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\FinalRound.mp3", duration = 1.2075 }
PVPSound_UnrealTournament3FraDurations[14] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\HordeDominating.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3FraDurations[15] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\HordeWins.mp3", duration = 1.9755 }
PVPSound_UnrealTournament3FraDurations[16] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\HumiliatingDefeat.mp3", duration = 1.5195 }
PVPSound_UnrealTournament3FraDurations[17] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\PlayYouAreOnBlue.mp3", duration = 1.2075 }
PVPSound_UnrealTournament3FraDurations[18] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\PlayYouAreOnRed.mp3", duration = 1.4475 }
PVPSound_UnrealTournament3FraDurations[19] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\PrepareForBattle.mp3", duration = 0.7515 }
PVPSound_UnrealTournament3FraDurations[20] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\UnrealTournament3.mp3", duration = 1.9035 }
PVPSound_UnrealTournament3FraDurations[21] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\YouHaveLostTheMatch.mp3", duration = 1.5435 }
PVPSound_UnrealTournament3FraDurations[22] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\GameStatus\\YouHaveWonTheMatch.mp3", duration = 1.5435 }
PVPSound_UnrealTournament3FraKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Kill\\1Premier Sang.mp3", name = "Premier Sang", duration = 2.4795 }
PVPSound_UnrealTournament3FraKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Kill\\2Folie Meurtricre.mp3", name = "Folie Meurtricre", duration = 2.6475 }
PVPSound_UnrealTournament3FraKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Kill\\3Dechaine.mp3", name = "Dechaine", duration = 2.5755 }
PVPSound_UnrealTournament3FraKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Kill\\4Domination.mp3", name = "Domination", duration = 1.7355 }
PVPSound_UnrealTournament3FraKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Kill\\5Impossible r arreter.mp3", name = "Impossible r arreter", duration = 2.5035 }
PVPSound_UnrealTournament3FraKillDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Kill\\6Divin.mp3", name = "Divin", duration = 1.8315 }
PVPSound_UnrealTournament3FraKillDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Kill\\7MASSACRE.mp3", name = "MASSACRE", duration = 2.3595 }
PVPSound_UnrealTournament3FraMultiKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\MultiKill\\1Double Tuerie.mp3", name = "Double Tuerie", duration = 1.7115 }
PVPSound_UnrealTournament3FraMultiKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\MultiKill\\2Multituerie.mp3", name = "Multituerie", duration = 1.9995 }
PVPSound_UnrealTournament3FraMultiKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\MultiKill\\3Megatuerie.mp3", name = "Megatuerie", duration = 2.3835 }
PVPSound_UnrealTournament3FraMultiKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\MultiKill\\4Ultratuerie.mp3", name = "Ultratuerie", duration = 1.7835 }
PVPSound_UnrealTournament3FraMultiKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\MultiKill\\5TUERIE MONSTRUEUSE.mp3", name = "TUERIE MONSTRUEUSE", duration = 2.9595 }
PVPSound_UnrealTournament3FraPaybackKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Payback\\1Vanche.mp3", name = "Vanche", duration = 2.3355 }
PVPSound_UnrealTournament3FraPaybackKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Payback\\2Vanche.mp3", name = "Vanche", duration = 2.7915 }
PVPSound_UnrealTournament3FraTestDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Test\\1Crepe.mp3", name = "Crepe", duration = 1.8795 }
PVPSound_UnrealTournament3FraDurations[23] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_AlteracValley\\ALLIANCE_Node_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3FraDurations[24] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_AlteracValley\\ALLIANCE_Node_Offense.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3FraDurations[25] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_AlteracValley\\ALLIANCE_TowerNode_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3FraDurations[26] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_AlteracValley\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[27] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_AlteracValley\\ALLIANCE_TowerNode_Offense.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3FraDurations[28] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_AlteracValley\\HORDE_Node_Defense.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3FraDurations[29] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_AlteracValley\\HORDE_Node_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3FraDurations[30] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_AlteracValley\\HORDE_TowerNode_Defense.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3FraDurations[31] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_AlteracValley\\HORDE_TowerNode_Destroyed.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[32] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_AlteracValley\\HORDE_TowerNode_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3FraDurations[33] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_ArathiBasin\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3FraDurations[34] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_ArathiBasin\\ALLIANCE_Base_Offense.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3FraDurations[35] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_ArathiBasin\\HORDE_Base_Defense.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3FraDurations[36] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_ArathiBasin\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3FraDurations[37] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_CookingImpossible\\ALLIANCE_Scores.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3FraDurations[38] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_CookingImpossible\\HORDE_Scores.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[39] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3FraDurations[40] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\ALLIANCE_Base_Offense.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3FraDurations[41] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\ALLIANCE_Flag_Dropped.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3FraDurations[42] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\ALLIANCE_Flag_Returned.mp3", duration = 1.5435 }
PVPSound_UnrealTournament3FraDurations[43] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\ALLIANCE_Flag_Taken.mp3", duration = 1.4235 }
PVPSound_UnrealTournament3FraDurations[44] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\ALLIANCE_Scores.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3FraDurations[45] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\HORDE_Base_Defense.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3FraDurations[46] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3FraDurations[47] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\HORDE_Flag_Dropped.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3FraDurations[48] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\HORDE_Flag_Returned.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3FraDurations[49] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\HORDE_Flag_Taken.mp3", duration = 1.4715 }
PVPSound_UnrealTournament3FraDurations[50] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\HORDE_Scores.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[51] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_DeepwindGorge\\LastSecondSave.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3FraDurations[52] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_EyeoftheStorm\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3FraDurations[53] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_EyeoftheStorm\\ALLIANCE_Base_Offense.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3FraDurations[54] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_EyeoftheStorm\\ALLIANCE_Scores.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3FraDurations[55] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_EyeoftheStorm\\HORDE_Base_Defense.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3FraDurations[56] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_EyeoftheStorm\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3FraDurations[57] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_EyeoftheStorm\\HORDE_Scores.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[58] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_IsleofConquest\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3FraDurations[59] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_IsleofConquest\\ALLIANCE_Base_Offense.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3FraDurations[60] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_IsleofConquest\\BarricadeDestroyedBlueCoreIsVulnerable.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3FraDurations[61] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_IsleofConquest\\BarricadeDestroyedRedCoreIsVulnerable.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3FraDurations[62] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_IsleofConquest\\HORDE_Base_Defense.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3FraDurations[63] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_IsleofConquest\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3FraDurations[64] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_SeethingShore\\ALLIANCE_Scores.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3FraDurations[65] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_SeethingShore\\HORDE_Scores.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[66] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_SilvershardMines\\ALLIANCE_Scores.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3FraDurations[67] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_SilvershardMines\\HORDE_Scores.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[68] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_SilvershardMines\\MineShaftOpening.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[69] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TarrenShore\\ALLIANCE_Inc_Lead.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3FraDurations[70] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TarrenShore\\ALLIANCE_Takes_Lead.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3FraDurations[71] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TarrenShore\\HORDE_Inc_Lead.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3FraDurations[72] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TarrenShore\\HORDE_Takes_Lead.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3FraDurations[73] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TempleofKotmogu\\ALLIANCE_Orb_PickedUp.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[74] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TempleofKotmogu\\HORDE_Orb_PickedUp.mp3", duration = 1.6875 }
PVPSound_UnrealTournament3FraDurations[75] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TempleofKotmogu\\OrbReturned.mp3", duration = 1.3995 }
PVPSound_UnrealTournament3FraDurations[76] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3FraDurations[77] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Offense.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3FraDurations[78] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TheBattleforGilneas\\HORDE_Base_Defense.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3FraDurations[79] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TheBattleforGilneas\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3FraDurations[80] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3FraDurations[81] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\ALLIANCE_Base_Offense.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3FraDurations[82] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[83] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3FraDurations[84] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\HORDE_Base_Defense.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3FraDurations[85] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3FraDurations[86] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\HORDE_TowerNode_Destroyed.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[87] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3FraDurations[88] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3FraDurations[89] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 1.4955 }
PVPSound_UnrealTournament3FraDurations[90] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3FraDurations[91] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TolBarad\\PlayYouAreOnRedDefendYourCore.mp3", duration = 1.4955 }
PVPSound_UnrealTournament3FraDurations[92] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\ALLIANCE_Flag_Dropped.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3FraDurations[93] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\ALLIANCE_Flag_Returned.mp3", duration = 1.5435 }
PVPSound_UnrealTournament3FraDurations[94] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\ALLIANCE_Flag_Taken.mp3", duration = 1.4715 }
PVPSound_UnrealTournament3FraDurations[95] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\ALLIANCE_Inc_Lead.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3FraDurations[96] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\ALLIANCE_Scores.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3FraDurations[97] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\ALLIANCE_Takes_Lead.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3FraDurations[98] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\HORDE_Flag_Dropped.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3FraDurations[99] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\HORDE_Flag_Returned.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3FraDurations[100] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\HORDE_Flag_Taken.mp3", duration = 1.4235 }
PVPSound_UnrealTournament3FraDurations[101] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\HORDE_Inc_Lead.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3FraDurations[102] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\HORDE_Scores.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[103] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\HORDE_Takes_Lead.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3FraDurations[104] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\LastSecondSave.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3FraDurations[105] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_TwinPeaks\\Overtime.mp3", duration = 1.1835 }
PVPSound_UnrealTournament3FraDurations[106] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\ALLIANCE_Flag_Dropped.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3FraDurations[107] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\ALLIANCE_Flag_Returned.mp3", duration = 1.5435 }
PVPSound_UnrealTournament3FraDurations[108] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\ALLIANCE_Flag_Taken.mp3", duration = 1.4715 }
PVPSound_UnrealTournament3FraDurations[109] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\ALLIANCE_Inc_Lead.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3FraDurations[110] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\ALLIANCE_Scores.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3FraDurations[111] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\ALLIANCE_Takes_Lead.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3FraDurations[112] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\HORDE_Flag_Dropped.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3FraDurations[113] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\HORDE_Flag_Returned.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3FraDurations[114] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\HORDE_Flag_Taken.mp3", duration = 1.4235 }
PVPSound_UnrealTournament3FraDurations[115] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\HORDE_Inc_Lead.mp3", duration = 2.1195 }
PVPSound_UnrealTournament3FraDurations[116] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\HORDE_Scores.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[117] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\HORDE_Takes_Lead.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3FraDurations[118] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\LastSecondSave.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3FraDurations[119] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_WarsongGulch\\Overtime.mp3", duration = 1.1835 }
PVPSound_UnrealTournament3FraDurations[120] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3FraDurations[121] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\ALLIANCE_Base_Offense.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3FraDurations[122] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[123] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3FraDurations[124] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\BarricadeDestroyed.mp3", duration = 1.7595 }
PVPSound_UnrealTournament3FraDurations[125] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\HORDE_Base_Defense.mp3", duration = 1.9275 }
PVPSound_UnrealTournament3FraDurations[126] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\HORDE_Base_Offense.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3FraDurations[127] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\HORDE_TowerNode_Destroyed.mp3", duration = 1.6155 }
PVPSound_UnrealTournament3FraDurations[128] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3FraDurations[129] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3FraDurations[130] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 1.4955 }
PVPSound_UnrealTournament3FraDurations[131] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3FraDurations[132] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Fra\\Zone_Wintergrasp\\PlayYouAreOnRedDefendYourCore.mp3", duration = 1.4955 }
-- Ita
PVPSound_UnrealTournament3ItaDurations = { }
PVPSound_UnrealTournament3ItaKillDurations = { }
PVPSound_UnrealTournament3ItaMultiKillDurations = { }
PVPSound_UnrealTournament3ItaPaybackKillDurations = { }
PVPSound_UnrealTournament3ItaTestDurations = { }
PVPSound_UnrealTournament3ItaDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\CountDown\\FiveKillsRemain.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3ItaDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\CountDown\\FiveMinutesRemain.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3ItaDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\CountDown\\OneKillRemains.mp3", duration = 1.7355 }
PVPSound_UnrealTournament3ItaDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\CountDown\\OneMinuteRemains.mp3", duration = 1.5195 }
PVPSound_UnrealTournament3ItaDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\CountDown\\TenKillsRemain.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3ItaDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\CountDown\\ThreeMinutesRemain.mp3", duration = 1.6875 }
PVPSound_UnrealTournament3ItaDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\CountDown\\TwoMinutesRemain.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3ItaDurations[8] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Effects\\KillingMaxRank.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3ItaDurations[9] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Effects\\MultiKillingMaxRank.mp3", duration = 3.9195 }
PVPSound_UnrealTournament3ItaDurations[10] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\AllianceDominating.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3ItaDurations[11] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\AllianceWins.mp3", duration = 2.5035 }
PVPSound_UnrealTournament3ItaDurations[12] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\EndOfRound.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3ItaDurations[13] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\FinalRound.mp3", duration = 1.3755 }
PVPSound_UnrealTournament3ItaDurations[14] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\HordeDominating.mp3", duration = 2.5035 }
PVPSound_UnrealTournament3ItaDurations[15] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\HordeWins.mp3", duration = 2.7195 }
PVPSound_UnrealTournament3ItaDurations[16] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\HumiliatingDefeat.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3ItaDurations[17] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\PlayYouAreOnBlue.mp3", duration = 1.2555 }
PVPSound_UnrealTournament3ItaDurations[18] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\PlayYouAreOnRed.mp3", duration = 1.4955 }
PVPSound_UnrealTournament3ItaDurations[19] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\PrepareForBattle.mp3", duration = 0.7995 }
PVPSound_UnrealTournament3ItaDurations[20] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\UnrealTournament3.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3ItaDurations[21] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\YouHaveLostTheMatch.mp3", duration = 1.7115 }
PVPSound_UnrealTournament3ItaDurations[22] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\GameStatus\\YouHaveWonTheMatch.mp3", duration = 1.5915 }
PVPSound_UnrealTournament3ItaKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Kill\\1Prima Uccisione.mp3", name = "Prima Uccisione", duration = 2.1675 }
PVPSound_UnrealTournament3ItaKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Kill\\2Raptus Omicida.mp3", name = "Raptus Omicida", duration = 1.9755 }
PVPSound_UnrealTournament3ItaKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Kill\\3Furia.mp3", name = "Furia", duration = 1.7835 }
PVPSound_UnrealTournament3ItaKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Kill\\4Dominante.mp3", name = "Dominante", duration = 1.4955 }
PVPSound_UnrealTournament3ItaKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Kill\\5Implacabile.mp3", name = "Implacabile", duration = 2.4795 }
PVPSound_UnrealTournament3ItaKillDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Kill\\6Divino.mp3", name = "Divino", duration = 1.2555 }
PVPSound_UnrealTournament3ItaKillDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Kill\\7MASSACRO.mp3", name = "MASSACRO", duration = 2.0715 }
PVPSound_UnrealTournament3ItaMultiKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\MultiKill\\1Doppia Uccisione.mp3", name = "Doppia Uccisione", duration = 1.9035 }
PVPSound_UnrealTournament3ItaMultiKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\MultiKill\\2Multi Kille.mp3", name = "Multi Kille", duration = 2.0475 }
PVPSound_UnrealTournament3ItaMultiKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\MultiKill\\3Mega Kille.mp3", name = "Mega Kille", duration = 1.7115 }
PVPSound_UnrealTournament3ItaMultiKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\MultiKill\\4Ultra Kille.mp3", name = "Ultra Kille", duration = 1.8075 }
PVPSound_UnrealTournament3ItaMultiKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\MultiKill\\5MOSTRUOSA.mp3", name = "MOSTRUOSA", duration = 2.2635 }
PVPSound_UnrealTournament3ItaPaybackKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Payback\\1Urici Ore.mp3", name = "Urici Ore", duration = 1.6635 }
PVPSound_UnrealTournament3ItaPaybackKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Payback\\2Retribuzione.mp3", name = "Retribuzione", duration = 2.6475 }
PVPSound_UnrealTournament3ItaTestDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Test\\1Frittella.mp3", name = "Frittella", duration = 2.0955 }
PVPSound_UnrealTournament3ItaDurations[23] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_AlteracValley\\ALLIANCE_Node_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3ItaDurations[24] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_AlteracValley\\ALLIANCE_Node_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3ItaDurations[25] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_AlteracValley\\ALLIANCE_TowerNode_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3ItaDurations[26] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_AlteracValley\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3ItaDurations[27] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_AlteracValley\\ALLIANCE_TowerNode_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3ItaDurations[28] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_AlteracValley\\HORDE_Node_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3ItaDurations[29] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_AlteracValley\\HORDE_Node_Offense.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3ItaDurations[30] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_AlteracValley\\HORDE_TowerNode_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3ItaDurations[31] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_AlteracValley\\HORDE_TowerNode_Destroyed.mp3", duration = 1.9755 }
PVPSound_UnrealTournament3ItaDurations[32] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_AlteracValley\\HORDE_TowerNode_Offense.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3ItaDurations[33] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_ArathiBasin\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3ItaDurations[34] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_ArathiBasin\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3ItaDurations[35] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_ArathiBasin\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3ItaDurations[36] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_ArathiBasin\\HORDE_Base_Offense.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3ItaDurations[37] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_CookingImpossible\\ALLIANCE_Scores.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3ItaDurations[38] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_CookingImpossible\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3ItaDurations[39] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3ItaDurations[40] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3ItaDurations[41] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\ALLIANCE_Flag_Dropped.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3ItaDurations[42] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\ALLIANCE_Flag_Returned.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[43] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\ALLIANCE_Flag_Taken.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3ItaDurations[44] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\ALLIANCE_Scores.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3ItaDurations[45] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3ItaDurations[46] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\HORDE_Base_Offense.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3ItaDurations[47] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\HORDE_Flag_Dropped.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[48] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\HORDE_Flag_Returned.mp3", duration = 2.3835 }
PVPSound_UnrealTournament3ItaDurations[49] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\HORDE_Flag_Taken.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3ItaDurations[50] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3ItaDurations[51] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_DeepwindGorge\\LastSecondSave.mp3", duration = 2.2875 }
PVPSound_UnrealTournament3ItaDurations[52] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_EyeoftheStorm\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3ItaDurations[53] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_EyeoftheStorm\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3ItaDurations[54] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_EyeoftheStorm\\ALLIANCE_Scores.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3ItaDurations[55] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_EyeoftheStorm\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3ItaDurations[56] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_EyeoftheStorm\\HORDE_Base_Offense.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3ItaDurations[57] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_EyeoftheStorm\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3ItaDurations[58] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_IsleofConquest\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3ItaDurations[59] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_IsleofConquest\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3ItaDurations[60] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_IsleofConquest\\BarricadeDestroyedBlueCoreIsVulnerable.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[61] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_IsleofConquest\\BarricadeDestroyedRedCoreIsVulnerable.mp3", duration = 2.2155 }
PVPSound_UnrealTournament3ItaDurations[62] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_IsleofConquest\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3ItaDurations[63] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_IsleofConquest\\HORDE_Base_Offense.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3ItaDurations[64] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_SeethingShore\\ALLIANCE_Scores.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3ItaDurations[65] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_SeethingShore\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3ItaDurations[66] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_SilvershardMines\\ALLIANCE_Scores.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3ItaDurations[67] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_SilvershardMines\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3ItaDurations[68] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_SilvershardMines\\MineShaftOpening.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3ItaDurations[69] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TarrenShore\\ALLIANCE_Inc_Lead.mp3", duration = 2.9355 }
PVPSound_UnrealTournament3ItaDurations[70] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TarrenShore\\ALLIANCE_Takes_Lead.mp3", duration = 2.4075 }
PVPSound_UnrealTournament3ItaDurations[71] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TarrenShore\\HORDE_Inc_Lead.mp3", duration = 3.0555 }
PVPSound_UnrealTournament3ItaDurations[72] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TarrenShore\\HORDE_Takes_Lead.mp3", duration = 2.7675 }
PVPSound_UnrealTournament3ItaDurations[73] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TempleofKotmogu\\ALLIANCE_Orb_PickedUp.mp3", duration = 1.8075 }
PVPSound_UnrealTournament3ItaDurations[74] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TempleofKotmogu\\HORDE_Orb_PickedUp.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3ItaDurations[75] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TempleofKotmogu\\OrbReturned.mp3", duration = 1.3275 }
PVPSound_UnrealTournament3ItaDurations[76] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3ItaDurations[77] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3ItaDurations[78] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TheBattleforGilneas\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3ItaDurations[79] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TheBattleforGilneas\\HORDE_Base_Offense.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3ItaDurations[80] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3ItaDurations[81] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3ItaDurations[82] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3ItaDurations[83] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.6955 }
PVPSound_UnrealTournament3ItaDurations[84] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3ItaDurations[85] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\HORDE_Base_Offense.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3ItaDurations[86] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\HORDE_TowerNode_Destroyed.mp3", duration = 1.9755 }
PVPSound_UnrealTournament3ItaDurations[87] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.6715 }
PVPSound_UnrealTournament3ItaDurations[88] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[89] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3ItaDurations[90] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[91] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TolBarad\\PlayYouAreOnRedDefendYourCore.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3ItaDurations[92] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\ALLIANCE_Flag_Dropped.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3ItaDurations[93] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\ALLIANCE_Flag_Returned.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[94] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\ALLIANCE_Flag_Taken.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3ItaDurations[95] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\ALLIANCE_Inc_Lead.mp3", duration = 2.9355 }
PVPSound_UnrealTournament3ItaDurations[96] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\ALLIANCE_Scores.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3ItaDurations[97] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\ALLIANCE_Takes_Lead.mp3", duration = 2.4075 }
PVPSound_UnrealTournament3ItaDurations[98] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\HORDE_Flag_Dropped.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[99] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\HORDE_Flag_Returned.mp3", duration = 2.3835 }
PVPSound_UnrealTournament3ItaDurations[100] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\HORDE_Flag_Taken.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3ItaDurations[101] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\HORDE_Inc_Lead.mp3", duration = 3.0555 }
PVPSound_UnrealTournament3ItaDurations[102] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3ItaDurations[103] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\HORDE_Takes_Lead.mp3", duration = 2.7675 }
PVPSound_UnrealTournament3ItaDurations[104] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\LastSecondSave.mp3", duration = 2.2875 }
PVPSound_UnrealTournament3ItaDurations[105] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_TwinPeaks\\Overtime.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3ItaDurations[106] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\ALLIANCE_Flag_Dropped.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3ItaDurations[107] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\ALLIANCE_Flag_Returned.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[108] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\ALLIANCE_Flag_Taken.mp3", duration = 1.6395 }
PVPSound_UnrealTournament3ItaDurations[109] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\ALLIANCE_Inc_Lead.mp3", duration = 2.9355 }
PVPSound_UnrealTournament3ItaDurations[110] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\ALLIANCE_Scores.mp3", duration = 1.7835 }
PVPSound_UnrealTournament3ItaDurations[111] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\ALLIANCE_Takes_Lead.mp3", duration = 2.4075 }
PVPSound_UnrealTournament3ItaDurations[112] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\HORDE_Flag_Dropped.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[113] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\HORDE_Flag_Returned.mp3", duration = 2.3835 }
PVPSound_UnrealTournament3ItaDurations[114] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\HORDE_Flag_Taken.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3ItaDurations[115] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\HORDE_Inc_Lead.mp3", duration = 3.0555 }
PVPSound_UnrealTournament3ItaDurations[116] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\HORDE_Scores.mp3", duration = 2.0955 }
PVPSound_UnrealTournament3ItaDurations[117] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\HORDE_Takes_Lead.mp3", duration = 2.7675 }
PVPSound_UnrealTournament3ItaDurations[118] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\LastSecondSave.mp3", duration = 2.2875 }
PVPSound_UnrealTournament3ItaDurations[119] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_WarsongGulch\\Overtime.mp3", duration = 1.6635 }
PVPSound_UnrealTournament3ItaDurations[120] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\ALLIANCE_Base_Defense.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3ItaDurations[121] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\ALLIANCE_Base_Offense.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3ItaDurations[122] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 1.8795 }
PVPSound_UnrealTournament3ItaDurations[123] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.6955 }
PVPSound_UnrealTournament3ItaDurations[124] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\BarricadeDestroyed.mp3", duration = 1.8075 }
PVPSound_UnrealTournament3ItaDurations[125] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\HORDE_Base_Defense.mp3", duration = 1.8555 }
PVPSound_UnrealTournament3ItaDurations[126] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\HORDE_Base_Offense.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3ItaDurations[127] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\HORDE_TowerNode_Destroyed.mp3", duration = 1.9755 }
PVPSound_UnrealTournament3ItaDurations[128] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.6715 }
PVPSound_UnrealTournament3ItaDurations[129] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[130] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3ItaDurations[131] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3ItaDurations[132] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Ita\\Zone_Wintergrasp\\PlayYouAreOnRedDefendYourCore.mp3", duration = 1.9995 }
-- Rus
PVPSound_UnrealTournament3RusDurations = { }
PVPSound_UnrealTournament3RusKillDurations = { }
PVPSound_UnrealTournament3RusMultiKillDurations = { }
PVPSound_UnrealTournament3RusPaybackKillDurations = { }
PVPSound_UnrealTournament3RusTestDurations = { }
PVPSound_UnrealTournament3RusDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\CountDown\\FiveKillsRemain.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3RusDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\CountDown\\FiveMinutesRemain.mp3", duration = 2.1915 }
PVPSound_UnrealTournament3RusDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\CountDown\\OneKillRemains.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3RusDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\CountDown\\OneMinuteRemains.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3RusDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\CountDown\\TenKillsRemain.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3RusDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\CountDown\\ThreeMinutesRemain.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3RusDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\CountDown\\TwoMinutesRemain.mp3", duration = 2.2395 }
PVPSound_UnrealTournament3RusDurations[8] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Effects\\KillingMaxRank.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[9] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Effects\\MultiKillingMaxRank.mp3", duration = 3.9195 }
PVPSound_UnrealTournament3RusDurations[10] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\AllianceDominating.mp3", duration = 2.5275 }
PVPSound_UnrealTournament3RusDurations[11] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\AllianceWins.mp3", duration = 2.4315 }
PVPSound_UnrealTournament3RusDurations[12] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\EndOfRound.mp3", duration = 1.3995 }
PVPSound_UnrealTournament3RusDurations[13] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\FinalRound.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3RusDurations[14] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\HordeDominating.mp3", duration = 2.5035 }
PVPSound_UnrealTournament3RusDurations[15] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\HordeWins.mp3", duration = 2.9355 }
PVPSound_UnrealTournament3RusDurations[16] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\HumiliatingDefeat.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3RusDurations[17] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\PlayYouAreOnBlue.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3RusDurations[18] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\PlayYouAreOnRed.mp3", duration = 1.9995 }
PVPSound_UnrealTournament3RusDurations[19] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\PrepareForBattle.mp3", duration = 1.0395 }
PVPSound_UnrealTournament3RusDurations[20] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\UnrealTournament3.mp3", duration = 2.0235 }
PVPSound_UnrealTournament3RusDurations[21] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\YouHaveLostTheMatch.mp3", duration = 1.4715 }
PVPSound_UnrealTournament3RusDurations[22] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\GameStatus\\YouHaveWonTheMatch.mp3", duration = 1.5675 }
PVPSound_UnrealTournament3RusKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Kill\\1Первая Кровь.mp3", name = "Первая Кровь", duration = 2.1435 }
PVPSound_UnrealTournament3RusKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Kill\\2Серия Убийств.mp3", name = "Серия Убийств", duration = 2.0235 }
PVPSound_UnrealTournament3RusKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Kill\\3Ярость.mp3", name = "Ярость", duration = 1.6155 }
PVPSound_UnrealTournament3RusKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Kill\\4Доминирование.mp3", name = "Доминирование", duration = 1.9035 }
PVPSound_UnrealTournament3RusKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Kill\\5Неудержимый.mp3", name = "Неудержимый", duration = 2.0955 }
PVPSound_UnrealTournament3RusKillDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Kill\\6Божественно.mp3", name = "Божественно", duration = 1.9755 }
PVPSound_UnrealTournament3RusKillDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Kill\\7ПОБОИЩЕ.mp3", name = "ПОБОИЩЕ", duration = 2.0955 }
PVPSound_UnrealTournament3RusMultiKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\MultiKill\\1Двоих.mp3", name = "Двоих", duration = 2.0235 }
PVPSound_UnrealTournament3RusMultiKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\MultiKill\\2Троих.mp3", name = "Троих", duration = 1.5915 }
PVPSound_UnrealTournament3RusMultiKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\MultiKill\\3Мясо.mp3", name = "Мясо", duration = 1.7595 }
PVPSound_UnrealTournament3RusMultiKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\MultiKill\\4Бойня.mp3", name = "Бойня", duration = 1.4475 }
PVPSound_UnrealTournament3RusMultiKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\MultiKill\\5МОНСТР.mp3", name = "МОНСТР", duration = 2.2875 }
PVPSound_UnrealTournament3RusPaybackKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Payback\\1Расплата.mp3", name = "Расплата", duration = 2.2155 }
PVPSound_UnrealTournament3RusPaybackKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Payback\\2Возмездие.mp3", name = "Возмездие", duration = 2.8155 }
PVPSound_UnrealTournament3RusTestDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Test\\1Влепешку.mp3", name = "Влепешку", duration = 1.6155 }
PVPSound_UnrealTournament3RusDurations[23] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_AlteracValley\\ALLIANCE_Node_Defense.mp3", duration = 2.4795 }
PVPSound_UnrealTournament3RusDurations[24] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_AlteracValley\\ALLIANCE_Node_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[25] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_AlteracValley\\ALLIANCE_TowerNode_Defense.mp3", duration = 2.4795 }
PVPSound_UnrealTournament3RusDurations[26] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_AlteracValley\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[27] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_AlteracValley\\ALLIANCE_TowerNode_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[28] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_AlteracValley\\HORDE_Node_Defense.mp3", duration = 2.5995 }
PVPSound_UnrealTournament3RusDurations[29] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_AlteracValley\\HORDE_Node_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[30] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_AlteracValley\\HORDE_TowerNode_Defense.mp3", duration = 2.5995 }
PVPSound_UnrealTournament3RusDurations[31] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_AlteracValley\\HORDE_TowerNode_Destroyed.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[32] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_AlteracValley\\HORDE_TowerNode_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[33] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_ArathiBasin\\ALLIANCE_Base_Defense.mp3", duration = 2.4795 }
PVPSound_UnrealTournament3RusDurations[34] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_ArathiBasin\\ALLIANCE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[35] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_ArathiBasin\\HORDE_Base_Defense.mp3", duration = 2.5995 }
PVPSound_UnrealTournament3RusDurations[36] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_ArathiBasin\\HORDE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[37] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_CookingImpossible\\ALLIANCE_Scores.mp3", duration = 3.1275 }
PVPSound_UnrealTournament3RusDurations[38] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_CookingImpossible\\HORDE_Scores.mp3", duration = 3.0315 }
PVPSound_UnrealTournament3RusDurations[39] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\ALLIANCE_Base_Defense.mp3", duration = 2.4795 }
PVPSound_UnrealTournament3RusDurations[40] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\ALLIANCE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[41] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\ALLIANCE_Flag_Dropped.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3RusDurations[42] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\ALLIANCE_Flag_Returned.mp3", duration = 2.2155 }
PVPSound_UnrealTournament3RusDurations[43] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\ALLIANCE_Flag_Taken.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3RusDurations[44] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\ALLIANCE_Scores.mp3", duration = 3.1275 }
PVPSound_UnrealTournament3RusDurations[45] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\HORDE_Base_Defense.mp3", duration = 2.5995 }
PVPSound_UnrealTournament3RusDurations[46] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\HORDE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[47] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\HORDE_Flag_Dropped.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3RusDurations[48] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\HORDE_Flag_Returned.mp3", duration = 2.2875 }
PVPSound_UnrealTournament3RusDurations[49] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\HORDE_Flag_Taken.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3RusDurations[50] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\HORDE_Scores.mp3", duration = 3.0315 }
PVPSound_UnrealTournament3RusDurations[51] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_DeepwindGorge\\LastSecondSave.mp3", duration = 1.4475 }
PVPSound_UnrealTournament3RusDurations[52] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_EyeoftheStorm\\ALLIANCE_Base_Defense.mp3", duration = 2.4795 }
PVPSound_UnrealTournament3RusDurations[53] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_EyeoftheStorm\\ALLIANCE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[54] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_EyeoftheStorm\\ALLIANCE_Scores.mp3", duration = 3.1275 }
PVPSound_UnrealTournament3RusDurations[55] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_EyeoftheStorm\\HORDE_Base_Defense.mp3", duration = 2.5995 }
PVPSound_UnrealTournament3RusDurations[56] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_EyeoftheStorm\\HORDE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[57] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_EyeoftheStorm\\HORDE_Scores.mp3", duration = 3.0315 }
PVPSound_UnrealTournament3RusDurations[58] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_IsleofConquest\\ALLIANCE_Base_Defense.mp3", duration = 2.4795 }
PVPSound_UnrealTournament3RusDurations[59] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_IsleofConquest\\ALLIANCE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[60] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_IsleofConquest\\BarricadeDestroyedBlueCoreIsVulnerable.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3RusDurations[61] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_IsleofConquest\\BarricadeDestroyedRedCoreIsVulnerable.mp3", duration = 2.3355 }
PVPSound_UnrealTournament3RusDurations[62] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_IsleofConquest\\HORDE_Base_Defense.mp3", duration = 2.5995 }
PVPSound_UnrealTournament3RusDurations[63] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_IsleofConquest\\HORDE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[64] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_SeethingShore\\ALLIANCE_Scores.mp3", duration = 3.1275 }
PVPSound_UnrealTournament3RusDurations[65] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_SeethingShore\\HORDE_Scores.mp3", duration = 3.0315 }
PVPSound_UnrealTournament3RusDurations[66] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_SilvershardMines\\ALLIANCE_Scores.mp3", duration = 3.1275 }
PVPSound_UnrealTournament3RusDurations[67] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_SilvershardMines\\HORDE_Scores.mp3", duration = 3.0315 }
PVPSound_UnrealTournament3RusDurations[68] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_SilvershardMines\\MineShaftOpening.mp3", duration = 2.0475 }
PVPSound_UnrealTournament3RusDurations[69] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TarrenShore\\ALLIANCE_Inc_Lead.mp3", duration = 2.9595 }
PVPSound_UnrealTournament3RusDurations[70] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TarrenShore\\ALLIANCE_Takes_Lead.mp3", duration = 2.8635 }
PVPSound_UnrealTournament3RusDurations[71] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TarrenShore\\HORDE_Inc_Lead.mp3", duration = 2.7675 }
PVPSound_UnrealTournament3RusDurations[72] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TarrenShore\\HORDE_Takes_Lead.mp3", duration = 2.9115 }
PVPSound_UnrealTournament3RusDurations[73] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TempleofKotmogu\\ALLIANCE_Orb_PickedUp.mp3", duration = 2.7195 }
PVPSound_UnrealTournament3RusDurations[74] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TempleofKotmogu\\HORDE_Orb_PickedUp.mp3", duration = 2.5275 }
PVPSound_UnrealTournament3RusDurations[75] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TempleofKotmogu\\OrbReturned.mp3", duration = 2.2635 }
PVPSound_UnrealTournament3RusDurations[76] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Defense.mp3", duration = 2.4795 }
PVPSound_UnrealTournament3RusDurations[77] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TheBattleforGilneas\\ALLIANCE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[78] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TheBattleforGilneas\\HORDE_Base_Defense.mp3", duration = 2.5995 }
PVPSound_UnrealTournament3RusDurations[79] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TheBattleforGilneas\\HORDE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[80] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\ALLIANCE_Base_Defense.mp3", duration = 2.4795 }
PVPSound_UnrealTournament3RusDurations[81] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\ALLIANCE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[82] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[83] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.7675 }
PVPSound_UnrealTournament3RusDurations[84] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\HORDE_Base_Defense.mp3", duration = 2.5995 }
PVPSound_UnrealTournament3RusDurations[85] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\HORDE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[86] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\HORDE_TowerNode_Destroyed.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[87] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.8395 }
PVPSound_UnrealTournament3RusDurations[88] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 2.2875 }
PVPSound_UnrealTournament3RusDurations[89] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 2.3115 }
PVPSound_UnrealTournament3RusDurations[90] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 2.2875 }
PVPSound_UnrealTournament3RusDurations[91] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TolBarad\\PlayYouAreOnRedDefendYourCore.mp3", duration = 2.3115 }
PVPSound_UnrealTournament3RusDurations[92] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\ALLIANCE_Flag_Dropped.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3RusDurations[93] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\ALLIANCE_Flag_Returned.mp3", duration = 2.2155 }
PVPSound_UnrealTournament3RusDurations[94] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\ALLIANCE_Flag_Taken.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3RusDurations[95] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\ALLIANCE_Inc_Lead.mp3", duration = 2.9595 }
PVPSound_UnrealTournament3RusDurations[96] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\ALLIANCE_Scores.mp3", duration = 3.1275 }
PVPSound_UnrealTournament3RusDurations[97] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\ALLIANCE_Takes_Lead.mp3", duration = 2.8635 }
PVPSound_UnrealTournament3RusDurations[98] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\HORDE_Flag_Dropped.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3RusDurations[99] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\HORDE_Flag_Returned.mp3", duration = 2.2875 }
PVPSound_UnrealTournament3RusDurations[100] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\HORDE_Flag_Taken.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3RusDurations[101] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\HORDE_Inc_Lead.mp3", duration = 2.7675 }
PVPSound_UnrealTournament3RusDurations[102] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\HORDE_Scores.mp3", duration = 3.0315 }
PVPSound_UnrealTournament3RusDurations[103] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\HORDE_Takes_Lead.mp3", duration = 2.9115 }
PVPSound_UnrealTournament3RusDurations[104] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\LastSecondSave.mp3", duration = 1.4475 }
PVPSound_UnrealTournament3RusDurations[105] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_TwinPeaks\\Overtime.mp3", duration = 1.1115 }
PVPSound_UnrealTournament3RusDurations[106] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\ALLIANCE_Flag_Dropped.mp3", duration = 2.0715 }
PVPSound_UnrealTournament3RusDurations[107] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\ALLIANCE_Flag_Returned.mp3", duration = 2.2155 }
PVPSound_UnrealTournament3RusDurations[108] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\ALLIANCE_Flag_Taken.mp3", duration = 2.1675 }
PVPSound_UnrealTournament3RusDurations[109] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\ALLIANCE_Inc_Lead.mp3", duration = 2.9595 }
PVPSound_UnrealTournament3RusDurations[110] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\ALLIANCE_Scores.mp3", duration = 3.1275 }
PVPSound_UnrealTournament3RusDurations[111] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\ALLIANCE_Takes_Lead.mp3", duration = 2.8635 }
PVPSound_UnrealTournament3RusDurations[112] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\HORDE_Flag_Dropped.mp3", duration = 2.1435 }
PVPSound_UnrealTournament3RusDurations[113] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\HORDE_Flag_Returned.mp3", duration = 2.2875 }
PVPSound_UnrealTournament3RusDurations[114] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\HORDE_Flag_Taken.mp3", duration = 1.8315 }
PVPSound_UnrealTournament3RusDurations[115] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\HORDE_Inc_Lead.mp3", duration = 2.7675 }
PVPSound_UnrealTournament3RusDurations[116] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\HORDE_Scores.mp3", duration = 3.0315 }
PVPSound_UnrealTournament3RusDurations[117] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\HORDE_Takes_Lead.mp3", duration = 2.9115 }
PVPSound_UnrealTournament3RusDurations[118] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\LastSecondSave.mp3", duration = 1.4475 }
PVPSound_UnrealTournament3RusDurations[119] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_WarsongGulch\\Overtime.mp3", duration = 1.1115 }
PVPSound_UnrealTournament3RusDurations[120] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\ALLIANCE_Base_Defense.mp3", duration = 2.4795 }
PVPSound_UnrealTournament3RusDurations[121] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\ALLIANCE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[122] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\ALLIANCE_TowerNode_Destroyed.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[123] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\ALLIANCE_TowerNode_HeavilyDamaged.mp3", duration = 2.7675 }
PVPSound_UnrealTournament3RusDurations[124] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\BarricadeDestroyed.mp3", duration = 1.9515 }
PVPSound_UnrealTournament3RusDurations[125] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\HORDE_Base_Defense.mp3", duration = 2.5995 }
PVPSound_UnrealTournament3RusDurations[126] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\HORDE_Base_Offense.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[127] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\HORDE_TowerNode_Destroyed.mp3", duration = 2.3595 }
PVPSound_UnrealTournament3RusDurations[128] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\HORDE_TowerNode_HeavilyDamaged.mp3", duration = 2.8395 }
PVPSound_UnrealTournament3RusDurations[129] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\PlayYouAreOnBlueAttackTheEnemyCore.mp3", duration = 2.2875 }
PVPSound_UnrealTournament3RusDurations[130] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\PlayYouAreOnBlueDefendYourCore.mp3", duration = 2.3115 }
PVPSound_UnrealTournament3RusDurations[131] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\PlayYouAreOnRedAttackTheEnemyCore.mp3", duration = 2.2875 }
PVPSound_UnrealTournament3RusDurations[132] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\UnrealTournament3\\Rus\\Zone_Wintergrasp\\PlayYouAreOnRedDefendYourCore.mp3", duration = 2.3115 }
-- Devil May Cry SoundPacks
-- Eng
PVPSound_DevilMayCryEngDurations = { }
PVPSound_DevilMayCryEngKillDurations = { }
PVPSound_DevilMayCryEngMultiKillDurations = { }
PVPSound_DevilMayCryEngPaybackKillDurations = { }
PVPSound_DevilMayCryEngTestDurations = { }
PVPSound_DevilMayCryEngDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Effects\\KillingMaxRank.mp3", duration = 2.3595 }
PVPSound_DevilMayCryEngDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Effects\\MultiKillingMaxRank.mp3", duration = 3.9195 }
PVPSound_DevilMayCryEngKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Kill\\1Dirty.mp3", name = "Dirty", duration = 1.6395 }
PVPSound_DevilMayCryEngKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Kill\\2Cruel.mp3", name = "Cruel", duration = 1.4715 }
PVPSound_DevilMayCryEngKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Kill\\3Brutal.mp3", name = "Brutal", duration = 1.4955 }
PVPSound_DevilMayCryEngKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Kill\\4Anarchic.mp3", name = "Anarchic", duration = 1.8555 }
PVPSound_DevilMayCryEngKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Kill\\5Savage.mp3", name = "Savage", duration = 1.7115 }
PVPSound_DevilMayCryEngKillDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Kill\\6Sadistic.mp3", name = "Sadistic", duration = 1.8315 }
PVPSound_DevilMayCryEngKillDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Kill\\7SENSATIONAL.mp3", name = "SENSATIONAL", duration = 2.3115 }
PVPSound_DevilMayCryEngMultiKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\MultiKill\\1Crush Him.mp3", name = "Crush Him", duration = 4.3035 }
PVPSound_DevilMayCryEngMultiKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\MultiKill\\2Can Not Hide.mp3", name = "Can Not Hide", duration = 4.7115 }
PVPSound_DevilMayCryEngMultiKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\MultiKill\\3Kill Them All.mp3", name = "Kill Them All", duration = 4.8315 }
PVPSound_DevilMayCryEngPaybackKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Payback\\1Really Hate You.mp3", name = "Really Hate You", duration = 4.8315 }
PVPSound_DevilMayCryEngPaybackKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Payback\\2Kill Yourself.mp3", name = "Kill Yourself", duration = 3.9915 }
PVPSound_DevilMayCryEngTestDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\DevilMayCry\\Eng\\Test\\1Devil May Cry.mp3", name = "Devil May Cry", duration = 7.6875 }
-- Dota 2 SoundPacks
-- Axe
PVPSound_Dota2AxeDurations = { }
PVPSound_Dota2AxeKillDurations = { }
PVPSound_Dota2AxeMultiKillDurations = { }
PVPSound_Dota2AxePaybackKillDurations = { }
PVPSound_Dota2AxeTestDurations = { }
PVPSound_Dota2AxeDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Effects\\KillingMaxRank.mp3", duration = 2.3595 }
PVPSound_Dota2AxeDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Effects\\MultiKillingMaxRank.mp3", duration = 3.9195 }
PVPSound_Dota2AxeKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Kill\\1First Blood.mp3", name = "First Blood", duration = 1.9965 }
PVPSound_Dota2AxeKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Kill\\2Killing Spree.mp3", name = "Killing Spree", duration = 2.0925 }
PVPSound_Dota2AxeKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Kill\\3Rampage.mp3", name = "Rampage", duration = 2.0445 }
PVPSound_Dota2AxeKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Kill\\4Dominating.mp3", name = "Dominating", duration = 2.1885 }
PVPSound_Dota2AxeKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Kill\\5Unstoppable.mp3", name = "Unstoppable", duration = 2.2125 }
PVPSound_Dota2AxeKillDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Kill\\6Godlike.mp3", name = "Godlike", duration = 1.8045 }
PVPSound_Dota2AxeKillDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Kill\\7HOLY SHIT.mp3", name = "HOLY SHIT", duration = 1.9245 }
PVPSound_Dota2AxeMultiKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\MultiKill\\1Double Kill.mp3", name = "Double Kill", duration = 2.0925 }
PVPSound_Dota2AxeMultiKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\MultiKill\\2Triple Kill.mp3", name = "Triple Kill", duration = 2.0205 }
PVPSound_Dota2AxeMultiKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\MultiKill\\3Mega Kill.mp3", name = "Mega Kill", duration = 1.9245 }
PVPSound_Dota2AxeMultiKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\MultiKill\\4Ultra Kill.mp3", name = "Ultra Kill", duration = 1.8525 }
PVPSound_Dota2AxeMultiKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\MultiKill\\5MONSTER KILL.mp3", name = "MONSTER KILL", duration = 2.3565 }
PVPSound_Dota2AxePaybackKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Payback\\1Payback.mp3", name = "Payback", duration = 2.3325 }
PVPSound_Dota2AxePaybackKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Payback\\2Retribution.mp3", name = "Retribution", duration = 2.2365 }
PVPSound_Dota2AxeTestDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Axe\\Test\\1Impressed.mp3", name = "Impressed", duration = 1.9725 }
-- Bastion
PVPSound_Dota2BastionDurations = { }
PVPSound_Dota2BastionKillDurations = { }
PVPSound_Dota2BastionMultiKillDurations = { }
PVPSound_Dota2BastionPaybackKillDurations = { }
PVPSound_Dota2BastionTestDurations = { }
PVPSound_Dota2BastionDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\Effects\\KillingMaxRank.mp3", duration = 2.3595 }
PVPSound_Dota2BastionDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\Effects\\MultiKillingMaxRank.mp3", duration = 3.9195 }
PVPSound_Dota2BastionKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\Kill\\1First Blood.mp3", name = "First Blood", duration = 1.7805 }
PVPSound_Dota2BastionKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\Kill\\2Killing Spree.mp3", name = "Killing Spree", duration = 1.9005 }
PVPSound_Dota2BastionKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\Kill\\3Rampage.mp3", name = "Rampage", duration = 1.9485 }
PVPSound_Dota2BastionKillDurations[4] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\Kill\\4Dominating.mp3", name = "Dominating", duration = 1.4685 }
PVPSound_Dota2BastionKillDurations[5] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\Kill\\5Unstoppable.mp3", name = "Unstoppable", duration = 1.4685 }
PVPSound_Dota2BastionKillDurations[6] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\Kill\\6Godlike.mp3", name = "Godlike", duration = 1.5165 }
PVPSound_Dota2BastionKillDurations[7] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\Kill\\7HOLY SHIT.mp3", name = "HOLY SHIT", duration = 1.3965 }
PVPSound_Dota2BastionMultiKillDurations[1] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\MultiKill\\1Double Kill.mp3", name = "Double Kill", duration = 1.1805 }
PVPSound_Dota2BastionMultiKillDurations[2] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\MultiKill\\2Triple Kill.mp3", name = "Triple Kill", duration = 1.2045 }
PVPSound_Dota2BastionMultiKillDurations[3] = { dir = "Interface\\Addons\\PVPSound\\Sounds\\Dota2\\Bastion\\MultiKill\\3Mega Kill.mp3", name = "Mega Kill", duration = 1.3005 }