Advertisement
Guest User

Jackarnigi's Harder Bots

a guest
Jun 25th, 2018
10,873
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.66 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. // 2017: NEW BOT EDITS, PROFILES, NAMES, and SKILLS V1.5 BY dDefinder
  9. // New bot names, skill and weapon trees. Aim and movement for bots should now simulate keyboard and mouse and not a controller.
  10. // 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.
  11. // Overall difficultly increase for all bot skills.
  12. // v1.1: Added new bot skill, minor aim speed increase, removed duplicate name, switch profiles of certain bots.
  13. // 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.
  14. // v1.2: Added buy limit for higher leveled bots (saving)
  15. // 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.
  16. // v1.4: Tweaked aggression and teamwork for high level bots. Minor profile changes. Removed a duplicate name. Fixed mission skill templates.
  17. // 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
  18. //----------------------------------------------------------------------------
  19.  
  20. //
  21. // All profiles begin with this data and overwrite their own
  22. //
  23. Default
  24. Skill = 50
  25. Aggression = 50
  26. ReactionTime = 0.3
  27. AttackDelay = 0
  28. Teamwork = 75
  29. AimFocusInitial = 20 // initial focus spread in degrees (from desired center)
  30. AimFocusDecay = 0.7 // how much focus shrinks per second (.25 = 25% of size after 1 sec)
  31. AimFocusOffsetScale = 0.30 // controls accuracy when tracking to target (0 == perfect, should always be < 1)
  32. AimfocusInterval = 0.8 // how often focus is adjusted (smaller intervals means better movement tracking)
  33. WeaponPreference = vest
  34. Cost = 0
  35. Difficulty = NORMAL
  36. VoicePitch = 100
  37. Skin = 0
  38. LookAngleMaxAccelNormal = 20000.0
  39. LookAngleStiffnessNormal = 1000.0
  40. LookAngleDampingNormal = 100.0
  41. LookAngleMaxAccelAttacking = 20000.0
  42. LookAngleStiffnessAttacking = 1000.0
  43. LookAngleDampingAttacking = 100.0
  44. End
  45.  
  46. //----------------------------------------------------------------------------
  47.  
  48. //
  49. // These templates inherit from Default and override with their values
  50. // The name of the template defines a type that is used by individual bot profiles
  51. //
  52.  
  53. // weapon preference templates
  54.  
  55. Template SniperPro
  56. WeaponPreference = awp
  57. WeaponPreference = m4a1
  58. WeaponPreference = ak47
  59. WeaponPreference = vest
  60. //WeaponPreference = fiveseven
  61. //WeaponPreference = tec9
  62. End
  63.  
  64. Template RiflePro
  65. WeaponPreference = ak47
  66. WeaponPreference = m4a1
  67. WeaponPreference = vest
  68. WeaponPreference = famas
  69. WeaponPreference = galilar
  70. //WeaponPreference = fiveseven
  71. //WeaponPreference = tec9
  72. End
  73.  
  74. Template Rifle
  75. WeaponPreference = m4a1
  76. WeaponPreference = ak47
  77. WeaponPreference = famas
  78. WeaponPreference = galilar
  79. //WeaponPreference = tec9
  80. End
  81.  
  82. Template RifleT
  83. WeaponPreference = ak47
  84. WeaponPreference = m4a1
  85. WeaponPreference = galilar
  86. WeaponPreference = famas
  87. //WeaponPreference = tec9
  88. End
  89.  
  90. Template Punch
  91. WeaponPreference = aug
  92. WeaponPreference = sg556
  93. WeaponPreference = famas
  94. WeaponPreference = galilar
  95. WeaponPreference = ump45
  96. //WeaponPreference = deagle
  97. End
  98.  
  99. Template PunchT
  100. WeaponPreference = sg556
  101. WeaponPreference = aug
  102. WeaponPreference = galilar
  103. WeaponPreference = famas
  104. WeaponPreference = ump45
  105. //WeaponPreference = deagle
  106. End
  107.  
  108. Template Sniper
  109. WeaponPreference = awp
  110. WeaponPreference = scout
  111. WeaponPreference = famas
  112. WeaponPreference = galilar
  113. WeaponPreference = mp7
  114. //WeaponPreference = deagle
  115. End
  116.  
  117. Template Power
  118. WeaponPreference = m249
  119. WeaponPreference = xm1014
  120. WeaponPreference = nova
  121. WeaponPreference = mp9
  122. WeaponPreference = mac10
  123. //WeaponPreference = deagle
  124. Aggression = 100
  125. End
  126.  
  127. Template Shotgun
  128. WeaponPreference = mag7
  129. WeaponPreference = xm1014
  130. WeaponPreference = nova
  131. WeaponPreference = mp7
  132. //WeaponPreference = elite
  133. //WeaponPreference = fiveseven
  134. End
  135.  
  136. Template Spray
  137. WeaponPreference = p90
  138. WeaponPreference = mp9
  139. WeaponPreference = mac10
  140. WeaponPreference = elite
  141. //WeaponPreference = fiveseven
  142. End
  143.  
  144. Template AutoSniper
  145. WeaponPreference = g3sg1
  146. WeaponPreference = scar20
  147. WeaponPreference = galilar
  148. WeaponPreference = famas
  149. WeaponPreference = mp7
  150. End
  151.  
  152. Template AutoSniperT
  153. WeaponPreference = scar20
  154. WeaponPreference = g3sg1
  155. WeaponPreference = famas
  156. WeaponPreference = galilar
  157. WeaponPreference = mp7
  158. End
  159.  
  160. Template OtherWeapons
  161. WeaponPreference = negev
  162. WeaponPreference = sawedoff
  163. WeaponPreference = bizon
  164. //WeaponPreference = fn57
  165. //WeaponPreference = elite
  166. End
  167.  
  168. // skill templates
  169. Template EliteAwp
  170. Skill = 100
  171. Rank = 2001
  172. Cost = 3200
  173. Aggression = 100
  174. AttackDelay = 0
  175. Difficulty = EXPERT+HARD
  176. ReactionTime = 0.0
  177. VoicePitch = 100
  178. AimFocusInitial = 0.0
  179. AimFocusDecay = 0.01
  180. AimFocusOffsetScale = 0.0
  181. AimfocusInterval = 0.0
  182. End
  183.  
  184. Template ElitePassive
  185. Skill = 100
  186. Rank = 2000
  187. Cost = 3200
  188. Aggression = 100
  189. AttackDelay = 0
  190. Teamwork = 100
  191. Difficulty = EXPERT+HARD
  192. ReactionTime = 0.0
  193. VoicePitch = 95
  194. AimFocusInitial = 0.0
  195. AimFocusDecay = 0.01
  196. AimFocusOffsetScale = 0.0
  197. AimfocusInterval = 0.00
  198. End
  199.  
  200. Template Elite
  201. Skill = 100
  202. Rank = 2000
  203. Cost = 3200
  204. Aggression = 100
  205. Teamwork = 100
  206. AttackDelay = 0
  207. ReactionTime = 0.0
  208. Difficulty = EXPERT+HARD
  209. VoicePitch = 85
  210. AimFocusInitial = 0.0
  211. AimFocusDecay = 0.01
  212. AimFocusOffsetScale = 0.0
  213. AimfocusInterval = 0.0
  214. End
  215.  
  216. Template ExpertAwp
  217. Skill = 97
  218. Rank = 1700
  219. Cost = 2400
  220. Aggression = 55
  221. AttackDelay = 0
  222. Difficulty = NORMAL+HARD+EASY
  223. ReactionTime = 0.15
  224. VoicePitch = 70
  225. AimFocusInitial = 0.8
  226. AimFocusDecay = 0.1
  227. AimFocusOffsetScale = 0.03
  228. AimfocusInterval = 0.04
  229. End
  230.  
  231. Template ExpertPassive
  232. Skill = 97
  233. Rank = 1650
  234. Cost = 2400
  235. Aggression = 25
  236. AttackDelay = 0
  237. Teamwork = 35
  238. Difficulty = NORMAL+HARD
  239. ReactionTime = 0.2
  240. VoicePitch = 70
  241. AimFocusInitial = 1.2
  242. AimFocusDecay = 0.1
  243. AimFocusOffsetScale = 0.04
  244. AimfocusInterval = 0.08
  245. End
  246.  
  247. Template Expert
  248. Skill = 97
  249. Rank = 1600
  250. Cost = 2400
  251. Aggression = 85
  252. Teamwork = 100
  253. AttackDelay = 0
  254. ReactionTime = 0.2
  255. Difficulty = HARD+NORMAL
  256. VoicePitch = 88
  257. AimFocusInitial = 1.2
  258. AimFocusDecay = 0.1
  259. AimFocusOffsetScale = 0.04
  260. AimfocusInterval = 0.08
  261. End
  262.  
  263. Template VeryHard
  264. Skill = 92
  265. Rank = 1400
  266. Cost = 1200
  267. Aggression = 75
  268. AttackDelay = 0
  269. ReactionTime = 0.25
  270. Difficulty = NORMAL+HARD
  271. VoicePitch = 92
  272. AimFocusInitial = 1.8
  273. AimFocusDecay = 0.15
  274. AimFocusOffsetScale = 0.08
  275. AimfocusInterval = 0.2
  276. End
  277.  
  278. Template VeryHardARG
  279. Skill = 92
  280. Rank = 1400
  281. Aggression = 100
  282. AttackDelay = 0
  283. ReactionTime = 0.25
  284. Difficulty = NORMAL+HARD
  285. VoicePitch = 92
  286. AimFocusInitial = 1.8
  287. AimFocusDecay = 0.18
  288. AimFocusOffsetScale = 0.08
  289. AimfocusInterval = 0.2
  290. End
  291.  
  292. Template Hard
  293. Skill = 87
  294. Rank = 1300
  295. Cost = 1200
  296. Aggression = 70
  297. AttackDelay = 0
  298. ReactionTime = 0.3
  299. Teamwork = 65
  300. Difficulty = HARD
  301. VoicePitch = 94
  302. AimFocusInitial = 2.2
  303. AimFocusDecay = 0.18
  304. AimFocusOffsetScale = 0.1
  305. AimfocusInterval = 0.3
  306. End
  307.  
  308. Template HardARG
  309. Skill = 87
  310. Rank = 1300
  311. Aggression = 100
  312. AttackDelay = 0
  313. ReactionTime = 0.3
  314. Teamwork = 60
  315. Difficulty = HARD
  316. VoicePitch = 94
  317. AimFocusInitial = 2.2
  318. AimFocusDecay = 0.16
  319. AimFocusOffsetScale = 0.1
  320. AimfocusInterval = 0.28
  321. End
  322.  
  323. Template Tough
  324. Skill = 84
  325. Rank = 1100
  326. Aggression = 50
  327. AttackDelay = 0
  328. ReactionTime = 0.35
  329. Teamwork = 55
  330. Difficulty = NORMAL
  331. VoicePitch = 96
  332. AimFocusInitial = 5
  333. AimFocusDecay = 0.65
  334. AimFocusOffsetScale = 0.12
  335. AimfocusInterval = 0.35
  336. End
  337.  
  338. Template ToughARG
  339. Skill = 84
  340. Rank = 1100
  341. Aggression = 100
  342. AttackDelay = 0
  343. ReactionTime = 0.35
  344. Teamwork = 50
  345. Difficulty = NORMAL
  346. VoicePitch = 96
  347. AimFocusInitial = 5
  348. AimFocusDecay = 0.62
  349. AimFocusOffsetScale = 0.12
  350. AimfocusInterval = 0.35
  351. End
  352.  
  353. Template ToughSNIPER
  354. Skill = 84
  355. Rank = 1100
  356. Aggression = 25
  357. AttackDelay = 0
  358. ReactionTime = 0.35
  359. Teamwork = 50
  360. Difficulty = NORMAL
  361. VoicePitch = 96
  362. AimFocusInitial = 2
  363. AimFocusDecay = 0.2
  364. AimFocusOffsetScale = 0.12
  365. AimfocusInterval = 0.25
  366. End
  367.  
  368. Template Normal
  369. Skill = 75
  370. Rank = 1000
  371. Aggression = 30
  372. Teamwork = 45
  373. AttackDelay = 0
  374. ReactionTime = 0.5
  375. Difficulty = NORMAL
  376. AimFocusInitial = 6
  377. AimFocusDecay = 0.6
  378. AimFocusOffsetScale = 0.25
  379. AimfocusInterval = 0.60
  380. End
  381.  
  382. Template NormalARG
  383. Skill = 75
  384. Rank = 1000
  385. Aggression = 100
  386. Teamwork = 45
  387. AttackDelay = 0
  388. ReactionTime = 0.5
  389. Difficulty = NORMAL
  390. AimFocusInitial = 6
  391. AimFocusDecay = 0.58
  392. AimFocusOffsetScale = 0.25
  393. AimfocusInterval = 0.57
  394. End
  395.  
  396. Template NormalSNIPER
  397. Skill = 75
  398. Rank = 1000
  399. Aggression = 15
  400. Teamwork = 25
  401. AttackDelay = 0
  402. ReactionTime = 0.5
  403. Difficulty = NORMAL
  404. AimFocusInitial = 3
  405. AimFocusDecay = 0.28
  406. AimFocusOffsetScale = 0.1
  407. AimfocusInterval = 0.3
  408. End
  409.  
  410. Template Fair
  411. Skill = 25
  412. Rank = 850
  413. Aggression = 20
  414. Teamwork = 35
  415. ReactionTime = 0.65
  416. AttackDelay = 0.6
  417. Difficulty = EASY
  418. VoicePitch = 105
  419. AimFocusInitial = 15
  420. AimFocusDecay = 0.7
  421. AimFocusOffsetScale = 0.28
  422. AimfocusInterval = 0.70
  423. End
  424.  
  425. Template FairSNIPER
  426. Skill = 25
  427. Rank = 850
  428. Aggression = 20
  429. Teamwork = 35
  430. ReactionTime = 0.65
  431. AttackDelay = 0.6
  432. Difficulty = EASY
  433. VoicePitch = 105
  434. AimFocusInitial = 4
  435. AimFocusDecay = 0.3
  436. AimFocusOffsetScale = 0.15
  437. AimfocusInterval = 0.55
  438. End
  439.  
  440. Template Easy
  441. Skill = 0
  442. Rank = 600
  443. Teamwork = 25
  444. Aggression = 10
  445. ReactionTime = 0.70
  446. AttackDelay = 0.8
  447. Difficulty = EASY
  448. VoicePitch = 110
  449. AimFocusInitial = 20
  450. AimFocusDecay = 0.8
  451. AimFocusOffsetScale = 0.30
  452. AimfocusInterval = 0.8
  453. End
  454.  
  455. //----------------------------------------------------------------------------
  456. //
  457. // These are the individual bot profiles, which inherit first from
  458. // Default and then the specified Template(s), in order
  459. //
  460.  
  461.  
  462. EliteAwp+SniperPro "Snax"
  463. VoicePitch = 95
  464. Difficulty = EXPERT+NORMAL+HARD+EASY
  465. End
  466.  
  467. EliteAwp+SniperPro "s1mple"
  468. VoicePitch = 95
  469. Difficulty = EXPERT+NORMAL+HARD+EASY
  470. End
  471.  
  472. EliteAwp+SniperPro "GuardiaN"
  473. VoicePitch = 95
  474. Difficulty = EXPERT+NORMAL+HARD+EASY
  475. End
  476.  
  477. EliteAwp+SniperPro "kennyS"
  478. VoicePitch = 105
  479. Difficulty = EXPERT+NORMAL+HARD+EASY
  480. End
  481.  
  482. EliteAwp+SniperPro "coldzera"
  483. Difficulty = EXPERT+NORMAL+HARD
  484. VoicePitch = 84
  485. End
  486.  
  487. EliteAwp+SniperPro "FalleN"
  488. Difficulty = EXPERT+NORMAL+HARD
  489. VoicePitch = 110
  490. End
  491.  
  492. ElitePassive+RiflePro "N0thing"
  493. Difficulty = EXPERT+NORMAL+HARD
  494. VoicePitch = 80
  495. End
  496.  
  497. ElitePassive+RiflePro "Shox"
  498. Difficulty = EXPERT+NORMAL+HARD
  499. VoicePitch = 80
  500. End
  501.  
  502. ElitePassive+RiflePro "Pimp"
  503. Difficulty = EXPERT+NORMAL+HARD
  504. VoicePitch = 80
  505. End
  506.  
  507. ElitePassive+RiflePro "NiKo"
  508. Difficulty = EXPERT+NORMAL+HARD
  509. VoicePitch = 80
  510. End
  511.  
  512. ElitePassive+RiflePro "fer"
  513. Difficulty = EXPERT+NORMAL+HARD
  514. VoicePitch = 90
  515. End
  516.  
  517. ElitePassive+RiflePro olofmeister
  518. Difficulty = EXPERT+NORMAL+HARD
  519. VoicePitch = 96
  520. End
  521.  
  522. Elite+RiflePro "rain"
  523. Difficulty = EXPERT+NORMAL+HARD
  524. VoicePitch = 105
  525. End
  526.  
  527. EliteAwp+SniperPro "dev1ce"
  528. Difficulty = EXPERT+NORMAL+HARD
  529. VoicePitch = 80
  530. End
  531.  
  532. Elite+RiflePro Stewie2K
  533. Difficulty = EXPERT+NORMAL+HARD
  534. VoicePitch = 86
  535. End
  536.  
  537. Elite+RiflePro Autimatic
  538. Difficulty = EXPERT+NORMAL+HARD
  539. VoicePitch = 80
  540. End
  541.  
  542. ElitePassive+RiflePro "shroud"
  543. Difficulty = EXPERT+NORMAL+HARD
  544. VoicePitch = 90
  545. End
  546.  
  547. Elite+RiflePro "k0nfig"
  548. Difficulty = EXPERT+NORMAL+HARD
  549. VoicePitch = 98
  550. End
  551.  
  552. ElitePassive+RiflePro "BnTet"
  553. Difficulty = EXPERT+NORMAL+HARD
  554. VoicePitch = 110
  555. End
  556.  
  557. EliteAwp+SniperPro "xccurate"
  558. Difficulty = EXPERT+NORMAL+HARD
  559. VoicePitch = 80
  560. End
  561.  
  562. EliteAwp+SniperPro "oskar"
  563. Difficulty = EXPERT+NORMAL+HARD
  564. VoicePitch = 80
  565. End
  566.  
  567. EliteAwp+SniperPro "Skadoodle"
  568. Difficulty = EXPERT+NORMAL+HARD
  569. VoicePitch = 80
  570. End
  571.  
  572. ElitePassive+RiflePro "pashaBiceps"
  573. Difficulty = EXPERT+NORMAL+HARD
  574. VoicePitch = 112
  575. End
  576.  
  577. Elite+RiflePro "NBK"
  578. Difficulty = EXPERT+NORMAL+HARD
  579. VoicePitch = 88
  580. End
  581.  
  582. Elite+RiflePro "ScreaM"
  583. Difficulty = EXPERT+NORMAL+HARD
  584. VoicePitch = 88
  585. End
  586.  
  587. Elite+RiflePro "GeT_RiGhT"
  588. Difficulty = EXPERT+NORMAL+HARD
  589. VoicePitch = 88
  590. End
  591.  
  592. Elite+RiflePro "tarik"
  593. Difficulty = EXPERT+NORMAL+HARD
  594. VoicePitch = 88
  595. End
  596.  
  597. ElitePassive+RiflePro "RUSH"
  598. Difficulty = EXPERT+NORMAL+HARD
  599. VoicePitch = 110
  600. End
  601.  
  602. //----------------------------------------
  603.  
  604. ExpertPassive+RiflePro [RAM]Tuna_Taco_2
  605. VoicePitch = 81
  606. End
  607.  
  608. ExpertPassive+RiflePro [RAM]MaNgLeR
  609. VoicePitch = 86
  610. End
  611.  
  612. ExpertPassive+RiflePro "[RAM]The Admin"
  613. VoicePitch = 85
  614. End
  615.  
  616. Expert+RiflePro [RAM]*USMC*RAZOR
  617. VoicePitch = 100
  618. End
  619.  
  620. ExpertPassive+RiflePro [RAM]KiLLconey
  621. VoicePitch = 95
  622. End
  623.  
  624. ExpertAwp+SniperPro [RAM]FaLLouT
  625. VoicePitch = 115
  626. End
  627.  
  628. ExpertAwp+SniperPro [OPM]OveRSlaP
  629. VoicePitch = 87
  630. End
  631.  
  632. Expert+RiflePro [OPM]bre@kd0wn
  633. VoicePitch = 91
  634. End
  635.  
  636. Expert+RiflePro [OPM]Trend_Tracker
  637. VoicePitch = 101
  638. End
  639.  
  640. Expert+RiflePro [OPM]bLaCkSuRgEoN
  641. VoicePitch = 99
  642. End
  643.  
  644. ExpertPassive+RiflePro [OPM]aLiNiMNoN
  645. VoicePitch = 100
  646. End
  647.  
  648. ExpertAwp+AutoSniperT "WE NEED A MEDIC"
  649. VoicePitch = 80
  650. End
  651.  
  652. ExpertAwp+Punch RippedPants
  653. VoicePitch = 70
  654. End
  655.  
  656. //----------------------------------------
  657.  
  658. VeryHard+Power deathviper168
  659. VoicePitch = 110
  660. End
  661.  
  662. VeryHard+Sniper "Quci-kSho-t"
  663. VoicePitch = 93
  664. End
  665.  
  666. VeryHard+AutoSniper DaMafiA
  667. VoicePitch = 98
  668. End
  669.  
  670. VeryHardARG+Rifle TakeOFF
  671. VoicePitch = 100
  672. End
  673.  
  674. VeryHardARG+RifleT aK-MAsta
  675. VoicePitch = 86
  676. End
  677.  
  678. VeryHard+Rifle "COUAL GAMING * RoundHouse"
  679. VoicePitch = 100
  680. End
  681.  
  682. VeryHardARG+RifleT "COUAL GAMING * LeftKick"
  683. VoicePitch = 86
  684. End
  685.  
  686. VeryHard+RifleT "COUAL GAMING * SpinKICK"
  687. VoicePitch = 86
  688. End
  689.  
  690.  
  691. //----------------------------------------
  692.  
  693. HardARG+Rifle Datastream-Cowboy
  694. VoicePitch = 95
  695. End
  696.  
  697. Hard+RifleT [TsT]Noe
  698. VoicePitch = 90
  699. End
  700.  
  701. Hard+RiflePro [TsT]NeSSt
  702. VoicePitch = 110
  703. End
  704.  
  705. Hard+AutoSniper [TsT]TheSiS
  706. VoicePitch = 95
  707. End
  708.  
  709. HardARG+RiflePro XXxxxTemeperaxxxXX
  710. VoicePitch = 81
  711. End
  712.  
  713. Hard+Spray [TsT]Praynspray
  714. VoicePitch = 102
  715. End
  716.  
  717. Hard+Shotgun [sh3t]inyafAcE
  718. VoicePitch = 98
  719. End
  720.  
  721. HardARG+RifleT "Man Simulator"
  722. VoicePitch = 96
  723. End
  724.  
  725. Hard+OtherWeapons sperm@zoid
  726. VoicePitch = 103
  727. End
  728.  
  729. HardARG+Punch [tomg]Rangersmith
  730. VoicePitch = 105
  731. End
  732.  
  733. Hard+Rifle Mark-Z-man
  734. VoicePitch = 97
  735. End
  736.  
  737. Hard+Rifle HarDEbAlLa849
  738. VoicePitch = 84
  739. End
  740.  
  741. Hard+PunchT S0ren-Jensen
  742. VoicePitch = 90
  743. End
  744.  
  745. HardARG+Rifle [nARc]lEEt-poSeR
  746. VoicePitch = 98
  747. End
  748.  
  749. Hard+Sniper Nothi3naTa11
  750. VoicePitch = 110
  751. End
  752.  
  753. Hard+Spray [SPI]LastMAnStanDINg
  754. VoicePitch = 103
  755. End
  756.  
  757. HardARG+PunchT ThunderRabbiT01
  758. VoicePitch = 110
  759. End
  760.  
  761. //----------------------------------------
  762.  
  763. ToughSNIPER+Sniper NEedzNoONE
  764. VoicePitch = 120
  765. End
  766.  
  767. ToughSNIPER+AutoSniper xXCooL_Master_99Xx
  768. VoicePitch = 121
  769. End
  770.  
  771. Tough+Rifle "Manilla Folder"
  772. VoicePitch = 100
  773. End
  774.  
  775. Tough+OtherWeapons "Wah-Wah Effect"
  776. VoicePitch = 104
  777. End
  778.  
  779. Tough+RifleT xxXXPoblerXXxx
  780. VoicePitch = 98
  781. End
  782.  
  783. Tough+Spray el-ass
  784. VoicePitch = 100
  785. End
  786.  
  787. Tough+Rifle L337Bunny
  788. VoicePitch = 102
  789. End
  790.  
  791. Tough+Shotgun FOowitAshotGun
  792. VoicePitch = 95
  793. End
  794.  
  795. Tough+OtherWeapons "-FaK- .sLipsTaR.*"
  796. VoicePitch = 95
  797. End
  798.  
  799. ToughARG+RifleT ShadoMagi
  800. VoicePitch = 110
  801. End
  802.  
  803. Tough+Rifle "z@@L"
  804. VoicePitch = 112
  805. End
  806.  
  807. ToughARG+Shotgun pwnisnotaword
  808. VoicePitch = 90
  809. End
  810.  
  811. ToughARG+Rifle [TsT]weakling
  812. VoicePitch = 115
  813. End
  814.  
  815. Tough+OtherWeapons Mdoziaa
  816. VoicePitch = 107
  817. End
  818.  
  819. ToughARG+Rifle "Tongue of the Fatman"
  820. VoicePitch = 102
  821. End
  822.  
  823. ToughARG+RifleT [XeT]X-Tender
  824. VoicePitch = 98
  825. End
  826.  
  827. Tough+Rifle [XeT]CorTeX
  828. VoicePitch = 100
  829. End
  830.  
  831. Tough+RifleT [XeT]MeaN
  832. VoicePitch = 95
  833. End
  834.  
  835. ToughARG+Shotgun [XeT]Steeefan
  836. VoicePitch = 86
  837. End
  838.  
  839. Tough+PunchT Warbeast
  840. VoicePitch = 100
  841. End
  842.  
  843. Tough+Rifle [[tiMmaH!]]iPooN!
  844. VoicePitch = 95
  845. End
  846.  
  847. //----------------------------------------
  848.  
  849. Normal+Rifle "Crouching Camper Hidden Noob"
  850. VoicePitch = 105
  851. End
  852.  
  853. NormalARG+PunchT "Love Blister"
  854. VoicePitch = 90
  855. End
  856.  
  857. Normal+RiflePro [BiE]WormEateR
  858. VoicePitch = 105
  859. End
  860.  
  861. Normal+RiflePro "[BiE]El Terrible"
  862. VoicePitch = 90
  863. End
  864.  
  865. Normal+Spray "Serial killer"
  866. VoicePitch = 100
  867. End
  868.  
  869. NormalSNIPER+AutoSniper Selcuk87
  870. VoicePitch = 107
  871. End
  872.  
  873. NormalSNIPER+AutoSniperT Shader_90
  874. VoicePitch = 104
  875. End
  876.  
  877. NormalARG+RifleT WerX
  878. VoicePitch = 110
  879. End
  880.  
  881. NormalARG+Punch "Sidewinder(29)"
  882. VoicePitch = 95
  883. End
  884.  
  885. NormalARG+OtherWeapons Outbacks
  886. VoicePitch = 112
  887. End
  888.  
  889. NormalSNIPER+AutoSniperT Tennistar
  890. VoicePitch = 111
  891. End
  892.  
  893. NormalSNIPER+Sniper "Tetra DemoN"
  894. VoicePitch = 115
  895. End
  896.  
  897. Normal+Rifle "Tony Vercity"
  898. VoicePitch = 112
  899. End
  900.  
  901. Normal+Rifle "WarFare - fire of the land"
  902. VoicePitch = 96
  903. End
  904.  
  905. Normal+RiflePro Bruder_D
  906. VoicePitch = 98
  907. End
  908.  
  909. NormalARG+Punch "http//DOINGGOHEREEVERNEVEN.COM/IHATEYOU"
  910. VoicePitch = 110
  911. End
  912.  
  913. NormalSNIPER+AutoSniperT "Meister Roehrich"
  914. VoicePitch = 95
  915. End
  916.  
  917. Normal+Shotgun "SoMa(NO_SOUND)"
  918. VoicePitch = 100
  919. End
  920.  
  921. NormalARG+Spray "FoSSmy teeth now you"
  922. VoicePitch = 99
  923. End
  924.  
  925. Normal+PunchT FUzIOn
  926. VoicePitch = 98
  927. End
  928.  
  929. Normal+RifleT IcEWolF
  930. VoicePitch = 105
  931. End
  932.  
  933. Normal+Spray GurU1859
  934. VoicePitch = 115
  935. End
  936.  
  937. Normal+RifleT "KaNe normal orly?"
  938. VoicePitch = 110
  939. End
  940.  
  941. NormalARG+OtherWeapons RUMBLE
  942. VoicePitch = 92
  943. End
  944.  
  945. //----------------------------------------
  946.  
  947. Fair+Spray "[MAIM]y4eelt"
  948. VoicePitch = 110
  949. End
  950.  
  951. Fair+RiflePro TheMetr0
  952. VoicePitch = 100
  953. End
  954.  
  955. Fair+Rifle harmonies85
  956. VoicePitch = 99
  957. End
  958.  
  959. Fair+Spray omydarling
  960. VoicePitch = 120
  961. End
  962.  
  963. Fair+Power "Veteran:)"
  964. VoicePitch = 111
  965. End
  966.  
  967. Fair+OtherWeapons slppers
  968. VoicePitch = 98
  969. End
  970.  
  971. FairSNIPER+Sniper Curtmigle
  972. VoicePitch = 112
  973. End
  974.  
  975. Fair+RiflePro Halfmylife
  976. VoicePitch = 90
  977. End
  978.  
  979. Fair+RifleT "[MAIM]Benadic"
  980. VoicePitch = 120
  981. End
  982.  
  983. Fair+Shotgun 9417573154799
  984. VoicePitch = 118
  985. End
  986.  
  987. Fair+Rifle CORN75ORN
  988. VoicePitch = 116
  989. End
  990.  
  991. Fair+RiflePro RIPBLOW
  992. VoicePitch = 114
  993. End
  994.  
  995. Fair+PunchT MartinFromOUttaSPACE
  996. VoicePitch = 110
  997. End
  998.  
  999. Fair+Punch "[MAIM]Scape"
  1000. VoicePitch = 98
  1001. End
  1002.  
  1003. Fair+Rifle Spybotter
  1004. VoicePitch = 92
  1005. End
  1006.  
  1007. Fair+OtherWeapons LAZZERS
  1008. VoicePitch = 113
  1009. End
  1010.  
  1011. Fair+Spray "Sim City 2013"
  1012. VoicePitch = 114
  1013. End
  1014.  
  1015. Fair+Punch "World World III"
  1016. VoicePitch = 115
  1017. End
  1018.  
  1019. Fair+Power "YMe!!"
  1020. VoicePitch = 100
  1021. End
  1022.  
  1023. Fair+Rifle "[MAIM]Zeus'Beard"
  1024. VoicePitch = 102
  1025. End
  1026.  
  1027. Fair+Punch "HeadShot==>"
  1028. VoicePitch = 98
  1029. End
  1030.  
  1031. Fair+Rifle Your_Baby
  1032. VoicePitch = 96
  1033. End
  1034.  
  1035. Fair+Power ZapInMyPants
  1036. VoicePitch = 94
  1037. End
  1038.  
  1039. //----------------------------------------
  1040.  
  1041. Easy+Rifle "@what.com"
  1042. VoicePitch = 100
  1043. End
  1044.  
  1045. Easy+OtherWeapons Death
  1046. VoicePitch = 110
  1047. End
  1048.  
  1049. Easy+Spray killer
  1050. VoicePitch = 120
  1051. End
  1052.  
  1053. Easy+Spray Opange
  1054. VoicePitch = 99
  1055. End
  1056.  
  1057. Easy+Rifle concelal
  1058. VoicePitch = 120
  1059. End
  1060.  
  1061. Easy+PunchT outcourge
  1062. VoicePitch = 125
  1063. End
  1064.  
  1065. Easy+Punch importedBEER
  1066. VoicePitch = 110
  1067. End
  1068.  
  1069. Easy+RifleT crag
  1070. VoicePitch = 100
  1071. End
  1072.  
  1073. Easy+Rifle yap
  1074. VoicePitch = 112
  1075. End
  1076.  
  1077. Easy+OtherWeapons killplz
  1078. VoicePitch = 121
  1079. End
  1080.  
  1081. Easy+Spray nofood4you
  1082. VoicePitch = 99
  1083. End
  1084.  
  1085. Easy+OtherWeapons useeme
  1086. VoicePitch = 119
  1087. End
  1088.  
  1089. Easy+Sniper jajajjjajjaj
  1090. VoicePitch = 118
  1091. End
  1092.  
  1093. Easy+RifleT "CaR Driviene"
  1094. VoicePitch = 117
  1095. End
  1096.  
  1097. Easy+Power Imgottawin
  1098. VoicePitch = 116
  1099. End
  1100.  
  1101. Easy+Rifle "LoVe ME"
  1102. VoicePitch = 115
  1103. End
  1104.  
  1105. Easy+RifleT Curage
  1106. VoicePitch = 114
  1107. End
  1108.  
  1109. Easy+Shotgun simster
  1110. VoicePitch = 112
  1111. End
  1112.  
  1113. Easy+Spray easymeat
  1114. VoicePitch = 111
  1115. End
  1116.  
  1117. Easy+Spray 570293847502983
  1118. VoicePitch = 110
  1119. End
  1120.  
  1121. Easy+Sniper Marvin
  1122. VoicePitch = 109
  1123. End
  1124.  
  1125. Easy+Rifle [MAIM]knifer
  1126. VoicePitch = 108
  1127. End
  1128.  
  1129. Easy+Power "Life 3"
  1130. VoicePitch = 122
  1131. End
  1132.  
  1133. Easy+PowerT Dinner
  1134. VoicePitch = 120
  1135. End
  1136.  
  1137. Easy+Rifle Pimp
  1138. VoicePitch = 125
  1139. End
  1140.  
  1141. Easy+OtherWeapons Aqua
  1142. VoicePitch = 92
  1143. End
  1144.  
  1145. Easy+Punch Mousepad
  1146. VoicePitch = 100
  1147. End
  1148.  
  1149. Easy+OtherWeapons [MAIM]Dire
  1150. VoicePitch = 102
  1151. End
  1152.  
  1153. Easy+PunchT GCFfile
  1154. VoicePitch = 104
  1155. End
  1156.  
  1157. Easy+Rifle Tool527
  1158. VoicePitch = 108
  1159. End
  1160.  
  1161. Easy+RifleT NIght
  1162. VoicePitch = 95
  1163. End
  1164.  
  1165. Easy+AutoSniper Data
  1166. VoicePitch = 100
  1167. End
  1168.  
  1169. Easy+Power Pest2014
  1170. VoicePitch = 120
  1171. End
  1172.  
  1173. Easy+AutoSniperT [MAIM]Leadfoot
  1174. VoicePitch = 112
  1175. End
  1176.  
  1177. Easy+PunchT Nail
  1178. VoicePitch = 99
  1179. End
  1180.  
  1181. Easy+Punch KILLMEPLX
  1182. VoicePitch = 110
  1183. End
  1184.  
  1185. EliteAwp+AutoSniper monday
  1186. Difficulty = NORMAL+HARD+EASY
  1187. VoicePitch = 50
  1188. End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement