Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. version(dont change): =119
  2.  
  3. - "//" means explanation
  4.  
  5. [VISUALS - GLOBAL]
  6.  
  7. // enableGlow: Enable Glow ESP
  8. // glowKey: enables glow only while key is pressed (set enableGlow to 0). Key numbers: https://docs.microsoft.com/en-us/windows/desktop/inputdev/virtual-key-codes
  9.  
  10. enableGlow(0/1) =1
  11. glowKey =0
  12.  
  13. [SOUND ESP - GLOBAL]
  14.  
  15. // enable3D: Enable 3D SoundEsp
  16. // enableFOV: Enable Fov SoundEsp
  17. // enableDefuseSound: Enable Defuse Sound notification
  18. // volume: Change volume
  19. // soundOnlyOnKeyHold: If set to 1, the sound only occurs when holding the soundKey
  20. // soundKey: key to hold to output the sound when soundOnlyOnKeyHold is 1. Key numbers: https://docs.microsoft.com/en-us/windows/desktop/inputdev/virtual-key-codes
  21.  
  22. enable3D(0/1) =0
  23. enableFOV(0/1) =0
  24. enableDefuseSound(0/1) =1
  25. soundOnlyOnKeyHold(0/1) =0
  26. soundKey =12
  27. volume(0.01-2.00) =0.75
  28.  
  29. [TRIGGERBOT - GLOBAL]
  30.  
  31. // enableTriggerbot: Enable Triggerbot
  32. // triggerkey: key to hold to activate the triggerbot. Key numbers: https://docs.microsoft.com/en-us/windows/desktop/inputdev/virtual-key-codes
  33. // delay: Delay on first shot in milliseconds
  34. // delayShots: Delay between consecutive shots in milliseconds
  35.  
  36. enableTriggerbot(0/1) =1
  37. triggerkey =5
  38. delay(ms)(0-1000) =1
  39. delayShots(ms)(25-1000) =450
  40.  
  41. [AIMBOT/RCS - GLOBAL] (For WEAPON-CFG scroll down)
  42.  
  43. // enableAimbot: Enable Aimbot
  44. // enableRCS: Enable Recoil Control System
  45. // enableVisibilityCheck: Activating aimbot only when player is visible (might not be 100% accurate cause of being external, test it)
  46. // aimkeys: key to hold to activate the aimbot/rcs (aimkey2 is an additional key you can choose). Key numbers: https://docs.microsoft.com/en-us/windows/desktop/inputdev/virtual-key-codes
  47.  
  48. enableAimbot(0/1) =1
  49. enableRCS(0/1) =1
  50. enableVisibilityCheck =1
  51. aimkey1 =1
  52. aimkey2 =0
  53.  
  54. [WEAPON-CFG]
  55.  
  56. // boneId: 5->stomach, 6->chest, 7->neck, 8->head
  57. // fov: Range near crosshair to start aiming
  58. // fovRCS: Range near crosshair to start RCS
  59. // smooth: change the aimbot strength
  60. // smoothRCS: Change the RCS strength
  61. // adjustRCS: Adjust vertical(y-axis) focus point while spraying (higher value means lower point)
  62.  
  63. **AWP**
  64. boneId(5-8) =5
  65. fov(0.1-20.0) =3.0
  66. smooth(0.00-10.00) =1.5
  67.  
  68. **SCOUT**
  69. boneId(5-8) =8
  70. fov(0.1-20.0) =3.0
  71. smooth(0.00-10.00) =1.5
  72.  
  73. **RIFLES/SMGS/OTHERS**
  74. boneId(5-8) =8
  75. fov(0.1-20.0) =0.35
  76. fovRCS(0.1-20.0) =0
  77. smooth(0.00-10.00) =10
  78. smoothRCS(0.00-10.00) =0
  79. adjustRCS(0.5-1.5) =1.0
  80.  
  81. **PISTOLES**
  82. boneId(5-8) =8
  83. fov(0.1-20.0) =1.4
  84. fovRCS(0.1-20.0) =8.0
  85. smooth(0.00-10.00) =1.5
  86. smoothRCS(0.00-10.00) =1.5
  87. adjustRCS(0.5-1.5) =1.0
  88.  
  89. **DEAGLE**
  90. boneId(5-8) =8
  91. fov(0.1-20.0) =1.3
  92. smooth(0.00-10.00) =0.3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement