Advertisement
Lenngotmelol

botprofile

May 19th, 2019
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.28 KB | None | 0 0
  1. //----------------------------------------------------------------------------
  2. // BotProfile.db
  3. // Author: Michael S. Booth, Turtle Rock Studios (www.turtlerockstudios.com)
  4. //
  5. // This database defines bot "personalities".
  6. // Feel free to edit it and define your own bots.
  7. //
  8.  
  9.  
  10. //----------------------------------------------------------------------------
  11.  
  12. //
  13. // All profiles begin with this data and overwrite their own
  14. //
  15. Default
  16. Skill = 50
  17. Aggression = 50
  18. ReactionTime = 0.3
  19. AttackDelay = 0
  20. Teamwork = 75
  21. AimFocusInitial = 20 // initial focus spread in degrees (from desired center)
  22. AimFocusDecay = 0.7 // how much focus shrinks per second (.25 = 25% of size after 1 sec)
  23. AimFocusOffsetScale = 0.30 // controls accuracy when tracking to target (0 == perfect, should always be < 1)
  24. AimfocusInterval = 0.8 // how often focus is adjusted (smaller intervals means better movement tracking)
  25. WeaponPreference = none
  26. Cost = 0
  27. Difficulty = NORMAL
  28. VoicePitch = 100
  29. Skin = 0
  30. LookAngleMaxAccelNormal = 2000.0
  31. LookAngleStiffnessNormal = 100.0
  32. LookAngleDampingNormal = 25.0
  33. LookAngleMaxAccelAttacking = 3000.0
  34. LookAngleStiffnessAttacking = 150.0
  35. LookAngleDampingAttacking = 30.0
  36. End
  37.  
  38. //----------------------------------------------------------------------------
  39.  
  40. //
  41. // These templates inherit from Default and override with their values
  42. // The name of the template defines a type that is used by individual bot profiles
  43. //
  44.  
  45. // weapon preference templates
  46. Template Rifle
  47. WeaponPreference = m4a1
  48. WeaponPreference = ak47
  49. WeaponPreference = famas
  50. WeaponPreference = galilar
  51. WeaponPreference = mp7
  52. WeaponPreference = m4a1_silencer
  53. End
  54.  
  55. Template RifleT
  56. WeaponPreference = ak47
  57. WeaponPreference = m4a1
  58. WeaponPreference = galilar
  59. WeaponPreference = famas
  60. WeaponPreference = mp7
  61. End
  62.  
  63. Template Punch
  64. WeaponPreference = aug
  65. WeaponPreference = sg556
  66. WeaponPreference = famas
  67. WeaponPreference = galilar
  68. WeaponPreference = mp7
  69. End
  70.  
  71. Template PunchT
  72. WeaponPreference = aug
  73. WeaponPreference = sg556
  74. WeaponPreference = famas
  75. WeaponPreference = galilar
  76. WeaponPreference = mp7
  77. End
  78.  
  79. Template Sniper
  80. WeaponPreference = awp
  81. WeaponPreference = scar20
  82. WeaponPreference = g3sg1
  83. WeaponPreference = ssg08
  84. WeaponPreference = famas
  85. WeaponPreference = galilar
  86. WeaponPreference = mp7
  87. End
  88.  
  89. Template Power
  90. WeaponPreference = m249
  91. WeaponPreference = xm1014
  92. WeaponPreference = nova
  93. WeaponPreference = famas
  94. WeaponPreference = galilar
  95. WeaponPreference = mp7
  96. End
  97.  
  98. Template Shotgun
  99. WeaponPreference = xm1014
  100. WeaponPreference = nova
  101. WeaponPreference = famas
  102. WeaponPreference = galilar
  103. WeaponPreference = mp7
  104. End
  105.  
  106. Template Spray
  107. WeaponPreference = p90
  108. WeaponPreference = mp9
  109. WeaponPreference = mac10
  110. WeaponPreference = mp7
  111. End
  112.  
  113. Template Sneaky
  114. WeaponPreference = m4a1_silencer
  115. WeaponPreference = usp_silencer
  116. WeaponPreference = mp9
  117. WeaponPreference = p90
  118. End
  119.  
  120. Template SneakyT
  121. WeaponPreference = ak47
  122. WeaponPreference = glock
  123. WeaponPreference = mac10
  124.  
  125. End
  126.  
  127.  
  128. // skill templates
  129. Template Elite
  130. Skill = 110
  131. Rank = 1850
  132. Aggression = 100
  133. ReactionTime = 0.05
  134. Cost = 4
  135. Difficulty = EXPERT
  136. VoicePitch = 85
  137. AimFocusInitial = 0.5
  138. AimFocusDecay = 0.1
  139. AimFocusOffsetScale = 0.05
  140. AimfocusInterval = 0.05
  141. End
  142.  
  143. Template Expert
  144. Skill = 95
  145. Rank = 1700
  146. Aggression = 90
  147. ReactionTime = 0.10
  148. Cost = 4
  149. Difficulty = EXPERT
  150. VoicePitch = 88
  151. AimFocusInitial = 0.10
  152. AimFocusDecay = 0.15
  153. AimFocusOffsetScale = 0.10
  154. AimfocusInterval = 0.10
  155. End
  156.  
  157. Template VeryHard
  158. Skill = 80
  159. Rank = 1400
  160. Aggression = 70
  161. ReactionTime = 0.30
  162. Cost = 3
  163. Difficulty = HARD
  164. VoicePitch = 92
  165. AimFocusInitial = 5
  166. AimFocusDecay = 0.3
  167. AimFocusOffsetScale = 0.17
  168. AimfocusInterval = 0.30
  169. End
  170.  
  171. Template Hard
  172. Skill = 75
  173. Rank = 1300
  174. Aggression = 60
  175. ReactionTime = 0.40
  176. Cost = 3
  177. Difficulty = HARD
  178. VoicePitch = 94
  179. AimFocusInitial = 10
  180. AimFocusDecay = 0.4
  181. AimFocusOffsetScale = 0.20
  182. AimfocusInterval = 0.40
  183. End
  184.  
  185. Template Tough
  186. Skill = 60
  187. Rank = 1100
  188. Aggression = 45
  189. ReactionTime = 0.50
  190. AttackDelay = .70
  191. Cost = 2
  192. Difficulty = HARD
  193. VoicePitch = 96
  194. AimFocusInitial = 10
  195. AimFocusDecay = 0.4
  196. AimFocusOffsetScale = 0.25
  197. AimfocusInterval = 0.50
  198. End
  199.  
  200. Template Normal
  201. Skill = 50
  202. Rank = 1000
  203. Aggression = 30
  204. ReactionTime = 0.60
  205. AttackDelay = .80
  206. Cost = 2
  207. Difficulty = NORMAL
  208. AimFocusInitial = 12
  209. AimFocusDecay = 0.5
  210. AimFocusOffsetScale = 0.35
  211. AimfocusInterval = 0.60
  212. End
  213.  
  214. Template Fair
  215. Skill = 25
  216. Rank = 850
  217. Aggression = 15
  218. ReactionTime = 0.60
  219. AttackDelay = .90
  220. Cost = 1
  221. Difficulty = NORMAL
  222. VoicePitch = 105
  223. AimFocusInitial = 17
  224. AimFocusDecay = 0.6
  225. AimFocusOffsetScale = 0.5
  226. AimfocusInterval = 0.70
  227. End
  228.  
  229. Template Easy
  230. Skill = 5
  231. Rank = 600
  232. Aggression = 10
  233. ReactionTime = 0.60
  234. AttackDelay = .70
  235. Cost = 1
  236. Difficulty = EASY
  237. VoicePitch = 110
  238. AimFocusInitial = 20
  239. AimFocusDecay = 0.7
  240. AimFocusOffsetScale = 0.6
  241. AimfocusInterval = 0.70
  242. End
  243.  
  244. //----------------------------------------------------------------------------
  245. //
  246. // These are the individual bot profiles, which inherit first from
  247. // Default and then the specified Template(s), in order
  248. //
  249.  
  250.  
  251.  
  252. Elite+Rifle 3kilkphillps
  253. Skin = 1
  254. VoicePitch = 95
  255. End
  256.  
  257. Elite+Power i-Spray_And_Kill_People
  258. Skin = 2
  259. VoicePitch = 105
  260. End
  261.  
  262. Elite+Shotgun oofed
  263. Skin = 4
  264. VoicePitch = 84
  265. End
  266.  
  267. Elite+Punch Serial_Killer
  268. Skin = 4
  269. VoicePitch = 110
  270. End
  271.  
  272. Elite+Power Lenn
  273. Skin = 2
  274. VoicePitch = 80
  275. End
  276.  
  277. Elite+PunchT Banana
  278. Skin = 4
  279. VoicePitch = 90
  280. End
  281.  
  282. Elite+Sniper Global_Elite_User
  283. Skin = 2
  284. VoicePitch = 98
  285. End
  286.  
  287. Elite+RifleT A_Legendary_Eagle_Master
  288. Skin = 1
  289. VoicePitch = 96
  290. End
  291.  
  292. Elite+Sniper The_Noscoper
  293. Skin = 3
  294. VoicePitch = 105
  295. End
  296.  
  297. Elite+Sniper aggressive
  298. Skin = 3
  299. VoicePitch = 115
  300. End
  301.  
  302. Elite+RifleT oofeinsteiner
  303. Skin = 1
  304. VoicePitch = 84
  305. End
  306.  
  307. Elite+PunchT vSnipeX
  308. Skin = 4
  309. VoicePitch = 86
  310. End
  311.  
  312. Elite+Sniper legitclub
  313. Skin = 1
  314. VoicePitch = 95
  315. End
  316.  
  317. Elite+PowerT destroyer_of_all_terrorists
  318. Skin = 2
  319. VoicePitch = 105
  320. End
  321.  
  322. Elite+Shotgun nonebytheless
  323. Skin = 4
  324. VoicePitch = 84
  325. End
  326.  
  327. Elite+Punch intruder
  328. Skin = 4
  329. VoicePitch = 110
  330. End
  331.  
  332. Elite+Power snok
  333. Skin = 2
  334. VoicePitch = 80
  335. End
  336.  
  337. Elite+PunchT BlackRaven
  338. Skin = 4
  339. VoicePitch = 90
  340. End
  341.  
  342. Elite+Sniper The_Elites
  343. Skin = 2
  344. VoicePitch = 98
  345. End
  346.  
  347. Elite+RifleT sensei
  348. Skin = 1
  349. VoicePitch = 96
  350. End
  351.  
  352. Elite+Sniper Snipah
  353. Skin = 3
  354. VoicePitch = 105
  355. End
  356.  
  357. Elite+PunchT Under_Arrest!
  358. Skin = 3
  359. VoicePitch = 115
  360. End
  361.  
  362. Elite+RifleT unionstein
  363. Skin = 1
  364. VoicePitch = 84
  365. End
  366.  
  367. Elite+PunchT XoX
  368. Skin = 4
  369. VoicePitch = 86
  370. End
  371.  
  372. Elite+Spray Your_Personal_Sneaky_CT
  373. Skin = 4
  374. VoicePitch = 86
  375. End
  376.  
  377. Elite+Spray sneaky!!!!
  378. Skin = 4
  379. VoicePitch = 86
  380. End
  381.  
  382. Elite+Spray suspicious
  383. Skin = 4
  384. VoicePitch = 86
  385. End
  386.  
  387. Elite+Rifle THE_CYCLIST
  388. Skin = 1
  389. VoicePitch = 95
  390. End
  391.  
  392. Elite+Power de_machine_gunnar
  393. Skin = 2
  394. VoicePitch = 105
  395. End
  396.  
  397. Elite+Shotgun BOOM!
  398. Skin = 4
  399. VoicePitch = 84
  400. End
  401.  
  402. Elite+Punch alert
  403. Skin = 4
  404. VoicePitch = 110
  405. End
  406.  
  407. Elite+PowerT Full_Mag_Person
  408. Skin = 2
  409. VoicePitch = 80
  410. End
  411.  
  412. Elite+PunchT I_Love_Sub_Machine_guns
  413. Skin = 4
  414. VoicePitch = 90
  415. End
  416.  
  417. Elite+Sniper r3kted
  418. Skin = 2
  419. VoicePitch = 98
  420. End
  421.  
  422. Elite+RifleT your_particular_helper
  423. Skin = 1
  424. VoicePitch = 96
  425. End
  426.  
  427. Elite+Sniper headshotted
  428. Skin = 3
  429. VoicePitch = 105
  430. End
  431.  
  432. Elite+Spray terrifying_killer
  433. Skin = 3
  434. VoicePitch = 115
  435. End
  436.  
  437. Elite+RifleT unity
  438. Skin = 1
  439. VoicePitch = 84
  440. End
  441.  
  442. Elite+PunchT shasha
  443. Skin = 4
  444. VoicePitch = 86
  445. End
  446.  
  447.  
  448.  
  449. //----------------------------------------
  450.  
  451. Expert+RifleT InfamousFreak
  452. VoicePitch = 85
  453. End
  454.  
  455. Expert+Rifle haZe
  456. VoicePitch = 100
  457. End
  458.  
  459. Expert+Punch HopZY
  460. VoicePitch = 95
  461. End
  462.  
  463. Expert+Sniper fr0st_de_best
  464. Cost = 5
  465. VoicePitch = 115
  466. End
  467.  
  468. Expert+Shotgun Shroud
  469. VoicePitch = 87
  470. End
  471.  
  472. Expert+Rifle stunstick
  473. VoicePitch = 91
  474. End
  475.  
  476. Expert+Rifle Stunner
  477. VoicePitch = 101
  478. End
  479.  
  480. Expert+Sniper Epic
  481. VoicePitch = 112
  482. End
  483.  
  484. Expert+PunchT Cool_Guy
  485. VoicePitch = 99
  486. End
  487.  
  488. Expert+Sniper XxX_s1mple_XxX
  489. VoicePitch = 100
  490. End
  491.  
  492.  
  493. //----------------------------------------
  494.  
  495. Expert+RifleT Deadly
  496. VoicePitch = 85
  497. End
  498.  
  499. Expert+Rifle HaZe
  500. VoicePitch = 100
  501. End
  502.  
  503. Expert+Punch Hip
  504. VoicePitch = 95
  505. End
  506.  
  507. Expert+Sniper PCoder
  508. Cost = 5
  509. VoicePitch = 115
  510. End
  511.  
  512. Expert+Shotgun HiptonismHD
  513. VoicePitch = 87
  514. End
  515.  
  516. Expert+Rifle GrandpaTroll
  517. VoicePitch = 91
  518. End
  519.  
  520. Expert+Rifle ph4g3
  521. VoicePitch = 101
  522. End
  523.  
  524. Expert Legendary
  525. VoicePitch = 112
  526. End
  527.  
  528. Expert+PunchT Squad_Get_Hostiles!
  529. VoicePitch = 99
  530. End
  531.  
  532. Expert+Rifle shyguymask
  533. VoicePitch = 100
  534. End
  535.  
  536. //----------------------------------------
  537.  
  538. Expert+RifleT Expert_At_Rifles
  539. VoicePitch = 85
  540. End
  541.  
  542. Expert+Rifle Haste_it
  543. VoicePitch = 100
  544. End
  545.  
  546. Expert+Punch Kip
  547. VoicePitch = 95
  548. End
  549.  
  550. Expert+Sniper PSilent
  551. Cost = 5
  552. VoicePitch = 115
  553. End
  554.  
  555. Expert+Shotgun friendly
  556. VoicePitch = 87
  557. End
  558.  
  559. Expert+Spray next
  560. VoicePitch = 91
  561. End
  562.  
  563. Expert+Spray haha
  564. VoicePitch = 101
  565. End
  566.  
  567. Expert youareanidiot!
  568. VoicePitch = 112
  569. End
  570.  
  571. Expert+PunchT OneAtATime
  572. VoicePitch = 99
  573. End
  574.  
  575. Expert+Rifle de_sprayer
  576. VoicePitch = 100
  577. End
  578.  
  579. Elite+Spray try_find_me_lol
  580. Skin = 4
  581. VoicePitch = 86
  582. End
  583.  
  584. Elite+Spray xD
  585. Skin = 4
  586. VoicePitch = 86
  587. End
  588.  
  589. Elite+Spray the_sus_guy
  590. Skin = 4
  591. VoicePitch = 86
  592. End
  593.  
  594.  
  595. //----------------------------------------
  596.  
  597. VeryHard+Power ZanE
  598. Skin = 1
  599. VoicePitch = 110
  600. End
  601.  
  602. VeryHard+Sniper Silver_II
  603. Skin = 3
  604. VoicePitch = 93
  605. End
  606.  
  607. VeryHard+Rifle im_a_silver
  608. Skin = 2
  609. VoicePitch = 100
  610. End
  611.  
  612. VeryHard+RifleT bl1tz
  613. Skin = 4
  614. VoicePitch = 86
  615. End
  616.  
  617.  
  618. //----------------------------------------
  619.  
  620. Hard+Rifle Xigmarask
  621. Skin = 1
  622. VoicePitch = 100
  623. End
  624.  
  625. Hard+Rifle RaskO
  626. Skin = 1
  627. VoicePitch = 95
  628. End
  629.  
  630. Hard+RifleT IBunnyHopForLife
  631. Skin = 2
  632. VoicePitch = 90
  633. End
  634.  
  635. Hard+Spray Valve
  636. Skin = 4
  637. VoicePitch = 102
  638. End
  639.  
  640. Hard+Shotgun Legacy
  641. Skin = 1
  642. VoicePitch = 98
  643. End
  644.  
  645. Hard+RifleT XxX_NBK_XxX
  646. Skin = 2
  647. VoicePitch = 96
  648. End
  649.  
  650. Hard+Punch [Faze]-Amira
  651. Skin = 4
  652. VoicePitch = 103
  653. End
  654.  
  655. Hard+PunchT [Faze]-CiX-
  656. Skin = 1
  657. VoicePitch = 105
  658. End
  659.  
  660. Hard+Rifle [legitclub]-LuNaR
  661. Skin = 2
  662. VoicePitch = 97
  663. End
  664.  
  665. Hard+Rifle [Optic]-D.E.A
  666. Skin = 4
  667. VoicePitch = 84
  668. End
  669.  
  670. Hard+PunchT [Optic]-autist
  671. Skin = 1
  672. VoicePitch = 90
  673. End
  674.  
  675. Hard+Rifle [legitclub]-niceshot
  676. Skin = 2
  677. VoicePitch = 98
  678. End
  679.  
  680. Hard+Sniper [legitclub]-malariamike
  681. Skin = 3
  682. VoicePitch = 110
  683. End
  684.  
  685. Hard+Spray [cloud9]-epic
  686. Skin = 4
  687. VoicePitch = 103
  688. End
  689.  
  690. Hard+Rifle [cloud9]-autimatic
  691. Skin = 2
  692. VoicePitch = 110
  693. End
  694.  
  695. //----------------------------------------
  696.  
  697. Tough+Sniper smurfing_account
  698. Skin = 3
  699. VoicePitch = 120
  700. End
  701.  
  702. Tough+Sniper Master_Guardian_Elite
  703. Skin = 1
  704. VoicePitch = 95
  705. End
  706.  
  707. Tough+Rifle [INTZ]-de_suspect
  708. Skin = 1
  709. VoicePitch = 100
  710. End
  711.  
  712. Tough+Rifle [INTZ]-pros_the_suspect
  713. Skin = 2
  714. VoicePitch = 104
  715. End
  716.  
  717. Tough+RifleT [INTZ]-were_epic
  718. Skin = 4
  719. VoicePitch = 98
  720. End
  721.  
  722. Tough [eUnited]-unity
  723. Skin = 1
  724. VoicePitch = 100
  725. End
  726.  
  727. Tough+Rifle [eUnited]-fatality
  728. Skin = 2
  729. VoicePitch = 102
  730. End
  731.  
  732. Tough+Shotgun [eUnited]-space
  733. Skin = 4
  734. VoicePitch = 95
  735. End
  736.  
  737. Tough+Rifle [cloud9]-Stewie2k
  738. Skin = 1
  739. VoicePitch = 95
  740. End
  741.  
  742. Tough+RifleT [cloud9]-cajunb
  743. Skin = 2
  744. VoicePitch = 110
  745. End
  746.  
  747. Tough+Rifle [cloud9]-statistics
  748. Skin = 4
  749. VoicePitch = 112
  750. End
  751.  
  752. Tough XxX_Pro_XxX
  753. Skin = 1
  754. VoicePitch = 90
  755. End
  756.  
  757. Tough+Rifle Hi-Kevin
  758. Skin = 2
  759. VoicePitch = 115
  760. End
  761.  
  762. Tough+RifleT Never_A_Gold_Nova
  763. Skin = 4
  764. VoicePitch = 107
  765. End
  766.  
  767. Tough+Rifle Legendary-Eagle
  768. Skin = 2
  769. VoicePitch = 102
  770. End
  771.  
  772. Tough Supreme-Master-First-class
  773. Skin = 1
  774. VoicePitch = 98
  775. End
  776.  
  777. Tough+Rifle Global-Elite
  778. Skin = 2
  779. VoicePitch = 100
  780. End
  781.  
  782. Tough+RifleT master
  783. Skin = 4
  784. VoicePitch = 95
  785. End
  786.  
  787. Tough+Rifle sensei
  788. Skin = 1
  789. VoicePitch = 86
  790. End
  791.  
  792. Tough+RifleT mastered_the_skills
  793. Skin = 2
  794. VoicePitch = 100
  795. End
  796.  
  797. Tough+Rifle legit_4_u
  798. Skin = 4
  799. VoicePitch = 95
  800. End
  801.  
  802. //----------------------------------------
  803.  
  804. Normal+Rifle A_Normal_Player
  805. Skin = 1
  806. VoicePitch = 105
  807. End
  808.  
  809. Normal+PunchT Not_Bad
  810. Skin = 2
  811. VoicePitch = 90
  812. End
  813.  
  814. Normal Some_Silver
  815. Skin = 3
  816. VoicePitch = 100
  817. End
  818.  
  819. Normal i_<3_gold_nova
  820. Skin = 4
  821. VoicePitch = 107
  822. End
  823.  
  824. Normal+Rifle Road_to_Global_Elite
  825. Skin = 1
  826. VoicePitch = 104
  827. End
  828.  
  829. Normal Road_to_Legendary_Eagle
  830. Skin = 2
  831. VoicePitch = 110
  832. End
  833.  
  834. Normal+Sniper Road_to_Gold_Nova
  835. Skin = 2
  836. VoicePitch = 110
  837. End
  838.  
  839. Normal Major_Scientist
  840. Skin = 3
  841. VoicePitch = 95
  842. End
  843.  
  844. Normal Grant_Access
  845. Skin = 4
  846. VoicePitch = 112
  847. End
  848.  
  849. Normal _greg_
  850. Skin = 1
  851. VoicePitch = 111
  852. End
  853.  
  854. Normal+Sniper A_Recruit_A
  855. Skin = 3
  856. VoicePitch = 115
  857. End
  858.  
  859. Normal Jerry_Lack_Of_Experience
  860. Skin = 4
  861. VoicePitch = 112
  862. End
  863.  
  864. Normal Private_Squad
  865. Skin = 1
  866. VoicePitch = 96
  867. End
  868.  
  869. Normal Neith
  870. Skin = 2
  871. VoicePitch = 98
  872. End
  873.  
  874. Normal HowToGetGood?
  875. Skin = 4
  876. VoicePitch = 110
  877. End
  878.  
  879. Normal Too_Many_Hackers
  880. Skin = 1
  881. VoicePitch = 95
  882. End
  883.  
  884. Normal+RifleT dont_like_hackers
  885. Skin = 2
  886. VoicePitch = 100
  887. End
  888.  
  889. Normal i_liek_anime
  890. Skin = 4
  891. VoicePitch = 99
  892. End
  893.  
  894. Normal silver_vs_a_smurfer
  895. Skin = 3
  896. VoicePitch = 98
  897. End
  898.  
  899. Normal i_suck_at_csgo
  900. Skin = 1
  901. VoicePitch = 105
  902. End
  903.  
  904. Normal how_to_prefire
  905. Skin = 2
  906. VoicePitch = 115
  907. End
  908.  
  909. Normal how_not_to_prefire
  910. Skin = 3
  911. VoicePitch = 110
  912. End
  913.  
  914. Normal aim_assistance_for_cesego
  915. Skin = 4
  916. VoicePitch = 92
  917. End
  918.  
  919. //----------------------------------------
  920.  
  921. Fair im_nice
  922. VoicePitch = 110
  923. End
  924.  
  925. Fair cool_guy
  926. VoicePitch = 100
  927. End
  928.  
  929. Fair i0like0people
  930. VoicePitch = 99
  931. End
  932.  
  933. Fair+Spray neh_he
  934. VoicePitch = 120
  935. End
  936.  
  937. Fair quang
  938. VoicePitch = 111
  939. End
  940.  
  941. Fair dustin
  942. VoicePitch = 98
  943. End
  944.  
  945. Fair flores
  946. VoicePitch = 112
  947. End
  948.  
  949. Fair hellos
  950. VoicePitch = 90
  951. End
  952.  
  953. Fair sollehs
  954. VoicePitch = 120
  955. End
  956.  
  957. Fair Irving_A_Life
  958. VoicePitch = 118
  959. End
  960.  
  961. Fair i_havenolife
  962. VoicePitch = 116
  963. End
  964.  
  965. Fair+Spray fair_person
  966. VoicePitch = 112
  967. End
  968.  
  969. Fair Joshua
  970. VoicePitch = 114
  971. End
  972.  
  973. Fair Martin_de_propsurfer
  974. VoicePitch = 110
  975. End
  976.  
  977. Fair nice_guy_no_hacking
  978. VoicePitch = 98
  979. End
  980.  
  981. Fair never_nice?
  982. VoicePitch = 92
  983. End
  984.  
  985. Fair the_fair_guy
  986. VoicePitch = 113
  987. End
  988.  
  989. Fair where_is_shroud
  990. VoicePitch = 114
  991. End
  992.  
  993. Fair where_is_kainoa
  994. VoicePitch = 115
  995. End
  996.  
  997. Fair where_is_maunaloa
  998. VoicePitch = 100
  999. End
  1000.  
  1001. Fair Hawaii
  1002. VoicePitch = 102
  1003. End
  1004.  
  1005. Fair Alaska
  1006. VoicePitch = 98
  1007. End
  1008.  
  1009. Fair United_States_Of_America
  1010. VoicePitch = 96
  1011. End
  1012.  
  1013. Fair GoodGame_Productions
  1014. VoicePitch = 94
  1015. End
  1016.  
  1017. //----------------------------------------
  1018.  
  1019. Easy dylanbgamer_productions
  1020. VoicePitch = 100
  1021. End
  1022.  
  1023. Easy smurfer
  1024. VoicePitch = 110
  1025. End
  1026.  
  1027. Easy you_guys_can_beat_me
  1028. VoicePitch = 120
  1029. End
  1030.  
  1031. Easy i_hate_silver
  1032. VoicePitch = 99
  1033. End
  1034.  
  1035. Easy why_am_i_a_silver
  1036. VoicePitch = 120
  1037. End
  1038.  
  1039. Easy sucks_to_be_ban
  1040. VoicePitch = 125
  1041. End
  1042.  
  1043. Easy recruiter
  1044. VoicePitch = 110
  1045. End
  1046.  
  1047. Easy aimer
  1048. VoicePitch = 100
  1049. End
  1050.  
  1051. Easy hackin_for_Fun
  1052. VoicePitch = 112
  1053. End
  1054.  
  1055. Easy how_toud?
  1056. VoicePitch = 121
  1057. End
  1058.  
  1059. Easy banana
  1060. VoicePitch = 99
  1061. End
  1062.  
  1063. Easy nainoa
  1064. VoicePitch = 119
  1065. End
  1066.  
  1067. Easy shy_ashell
  1068. VoicePitch = 118
  1069. End
  1070.  
  1071. Easy a_noob
  1072. VoicePitch = 117
  1073. End
  1074.  
  1075. Easy a_beginner
  1076. VoicePitch = 116
  1077. End
  1078.  
  1079. Easy Newcomer
  1080. VoicePitch = 115
  1081. End
  1082.  
  1083. Easy Beginner
  1084. VoicePitch = 114
  1085. End
  1086.  
  1087. Easy new_to_csgo
  1088. VoicePitch = 112
  1089. End
  1090.  
  1091. Easy cant_wait_oplay
  1092. VoicePitch = 111
  1093. End
  1094.  
  1095. Easy road_to_rank_2
  1096. VoicePitch = 105
  1097. End
  1098.  
  1099. Easy competive??
  1100. VoicePitch = 110
  1101. End
  1102.  
  1103. Easy matchmaking_mm
  1104. VoicePitch = 109
  1105. End
  1106.  
  1107. Easy too_easy
  1108. VoicePitch = 108
  1109. End
  1110.  
  1111. Easy casual_is_fine
  1112. VoicePitch = 122
  1113. End
  1114.  
  1115. Easy a_lot_of_names
  1116. VoicePitch = 120
  1117. End
  1118.  
  1119. Easy what
  1120. VoicePitch = 125
  1121. End
  1122.  
  1123. Easy i_like_bots
  1124. VoicePitch = 95
  1125. End
  1126.  
  1127. Easy A_User
  1128. VoicePitch = 92
  1129. End
  1130.  
  1131. Easy Never_A_Bot
  1132. VoicePitch = 100
  1133. End
  1134.  
  1135. Easy Ulysses_ULX_cornet
  1136. VoicePitch = 102
  1137. End
  1138.  
  1139. Easy Ulysses_ULX_tuba
  1140. VoicePitch = 104
  1141. End
  1142.  
  1143. Easy Ulysses_ULX_sax
  1144. VoicePitch = 108
  1145. End
  1146.  
  1147. Easy Wally_the_robot
  1148. VoicePitch = 95
  1149. End
  1150.  
  1151. Easy Yisney_ilovewhentheyrun
  1152. VoicePitch = 100
  1153. End
  1154.  
  1155. Easy Yesley_The_yes
  1156. VoicePitch = 120
  1157. End
  1158.  
  1159. Easy Yanni_The_epic
  1160. VoicePitch = 112
  1161. End
  1162.  
  1163. Easy Yogi_Onsumi
  1164. VoicePitch = 99
  1165. End
  1166.  
  1167. Easy Yuri_Japaense
  1168. VoicePitch = 110
  1169. End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement