forked from manicogaming/CSGOBetterBots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbotprofile.db
6460 lines (4819 loc) · 102 KB
/
botprofile.db
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
//----------------------------------------------------------------------------
// BotProfile.db
// Author: Michael S. Booth, Turtle Rock Studios (www.turtlerockstudios.com)
//
// This database defines bot "personalities".
// Feel free to edit it and define your own bots.
//
// 2017: NEW BOT EDITS, PROFILES, NAMES, and SKILLS V1.5 BY dDefinder
// New bot names, skill and weapon trees. Aim and movement for bots should now simulate keyboard and mouse and not a controller.
// Playing on normal difficulty will be like playing on a public server with mixed skill levels between normal and expert. More harder bots will join on hard difficultly and only high level bots will be in expert.
// Overall difficultly increase for all bot skills.
// v1.1: Added new bot skill, minor aim speed increase, removed duplicate name, switch profiles of certain bots.
// Limitations: Bots no longer buy pistols, this was patched out after a certain update. During eco they will not buy a better pistol or save, instead they will just buy a random weapon that they can afford until they can buy the one in their next Weaponpreference.
// v1.2: Added buy limit for higher leveled bots (saving)
// v1.3: Rebalanced Aim Focus for normal to expert level. Added Separate Profiles for lower leveled snipers so that they can now aim properly. Minor name changes. Minor profile and gun tree changes. Minor Look Angle changes. Bug Fixes.
// v1.4: Tweaked aggression and teamwork for high level bots. Minor profile changes. Removed a duplicate name. Fixed mission skill templates.
// v1.5: Fixed expert bots not working since last CSGO update. Reduced chance of expert bots appearing in normal and easy. Removed pistol from weapon list, this will allow bots to buy other pistols besides the default. Minor aim adjustments to expert and elite bots
//----------------------------------------------------------------------------
//
// All profiles begin with this data and overwrite their own
//
Default
Skill = 50
Aggression = 50
ReactionTime = 0.3
AttackDelay = 0
Teamwork = 75
AimFocusInitial = 20 // initial focus spread in degrees (from desired center)
AimFocusDecay = 0.7 // how much focus shrinks per second (.25 = 25% of size after 1 sec)
AimFocusOffsetScale = 0.30 // controls accuracy when tracking to target (0 == perfect, should always be < 1)
AimfocusInterval = 0.8 // how often focus is adjusted (smaller intervals means better movement tracking)
WeaponPreference = none
Cost = 0
Difficulty = NORMAL
VoicePitch = 100
Skin = 0
LookAngleMaxAccelNormal = 3000.0
LookAngleStiffnessNormal = 200.0
LookAngleDampingNormal = 25.0
LookAngleMaxAccelAttacking = 3000.0
LookAngleStiffnessAttacking = 300.0
LookAngleDampingAttacking = 30.0
End
//----------------------------------------------------------------------------
//
// These templates inherit from Default and override with their values
// The name of the template defines a type that is used by individual bot profiles
//
// personality templates
// stats added as a separate template since it would get overwritten by difficulty template
//
Template SniperPersonality
Teamwork = 85
Aggression = 55
End
Template RiflePersonality
Teamwork = 100
Aggression = 55
End
// used after AUG/SG556 scope patch, to reduce camping for Punch bots
Template PunchPersonality
Teamwork = 95
Aggression = 100
End
Template PowerPersonality
Teamwork = 80
Aggression = 100
End
Template AutoSniperPersonality
Teamwork = 80
Aggression = 50
End
// weapon preference templates
Template SniperPro
WeaponPreference = awp
WeaponPreference = ak47
WeaponPreference = m4a1
WeaponPreference = ssg08
WeaponPreference = mp9
WeaponPreference = mac10
WeaponPreference = famas
WeaponPreference = galilar
WeaponPreference = ump45
WeaponPreference = mp7
End
Template Rifle
WeaponPreference = ak47
WeaponPreference = m4a1
WeaponPreference = aug
WeaponPreference = mp9
WeaponPreference = mac10
WeaponPreference = famas
WeaponPreference = galilar
WeaponPreference = ump45
WeaponPreference = mp7
End
Template Punch
WeaponPreference = sg556
WeaponPreference = aug
WeaponPreference = m4a1
WeaponPreference = ak47
WeaponPreference = negev
WeaponPreference = m249
WeaponPreference = scar20
WeaponPreference = g3sg1
WeaponPreference = awp
WeaponPreference = galilar
WeaponPreference = famas
End
Template Sniper
WeaponPreference = awp
WeaponPreference = scar20
WeaponPreference = g3sg1
WeaponPreference = ak47
WeaponPreference = m4a1
WeaponPreference = sg556
WeaponPreference = aug
WeaponPreference = negev
WeaponPreference = m249
WeaponPreference = galilar
WeaponPreference = famas
WeaponPreference = ssg08
End
Template Power
WeaponPreference = negev
WeaponPreference = m249
WeaponPreference = scar20
WeaponPreference = g3sg1
WeaponPreference = ak47
WeaponPreference = m4a1
WeaponPreference = xm1014
WeaponPreference = sg556
WeaponPreference = aug
WeaponPreference = awp
WeaponPreference = galilar
WeaponPreference = famas
End
Template AutoSniper
WeaponPreference = scar20
WeaponPreference = g3sg1
WeaponPreference = awp
WeaponPreference = m4a1
WeaponPreference = ak47
WeaponPreference = sg556
WeaponPreference = aug
WeaponPreference = negev
WeaponPreference = m249
WeaponPreference = galilar
WeaponPreference = famas
WeaponPreference = ssg08
End
Template Spray
WeaponPreference = negev
WeaponPreference = m249
WeaponPreference = p90
WeaponPreference = mp7
WeaponPreference = m4a1
WeaponPreference = ak47
WeaponPreference = aug
WeaponPreference = sg556
WeaponPreference = galilar
WeaponPreference = famas
End
// skill templates
Template ProP
Skill = 100
Rank = 1800
ReactionTime = 0.15
Cost = 4
Difficulty = EXPERT+HARD+NORMAL+EASY
VoicePitch = 85
AimFocusInitial = 0.01
AimFocusDecay = 0.01
AimFocusOffsetScale = 0.01
AimfocusInterval = 0.01
End
Template Elite
Skill = 100
Rank = 1800
ReactionTime = 0.15
Cost = 4
Difficulty = EXPERT+HARD+NORMAL+EASY
VoicePitch = 85
AimFocusInitial = 0.01
AimFocusDecay = 0.01
AimFocusOffsetScale = 0.01
AimfocusInterval = 0.01
End
Template Expert
Skill = 90
Rank = 1600
ReactionTime = 0.2
Cost = 4
Difficulty = EXPERT+HARD+NORMAL+EASY
VoicePitch = 88
AimFocusInitial = 0.1
AimFocusDecay = 0.05
AimFocusOffsetScale = 0.03
AimfocusInterval = 0.03
End
Template VeryHard
Skill = 80
Rank = 1400
Aggression = 75
ReactionTime = 0.3
Cost = 3
Difficulty = EXPERT+HARD+NORMAL+EASY
VoicePitch = 92
AimFocusInitial = 1
AimFocusDecay = 0.1
AimFocusOffsetScale = 0.05
AimfocusInterval = 0.05
End
Template Hard
Skill = 75
Rank = 1300
Aggression = 70
ReactionTime = 0.35
Cost = 3
Difficulty = EXPERT+HARD+NORMAL+EASY
VoicePitch = 94
AimFocusInitial = 5
AimFocusDecay = 0.3
AimFocusOffsetScale = 0.17
AimfocusInterval = 0.30
End
Template Tough
Skill = 60
Rank = 1100
Aggression = 60
ReactionTime = 0.4
Cost = 2
Difficulty = EXPERT+HARD+NORMAL+EASY
VoicePitch = 96
AimFocusInitial = 10
AimFocusDecay = 0.4
AimFocusOffsetScale = 0.20
AimfocusInterval = 0.40
End
Template Normal
Skill = 50
Rank = 1000
Aggression = 45
ReactionTime = 0.45
Cost = 2
Difficulty = EXPERT+HARD+NORMAL+EASY
AimFocusInitial = 10
AimFocusDecay = 0.4
AimFocusOffsetScale = 0.25
AimfocusInterval = 0.50
End
Template Fair
Skill = 25
Rank = 850
Aggression = 30
ReactionTime = 0.50
Cost = 1
Difficulty = EXPERT+HARD+NORMAL+EASY
VoicePitch = 105
AimFocusInitial = 12
AimFocusDecay = 0.5
AimFocusOffsetScale = 0.35
AimfocusInterval = 0.60
End
//----------------------------------------------------------------------------
//
// These are the individual bot profiles, which inherit first from
// Default and then the specified Template(s), in order
//
//MIBR Players
ProP+Rifle+RiflePersonality "chelo"
VoicePitch = 73
End
ProP+SniperPro+SniperPersonality "yel"
VoicePitch = 80
End
ProP+Rifle+RiflePersonality "shz"
VoicePitch = 88
End
ProP+Rifle+RiflePersonality "boltz"
VoicePitch = 96
End
ProP+Rifle+RiflePersonality "danoco"
VoicePitch = 100
End
//FaZe Players
ProP+Rifle+RiflePersonality "Twistzz"
VoicePitch = 113
End
ProP+SniperPro+SniperPersonality "broky"
VoicePitch = 100
End
ProP+Rifle+RiflePersonality "karrigan"
VoicePitch = 70
End
ProP+Rifle+RiflePersonality "rain"
VoicePitch = 85
End
ProP+Rifle+RiflePersonality "coldzera"
VoicePitch = 108
End
//Astralis Players
ProP+Rifle+RiflePersonality "gla1ve"
VoicePitch = 77
End
ProP+SniperPro+SniperPersonality "Bubzkji"
VoicePitch = 104
End
ProP+Rifle+RiflePersonality "Xyp9x"
VoicePitch = 95
End
ProP+Rifle+RiflePersonality "Magisk"
VoicePitch = 73
End
ProP+Rifle+RiflePersonality "dupreeh"
VoicePitch = 73
End
//NiP Players
ProP+Rifle+RiflePersonality "hampus"
VoicePitch = 110
End
ProP+SniperPro+SniperPersonality "device"
VoicePitch = 110
End
ProP+Rifle+RiflePersonality "ztr"
VoicePitch = 99
End
ProP+Rifle+RiflePersonality "Plopski"
VoicePitch = 77
End
ProP+Rifle+RiflePersonality "REZ"
VoicePitch = 80
End
//1win Players
ProP+Rifle+RiflePersonality "propleh"
VoicePitch = 80
End
ProP+SniperPro+SniperPersonality "DavCost"
VoicePitch = 105
End
ProP+Rifle+RiflePersonality "TRAVIS"
VoicePitch = 93
End
ProP+Rifle+RiflePersonality "Polt"
VoicePitch = 88
End
ProP+Rifle+RiflePersonality "deko"
VoicePitch = 104
End
//G2 Players
ProP+Rifle+RiflePersonality "huNter-"
VoicePitch = 94
End
ProP+SniperPro+SniperPersonality "NiKo"
VoicePitch = 111
End
ProP+Rifle+RiflePersonality "JaCkz"
VoicePitch = 89
End
ProP+Rifle+RiflePersonality "nexa"
VoicePitch = 99
End
ProP+Rifle+RiflePersonality "AmaNEk"
VoicePitch = 100
End
//fnatic Players
ProP+Rifle+RiflePersonality "Jackinho"
VoicePitch = 93
End
ProP+SniperPro+SniperPersonality "JW"
VoicePitch = 76
End
ProP+Rifle+RiflePersonality "KRIMZ"
VoicePitch = 97
End
ProP+Rifle+RiflePersonality "Brollan"
VoicePitch = 88
End
ProP+Rifle+RiflePersonality "Golden"
VoicePitch = 103
End
//Alpha Players
ProP+Rifle+RiflePersonality "hug"
VoicePitch = 112
End
ProP+SniperPro+SniperPersonality "wAGNR"
VoicePitch = 85
End
ProP+Rifle+RiflePersonality "lund"
VoicePitch = 108
End
ProP+Rifle+RiflePersonality "TOBIZ"
VoicePitch = 90
End
ProP+Rifle+RiflePersonality "LUMSEN"
VoicePitch = 108
End
//mouz Players
ProP+Rifle+RiflePersonality "dexter"
VoicePitch = 103
End
ProP+SniperPro+SniperPersonality "acoR"
VoicePitch = 114
End
ProP+Rifle+RiflePersonality "Bymas"
VoicePitch = 71
End
ProP+Rifle+RiflePersonality "frozen"
VoicePitch = 101
End
ProP+Rifle+RiflePersonality "ropz"
VoicePitch = 89
End
//TyLoo Players
ProP+Rifle+RiflePersonality "Summer"
VoicePitch = 76
End
ProP+SniperPro+SniperPersonality "Attacker"
VoicePitch = 77
End
ProP+Rifle+RiflePersonality "SLOWLY"
VoicePitch = 111
End
ProP+Rifle+RiflePersonality "somebody"
VoicePitch = 84
End
ProP+Rifle+RiflePersonality "DANK1NG"
VoicePitch = 90
End
//EG Players
ProP+Rifle+RiflePersonality "stanislaw"
VoicePitch = 110
End
ProP+SniperPro+SniperPersonality "CeRq"
VoicePitch = 99
End
ProP+Rifle+RiflePersonality "Brehze"
VoicePitch = 111
End
ProP+Rifle+RiflePersonality "oBo"
VoicePitch = 109
End
ProP+Rifle+RiflePersonality "MICHU"
VoicePitch = 98
End
//Na´Vi Players
ProP+Rifle+RiflePersonality "electronic"
VoicePitch = 85
End
ProP+SniperPro+SniperPersonality "s1mple"
VoicePitch = 71
End
ProP+Rifle+RiflePersonality "flamie"
VoicePitch = 101
End
ProP+Rifle+RiflePersonality "Boombl4"
VoicePitch = 97
End
ProP+Rifle+RiflePersonality "Perfecto"
VoicePitch = 110
End
//Liquid Players
ProP+Rifle+RiflePersonality "Stewie2K"
VoicePitch = 101
End
ProP+SniperPro+SniperPersonality "FalleN"
VoicePitch = 90
End
ProP+Rifle+RiflePersonality "Grim"
VoicePitch = 102
End
ProP+Rifle+RiflePersonality "ELiGE"
VoicePitch = 93
End
ProP+Rifle+RiflePersonality "NAF"
VoicePitch = 102
End
//AGO Players
ProP+Rifle+RiflePersonality "Furlan"
VoicePitch = 84
End
ProP+SniperPro+SniperPersonality "snatchie"
VoicePitch = 106
End
ProP+Rifle+RiflePersonality "reatz"
VoicePitch = 86
End
ProP+Rifle+RiflePersonality "F1KU"
VoicePitch = 93
End
ProP+Rifle+RiflePersonality "leman"
VoicePitch = 88
End
//ENCE Players
ProP+Rifle+RiflePersonality "Snappi"
VoicePitch = 100
End
ProP+SniperPro+SniperPersonality "allu"
VoicePitch = 95
End
ProP+Rifle+RiflePersonality "Spinx"
VoicePitch = 78
End
ProP+Rifle+RiflePersonality "doto"
VoicePitch = 110
End
ProP+Rifle+RiflePersonality "dycha"
VoicePitch = 91
End
//Vitality Players
ProP+Rifle+RiflePersonality "shox"
VoicePitch = 85
End
ProP+SniperPro+SniperPersonality "ZywOo"
VoicePitch = 115
End
ProP+Rifle+RiflePersonality "apEX"
VoicePitch = 73
End
ProP+Rifle+RiflePersonality "Kyojin"
VoicePitch = 80
End
ProP+Rifle+RiflePersonality "Misutaaa"
VoicePitch = 97
End
//BIG Players
ProP+Rifle+RiflePersonality "tiziaN"
VoicePitch = 71
End
ProP+SniperPro+SniperPersonality "syrsoN"
VoicePitch = 81
End
ProP+Rifle+RiflePersonality "XANTARES"
VoicePitch = 112
End
ProP+Rifle+RiflePersonality "tabseN"
VoicePitch = 80
End
ProP+Rifle+RiflePersonality "k1to"
VoicePitch = 101
End
//FURIA Players
ProP+Rifle+RiflePersonality "yuurih"
VoicePitch = 108
End
ProP+SniperPro+SniperPersonality "Junior"
VoicePitch = 100
End
ProP+Rifle+RiflePersonality "VINI"
VoicePitch = 96
End
ProP+Rifle+RiflePersonality "KSCERATO"
VoicePitch = 112
End
ProP+Rifle+RiflePersonality "arT"
VoicePitch = 86
End
//Santos Players
ProP+Rifle+RiflePersonality "cass1n"
VoicePitch = 74
End
ProP+SniperPro+SniperPersonality "keiz"
VoicePitch = 105
End
ProP+Rifle+RiflePersonality "voltera"
VoicePitch = 115
End
ProP+Rifle+RiflePersonality "MaLLby"
VoicePitch = 73
End
ProP+Rifle+RiflePersonality "BobZ"
VoicePitch = 89
End
//coL Players
ProP+Rifle+RiflePersonality "k0nfig"
VoicePitch = 81
End
ProP+SniperPro+SniperPersonality "poizon"
VoicePitch = 93
End
ProP+Rifle+RiflePersonality "jks"
VoicePitch = 107
End
ProP+Rifle+RiflePersonality "RUSH"
VoicePitch = 92
End
ProP+Rifle+RiflePersonality "blameF"
VoicePitch = 102
End
//ViCi Players
ProP+Rifle+RiflePersonality "zhokiNg"
VoicePitch = 80
End
ProP+SniperPro+SniperPersonality "kaze"
VoicePitch = 79
End
ProP+Rifle+RiflePersonality "aumaN"
VoicePitch = 109
End
ProP+Rifle+RiflePersonality "JamYoung"
VoicePitch = 76
End
ProP+Rifle+RiflePersonality "advent"
VoicePitch = 85
End
//forZe Players
ProP+Rifle+RiflePersonality "KENSI"
VoicePitch = 75
End
ProP+SniperPro+SniperPersonality "xsepower"
VoicePitch = 71
End
ProP+Rifle+RiflePersonality "FL1T"
VoicePitch = 91
End
ProP+Rifle+RiflePersonality "almazer"
VoicePitch = 89
End
ProP+Rifle+RiflePersonality "Jerry"
VoicePitch = 75
End
//UMX Players
ProP+Rifle+RiflePersonality "arTisT"
VoicePitch = 73
End
ProP+SniperPro+SniperPersonality "Maza"
VoicePitch = 114
End
ProP+Rifle+RiflePersonality "Girafffe"
VoicePitch = 113
End
ProP+Rifle+RiflePersonality "Extinct"
VoicePitch = 90
End
ProP+Rifle+RiflePersonality "Tadpole"
VoicePitch = 104
End
//Sprout Players
ProP+Rifle+RiflePersonality "kressy"
VoicePitch = 86
End
ProP+SniperPro+SniperPersonality "slaxz"
VoicePitch = 81
End
ProP+Rifle+RiflePersonality "Spiidi"
VoicePitch = 82
End
ProP+Rifle+RiflePersonality "faveN"
VoicePitch = 87
End
ProP+Rifle+RiflePersonality "denis"
VoicePitch = 72
End
//Heroic Players
ProP+Rifle+RiflePersonality "TeSeS"
VoicePitch = 100
End
ProP+SniperPro+SniperPersonality "cadiaN"
VoicePitch = 96
End
ProP+Rifle+RiflePersonality "sjuush"
VoicePitch = 112
End
ProP+Rifle+RiflePersonality "refrezh"
VoicePitch = 96
End
ProP+Rifle+RiflePersonality "stavn"
VoicePitch = 100
End
//INTZ Players
ProP+Rifle+RiflePersonality "guZERA"
VoicePitch = 89
End
ProP+SniperPro+SniperPersonality "BALEROSTYLE"
VoicePitch = 100
End
ProP+Rifle+RiflePersonality "dukka"
VoicePitch = 85
End
ProP+Rifle+RiflePersonality "paredao"
VoicePitch = 101
End
ProP+Rifle+RiflePersonality "chara"
VoicePitch = 100
End
//VP Players
ProP+Rifle+RiflePersonality "YEKINDAR"
VoicePitch = 113
End
ProP+SniperPro+SniperPersonality "Jame"
VoicePitch = 95
End
ProP+Rifle+RiflePersonality "qikert"
VoicePitch = 113
End
ProP+Rifle+RiflePersonality "SANJI"
VoicePitch = 94
End
ProP+Rifle+RiflePersonality "buster"
VoicePitch = 71
End
//Apeks Players
ProP+Rifle+RiflePersonality "FREDDyFROG"
VoicePitch = 73
End
ProP+SniperPro+SniperPersonality "kreaz"
VoicePitch = 91
End
ProP+Rifle+RiflePersonality "Grus"
VoicePitch = 71
End
ProP+Rifle+RiflePersonality "Relaxa"
VoicePitch = 80
End
ProP+Rifle+RiflePersonality "dennis"
VoicePitch = 71
End
//aTTaX Players
ProP+Rifle+RiflePersonality "prosus"
VoicePitch = 77
End
ProP+SniperPro+SniperPersonality "PANIX"
VoicePitch = 106
End
ProP+Rifle+RiflePersonality "ScrunK"
VoicePitch = 95
End
ProP+Rifle+RiflePersonality "Krimbo"
VoicePitch = 91
End
ProP+Rifle+RiflePersonality "kRYSTAL"
VoicePitch = 87
End
//RNG Players
ProP+Rifle+RiflePersonality "INS"
VoicePitch = 79
End
ProP+SniperPro+SniperPersonality "sico"
VoicePitch = 92
End
ProP+Rifle+RiflePersonality "aliStair"
VoicePitch = 92
End
ProP+Rifle+RiflePersonality "Hatz"
VoicePitch = 97
End
ProP+Rifle+RiflePersonality "malta"
VoicePitch = 89
End
//Spirit Players
ProP+Rifle+RiflePersonality "mir"
VoicePitch = 97
End
ProP+SniperPro+SniperPersonality "degster"
VoicePitch = 106
End
ProP+Rifle+RiflePersonality "somedieyoung"
VoicePitch = 90
End
ProP+Rifle+RiflePersonality "chopper"
VoicePitch = 108
End
ProP+Rifle+RiflePersonality "magixx"
VoicePitch = 111
End
//LDLC Players
ProP+Rifle+RiflePersonality "Maka"
VoicePitch = 90
End
ProP+SniperPro+SniperPersonality "Lambert"
VoicePitch = 105
End
ProP+Rifle+RiflePersonality "hAdji"
VoicePitch = 102
End
ProP+Rifle+RiflePersonality "Keoz"
VoicePitch = 96
End
ProP+Rifle+RiflePersonality "SIXER"
VoicePitch = 108
End