Advertisement
PrisoonMike

cs2 config

Apr 28th, 2024
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | Gaming | 0 0
  1. // PrisonMike/Gin config
  2. echo "Dont drop the soap!"
  3.  
  4. //sensitivity mouse dpi = 1400,1450,1500,1550
  5.  
  6. fps_max "9999"
  7.  
  8. map_background de_office
  9.  
  10. sensitivity "2.33"
  11. cl_hud_telemetry_frametime_show 2
  12. cl_hud_telemetry_ping_show 2
  13. cl_hud_telemetry_net_misdelivery_show 2
  14. cl_usenewbob false
  15.  
  16. //Settings
  17. zoom_sensitivity_ratio 0.8
  18. cl_hud_radar_scale "1.15"
  19. cl_hud_color "3"
  20. cl_crosshair_sniper_width 1
  21. cl_player_ping_mute 0
  22. cl_sniper_auto_rezoom 1
  23. cl_teammate_colors_show 1
  24. r_show_build_info "0"
  25.  
  26. // Viewmodel
  27. viewmodel_offset_x "2.5" //Changes viewmodel view in X scale (-2 to 2.5)
  28. viewmodel_offset_y "2" //Changes viewmodel view in Y scale (-2 to 2)
  29. viewmodel_offset_z "-2" //Changes viewmodel view in Z scale (-2 to 2)
  30. viewmodel_fov "68" //Highest viewmodel FOV (54 to 68)
  31. viewmodel_recoil "0"
  32. //cl_obs_interp_enable 0
  33.  
  34.  
  35.  
  36. //Current Crosshair
  37.  
  38. apply_crosshair_code "CSGO-QVV9H-dfdPZ-G97WJ-E3SxF-tHwzF"
  39.  
  40. // Custom Binds
  41.  
  42.  
  43. //bind "4" "toggle cl_radar_scale 1 0.3
  44. bind "," "ent_fire smokegrenade_projectile kill; stopsound"
  45. bind "n" "noclip"
  46. bind "b" "buymenu"
  47.  
  48.  
  49. // Shortcuts for console commands
  50. alias "dc" "disconnect"
  51. alias "qu" "quit"
  52. alias "rs" "mp_restartgame 1"
  53. alias "v1" "voice_modenable 1"
  54. alias "v0" "voice_modenable 0"
  55. alias "warmup" "mp_warmup_start"
  56. alias "prac" "exec practice"
  57. alias "dmprac" "exec dmprac"
  58. alias "demo" "exec demo"
  59.  
  60.  
  61. // This script allows certain buttons to have a secondary action by holding down a "toggle" button.
  62. // Part 1 (Setup your default actions here)
  63. //alias defH "bind h +radio2"
  64. alias defC "bind c +voicerecord"
  65. alias defQ "bind q lastinv"
  66. alias defE "bind e +use"
  67. alias defF "bind f +lookatweapon"
  68. alias def1 "bind 1 slot1"
  69. alias def2 "bind 2 slot2"
  70. alias def3 "bind 3 slot3"
  71.  
  72. // Part 2 (This is where the script temporarily rebinds the buttons to their secondary actions)
  73. //alias keyN "bind n customN"
  74. alias keyM "bind m customM"
  75. alias keyQ "bind q customQ"
  76. alias keyC "bind c customC"
  77. alias keyE "bind e customE"
  78. alias keyF "bind f customF"
  79.  
  80.  
  81.  
  82.  
  83. // Part 3 (Setup your secondary actions here)
  84. alias customN "god"
  85. alias customM "noclip"
  86. alias customC "slot10" //Default: Molotov
  87. alias customQ "slot7" //Default: Flashbang
  88. alias customE "slot6" //Default: HE
  89. alias customF "slot8" //Default: Smoke
  90.  
  91. // Part 4 (This handles the switching mechanism, allowing the buttons to alternate between their default and secondary actions)
  92. alias +secondaryaction "keyZ; keyX; keyC; keyQ; keyE; keyF"
  93. alias -secondaryaction "defZ; defX; defC; defQ; defE; defF"
  94.  
  95. // Part 5 (Toggle Button - Holding this will trigger your secondary action)
  96.  
  97. bind "MOUSE5" "player_ping"
  98. bind "MOUSE4" +secondaryaction
  99.  
  100. // ---------------------------------------------------------------------------------------------
  101.  
  102.  
  103. //Part 6 (Jump throw and walk jump throw)
  104.  
  105. alias "+jumpaction" "+jump;"
  106. alias "+throwaction" "-attack; -attack2"
  107. alias "-jumpaction" "-jump"
  108. bind z "+jumpaction;+throwaction;"
  109.  
  110. alias "+runthrow" "+forward;+jump;"
  111. alias "-runthrow" "-jump;-forward"
  112. bind x "+runthrow;+throwaction"
  113.  
  114. //drop bomb
  115.  
  116. alias "+dropbomb" "slot5"
  117. alias "-dropbomb" "drop"
  118. bind "ALT" "+dropbomb;"
  119.  
  120. //knife and last weapon
  121. alias "+knife" "slot3"
  122. alias "-knife" "lastinv"
  123. bind "MOUSE3" "+knife"
  124.  
  125.  
  126. //CSGO-2C4Nn-D5jnj-Ey6oE-cQwnQ-roybE
  127.  
  128. host_writeconfig;
Tags: cs2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement