Advertisement
Guest User

Untitled

a guest
Jan 24th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. // --- TABLE OF CONTENT: ---
  2. // 1. BUYBINDS
  3. // 2. GRENADE BINDS
  4. // 3. RADAR COMMANDS
  5. // * 3.1 - RADAR ZOOM IN AND OUT SCRIPT
  6.  
  7. // 4. VIEWMODEL BOBBING
  8. // 5. VARIOUS BINDS & COMMANDS
  9. // * 5.1 - BASIC BUT IMPORTANT
  10. // * 5.2 - ???
  11. // * 5.3 - Z for NOCLIP + REMOVE HUD
  12. // * 5.4 - N for JUMPTHROW
  13. // * 5.5 - VOICE TOGGLE BIND
  14. //
  15. //
  16. //
  17. //
  18. // - NOTES
  19. //
  20. // - END (here you can change the autoexec load message)
  21.  
  22.  
  23. // 1. BUYBINDS
  24. ///////////////////////////////////////////////////
  25.  
  26. bind "kp_home" "buy galilar; buy famas;"
  27. bind "kp_uparrow" "buy ak47; buy m4a1;"
  28. bind "kp_pgup" "buy awp;"
  29. bind "kp_end" "buy p250;"
  30. bind "kp_downarrow" "buy tec9; buy fiveseven;"
  31. bind "kp_pgdn" "buy deagle;"
  32. bind "kp_del" "buy vesthelm;"
  33. bind "kp_ins" "buy vest;"
  34. bind "kp_enter" "buy defuser;"
  35. bind "rightarrow" "buy smokegrenade;"
  36. bind "leftarrow" "buy hegrenade;"
  37. bind "downarrow" "buy flashbang;"
  38. bind "uparrow" "buy molotov; buy incgrenade;"
  39.  
  40.  
  41.  
  42.  
  43.  
  44. // 2. GRENADE BINDS
  45. ///////////////////////////////////////////////////
  46.  
  47. bind "f" "use weapon_flashbang"
  48. bind "x" "use weapon_molotov;use weapon_incgrenade"
  49. bind "mouse4" "use weapon_Decoy"
  50. bind "4" "use weapon_hegrenade"
  51. bind "v" "use weapon_smokegrenade"
  52.  
  53.  
  54.  
  55.  
  56. // 3. RADAR COMMANDS
  57. ///////////////////////////////////////////////////
  58.  
  59. cl_radar_always_centered 0
  60. cl_radar_scale 0.3
  61. cl_hud_radar_scale 1.3
  62. cl_radar_icon_scale_min 0.4
  63. cl_radar_rotate 1
  64. cl_radar_square_with_scoreboard “0”
  65.  
  66.  
  67. // * 3.1 - RADAR ZOOM IN AND OUT SCRIPT
  68.  
  69. bind "0" "incrementvar cl_radar_scale 0.25 1.0 0.05"
  70. bind "9" "incrementvar cl_radar_scale 0.25 1.0 -0.05"
  71.  
  72.  
  73.  
  74.  
  75.  
  76. // 4. VIEWMODEL BOBBING
  77. ///////////////////////////////////////////////////
  78.  
  79. cl_bob_lower_amt "5""
  80. cl_bobamt_lat "0.1"
  81. cl_bobamt_vert "0.1"
  82. cl_bobcycle "0.98"
  83.  
  84.  
  85.  
  86.  
  87.  
  88. // 5. VARIOUS BINDS & COMMANDS
  89. ///////////////////////////////////////////////////
  90.  
  91.  
  92. // * 5.1 - BASIC BUT IMPORTANT
  93.  
  94. fps_max "300"
  95.  
  96. cl_autowepswitch "0"
  97. r_dynamic "1"
  98. r_drawtracers_firstperson "1"
  99.  
  100. bind "TAB" "+showscores; r_cleardecals"
  101. bind "kp_plus" "volume 0"
  102. bind "F4" "toggle net_graph 0 1"
  103. bind "F9" "disconnect"
  104. bind "kp_multiply" "toggle cl_righthand 0 1"
  105.  
  106.  
  107. // * 5.2 - ???
  108.  
  109. // * 5.3 - Z for NOCLIP + REMOVE HUD
  110.  
  111. unbind "z"
  112. bind "z" "noclip; toggle cl_draw_only_deathnotices 0 1"
  113.  
  114. // * 5.4 - N for JUMPTHROW
  115.  
  116. alias "+jumpthrow" "+jump;-attack"
  117. alias "-jumpthrow" "-jump"
  118. bind "n" "+jumpthrow"
  119.  
  120.  
  121. // * 5.5 - VOICE TOGGLE BIND
  122.  
  123. alias "voice" "voiceoff"
  124. alias "voiceon" "voice_enable 1; playvol buttons\blip1 0.1; alias voice voiceoff"
  125. alias "voiceoff" "voice_enable 0; playvol buttons\blip2 0.1; alias voice voiceon"
  126. bind 6 voice
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141. // NOTES:
  142. // V. 1.00 - Created 25.12.2019
  143. // .
  144. // ..
  145. // ...
  146. // ....
  147. // .....
  148. // ....
  149. // ...
  150. // ..
  151. // .
  152. // Why would there be notes in autoexec?
  153.  
  154.  
  155. // END
  156. echo
  157. echo
  158. echo
  159. echo
  160. echo
  161. echo
  162. echo
  163. echo
  164. echo "Autoexec has failed to load"
  165. echo
  166. echo
  167. echo
  168. echo
  169.  
  170. // Do NoT ReMoVe THe FoLLOWiNG:
  171. host_writeconfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement