wriggle_

Untitled

Jun 28th, 2025
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.06 KB | None | 0 0
  1. unbindall
  2.  
  3. clear
  4.  
  5.  
  6. +enable_duck
  7.  
  8. -attack
  9. -attack2
  10. -back
  11. -bomb_mode
  12. -bonus_overhead_info
  13. -cl_show_team_equipment
  14. -duck
  15. -fire_weapon
  16. -fire_weapon2
  17. -forward
  18. -jump
  19. -jumpthrow
  20. -left
  21. -lookatweapon
  22. -movedown
  23. -moveleft
  24. -moveright
  25. -moveup
  26. -reload
  27. -right
  28. -scoreboard
  29. -speed
  30. -stim
  31. -use
  32. -voicerecord
  33. -walk_mode
  34.  
  35. beautiful_viewmodels
  36. reset_score
  37. slot_1
  38. switch_walk_on
  39.  
  40. cl_color 3
  41.  
  42. //Fire Weapon
  43. alias +fire_weapon "+attack"
  44. alias -fire_weapon "-attack"
  45.  
  46. bind mouse2 +attack2
  47.  
  48. //Plant Bomb
  49. alias +plant_bomb "+attack"
  50. alias -plant_bomb "-attack; slot_1; reset_main_weapons; reset_alt_weapons""
  51.  
  52. alias +bomb_mode "bind mouse1 +plant_bomb"
  53. alias -bomb_mode "bind mouse1 +fire_weapon"
  54.  
  55. //Bomb
  56. alias bomb "slot_5; reset_alt_weapons; alias switch_main_weapons switch_main_weapons_primary; +bomb_mode"
  57.  
  58. bind mouse3 bomb
  59.  
  60. //Switch Main Weapons
  61. alias switch_main_weapons_secondary "slot_3; alias switch_main_weapons switch_main_weapons_primary; inspect_weapon"
  62. alias switch_main_weapons_primary "slot_1; alias switch_main_weapons switch_main_weapons_secondary"
  63.  
  64. alias switch_main_weapons switch_main_weapons_secondary
  65.  
  66. alias switch_main_weapons_button "switch_main_weapons; reset_alt_weapons"
  67.  
  68. bind mouse4 "switch_main_weapons_button"
  69.  
  70. //Switch Alt Weapons
  71. alias switch_alt_weapons_secondary "slot_11; alias switch_alt_weapons switch_alt_weapons_primary"
  72. alias switch_alt_weapons_primary "slot_2; alias switch_alt_weapons switch_alt_weapons_secondary"
  73.  
  74. alias switch_alt_weapons_button "switch_alt_weapons; reset_main_weapons"
  75.  
  76. bind mouse5 switch_alt_weapons_button
  77.  
  78. //Drop All Util
  79. alias "drop_nades" "slot3; slot6; drop; slot7; drop; slot7 drop; slot8; drop; slot9; drop; slot10; drop";
  80. bind "p" "drop_nades";
  81.  
  82. //Reset Weapons
  83. alias reset_alt_weapons "alias switch_alt_weapons switch_alt_weapons_primary"
  84. alias reset_main_weapons "alias switch_main_weapons switch_main_weapons_secondary"
  85.  
  86. //Grenades
  87. alias decoy slot_9
  88. alias frag slot_6
  89. alias incendiary slot_10
  90. alias smoke slot_8
  91. alias flashbang slot_7
  92.  
  93. bind b "slot7"; bind v "slot8"; bind x "slot6"; bind c "slot10"
  94. bind "n" sv_rethrow_last_grenade
  95.  
  96. //Stim
  97. alias +stim slot_12
  98. alias -stim "slot_1; switch_main_weapons_primary"
  99.  
  100. bind tab +stim
  101.  
  102. //Slots
  103. alias slot_1 "slot11; slot3; slot2; slot1; -bomb_mode; speed_mode_color_check; -bonus_overhead_info"
  104. alias slot_2 "slot11; slot3; slot1; slot2; -bomb_mode; speed_mode_color_check; -bonus_overhead_info"
  105. alias slot_3 "slot1; slot2; slot11; slot3; -bomb_mode; speed_mode_color_check; +bonus_overhead_info"
  106. alias slot_5 "slot11; slot3; slot2; slot1; slot5; +bomb_mode; bomb_speed_mode_color_check; +bonus_overhead_info"
  107. alias slot_6 "slot11; slot3; slot2; slot1; slot6; -bomb_mode; speed_mode_color_check; -bonus_overhead_info"
  108. alias slot_7 "slot11; slot3; slot2; slot1; slot9; slot7; -bomb_mode; speed_mode_color_check; -bonus_overhead_info"
  109. alias slot_8 "slot11; slot3; slot2; slot1; slot8; -bomb_mode; speed_mode_color_check; -bonus_overhead_info"
  110. alias slot_9 "slot11; slot3; slot2; slot1; slot9; -bomb_mode; speed_mode_color_check; -bonus_overhead_info"
  111. alias slot_10 "slot11; slot3; slot2; slot1; slot10; -bomb_mode; speed_mode_color_check; -bonus_overhead_info"
  112. alias slot_11 "slot3; slot1; slot2; slot11; -bomb_mode; speed_mode_color_check; -bonus_overhead_info"
  113. alias slot_12 "slot11; slot3; slot2; slot1; slot12; -bomb_mode; speed_mode_color_check; -bonus_overhead_info"
  114.  
  115. //Inspect
  116. //alias inspect_weapon "+lookatweapon; -lookatweapon"
  117.  
  118. //Mouse
  119. cl_mouselook 1
  120. m_pitch 0.022
  121. zoom_sensitivity_ratio 1.125
  122.  
  123. bind mouse_x yaw
  124. bind mouse_y pitch
  125.  
  126. m_yaw 0.0165
  127. //m_yaw 0.022
  128. sensitivity 2.40
  129.  
  130. //Movement
  131. bind w +forward
  132. bind s +back
  133. bind a +left
  134. bind d +right
  135.  
  136. bind space "+jump; reset_score"
  137.  
  138. bind mwheeldown "+jump; reset_score"
  139.  
  140. bind shift +duck
  141.  
  142. //Slow Walk
  143. alias switch_walk_on "+walk_mode; alias switch_walk switch_walk_off"
  144. alias switch_walk_off "-walk_mode; alias switch_walk switch_walk_on"
  145.  
  146. alias +walk_mode "+sprint; cl_hud_color 6"
  147. alias -walk_mode "-sprint; cl_hud_color 5"
  148.  
  149. alias switch_walk switch_walk_on
  150.  
  151. bind alt switch_walk
  152.  
  153. //Crosshair
  154. cl_crosshair_recoil 0
  155. cl_crosshair_sniper_width 2
  156.  
  157. apply_crosshair_code CSGO-hetZ2-uWzUP-Zc9Jx-swviT-YruCQ
  158.  
  159. //Viewmodels
  160. alias beautiful_viewmodels "viewmodel_fov 68; viewmodel_offset_x 2.5; viewmodel_offset_y 2; viewmodel_offset_z -2; viewmodel_presetpos 0"
  161. bind h "toggle cl_righthand 0 1"
  162.  
  163. //HUD
  164. cl_draw_only_deathnotices 0
  165. cl_drawhud 1
  166. hud_scaling 0.95
  167. hud_showtargetid 1
  168. safezonex 1
  169. safezoney 1
  170. cl_teammate_colors_show 1
  171.  
  172. //Radar
  173. cl_hud_radar_scale 1.15
  174. cl_radar_always_centered 1
  175. cl_radar_icon_scale_min 0.4
  176. cl_radar_rotate 1
  177. cl_radar_scale 0.3333333333333
  178. cl_radar_square_with_scoreboard 0
  179.  
  180. alias +newTab "+showscores; cl_teamcounter_playercount_instead_of_avatars false"
  181. alias -newTab "-showscores; cl_teamcounter_playercount_instead_of_avatars true"
  182.  
  183. bind 1 +newTab
  184.  
  185. //Scoreboard
  186. alias scoretoggle1 scoretoggle2
  187. alias scoretoggle2 "+scoreboard; alias scoretoggle1 scoretoggle3"
  188. alias scoretoggle3 "-scoreboard; alias scoretoggle1 scoretoggle2"
  189.  
  190. alias +scoreboard "+showscores; cl_showerror 1; cl_showpos 1; cl_showfps 1"
  191. alias -scoreboard "-showscores; cl_showerror 0; cl_showpos 0; cl_showfps 0"
  192.  
  193. bind 1 scoretoggle1
  194.  
  195. alias reset_score "-scoreboard; alias scoretoggle1 scoretoggle2"
  196.  
  197. //Switch Voice
  198. alias switch_voice_on "+voicerecord; alias switch_voice switch_voice_off"
  199. alias switch_voice_off "-voicerecord; alias switch_voice switch_voice_on"
  200.  
  201. alias switch_voice switch_voice_on
  202.  
  203. bind ctrl switch_voice
  204.  
  205. bind ctrl +voicerecord
  206.  
  207. //Team Overhead Information
  208. alias +bonus_overhead_info "cl_teamid_overhead_mode 2"
  209. alias -bonus_overhead_info "cl_teamid_overhead_mode 2"
  210.  
  211. //Pings
  212. cl_ping_fade_deadzone 20
  213. cl_ping_fade_distance 100
  214. cl_player_ping_mute 1
  215. cl_radial_radio_tap_to_ping 0
  216.  
  217.  
  218. bind mwheelup player_ping
  219.  
  220. bind ins say
  221. bind del say
  222.  
  223. bind pgup say_team
  224. bind home say
  225.  
  226. //Keyboard
  227. bind ` toggleconsole
  228.  
  229. bind "t" "toggle cl_radar_scale 1 0.3"
  230.  
  231. bind 4 "drop; slot_1; reset_main_weapons; reset_alt_weapons"
  232.  
  233. bind q +use
  234. bind e +use
  235.  
  236. bind f "+lookatweapon"
  237.  
  238. bind "f4" "rebuy"
  239.  
  240. bind ralt "exec autoexec"
  241.  
  242. bind r +reload
  243.  
  244. bind k "sv_cheats 1; noclip"
  245.  
  246. bind 8 buymenu
  247. bind f9 "autobuy; slot_1"
  248.  
  249. bind f1 "vote option1; v_yes"
  250. bind f2 "vote option2; v_no"
  251.  
  252. bind 3 radio
  253.  
  254. bind mouse2 lastplayer
  255. bind mouse1 nextplayer
  256.  
  257. //Camera
  258. c_maxdistance 200
  259. c_maxpitch 90
  260. c_maxyaw 135
  261. c_mindistance 30
  262. c_minpitch 0
  263. c_minyaw -135
  264. c_orthoheight 100
  265. c_orthowidth 100
  266. c_thirdpersonshoulder false
  267. c_thirdpersonshoulderaimdist 120
  268. c_thirdpersonshoulderdist 40
  269. c_thirdpersonshoulderheight 5
  270. c_thirdpersonshoulderoffset 20
  271. cam_collision 1
  272. cam_idealdelta 4
  273. cam_idealdist 150
  274. cam_ideallag 4
  275. cam_idealpitch 0
  276. cam_idealyaw 0
  277.  
  278. firstperson
  279.  
  280. //Voice
  281. voice_loopback 0
  282. voice_system_enable 1
  283. voice_threshold -120
  284.  
  285. //Quality of Life
  286. bot_difficulty 999
  287. cl_autohelp 0
  288. cl_autowepswitch 0
  289. cl_disablehtmlmotd 1
  290. cl_downloadfilter "nosounds"
  291. cl_hide_avatar_images 0
  292. cl_allow_animated_avatars 0
  293. cl_join_advertise 2
  294. cl_mute_all_but_friends_and_party 0
  295. cl_sanitize_player_names 0
  296. cl_show_clan_in_death_notice 0
  297. cl_showfps 0
  298. cl_showhelp 0
  299. cl_showpos 0
  300. cl_use_opens_buy_menu 0
  301. closeonbuy 0
  302. con_enable 1
  303. custom_bot_difficulty 999
  304. cq_netgraph 1
  305. demo_index 1
  306. developer 1
  307. rate 1000000
  308. fps_max 1000
  309. fps_max_tools 1000
  310. fps_max_ui 1000
  311. gameinstructor_enable 0
  312. mat_monitorgamma 1.6
  313. mat_monitorgamma_tv_enabled 0
  314. option_duck_method 0
  315. option_speed_method 0
  316. r_drawtracers 1
  317. r_drawtracers_firstperson 1
  318. ui_setting_advertiseforhire_auto 0
  319. ui_vanitysettings_loadoutslot_ct grenade0
  320. ui_vanitysettings_loadoutslot_t grenade4
  321. ui_vanitysetting_team ct
  322. cl_updaterate 128
  323. cl_interp_ratio 1
  324. cl_interp "0.015625"
  325. mm_dedicated_search_maxping 45
  326.  
  327. //Clantag
  328. //cl_clanid 0
  329. //cl_clanid 1582249 //NA`VI
  330. //cl_clanid 24695874 //ENCE
  331. //cl_clanid 25799347 //Steins;Gate(TM)
  332. //cl_clanid 3341926 //WarOwl
  333. cl_clanid 34620704 //Leetify
  334.  
  335. //Config Loader
  336. bind ralt "clear; exec autoexec"
  337.  
  338. host_writeconfig autoexec.cfg
  339.  
  340. echo ---AUTOEXEC.cfg LOADED---
Add Comment
Please, Sign In to add comment