Guest User

Untitled

a guest
Jan 1st, 2024
4,244
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.73 KB | None | 1 0
  1. // Regular Commands
  2.  
  3. find
  4. cl_showfps //1-5
  5. fps_max
  6. bind "key" ent_fire smokegrenade_projectile kill //Bind a key
  7. bind "key" sv_rethrow_last_grenade //Bind a key
  8. sv_regeneration_force_on 1
  9. bind "key" voice_modenable_toggle //Bind a key
  10.  
  11. // Shortcuts for console commands
  12. alias "dc" "disconnect"
  13. alias "rs" "mp_restartgame 1"
  14. alias "warmup" "mp_warmup_start"
  15. alias "live" "mp_warmup_end"
  16. alias "asd" "sv_cheats 1; echo cheats turned on"
  17. alias "mpteam" "mp_autoteambalance 0; mp_limitteams 0"
  18. alias "badd" "bot_add"
  19. alias "baddct" "bot_add_ct"
  20. alias "baddt" "bot_add_t"
  21. alias "b1" "bot_quota 2"
  22. alias "b2" "bot_quota 3"
  23. alias "b3" "bot_quota 4"
  24. alias "bkick" "bot_kick"
  25. alias "bstop" "bot_stop 1"
  26. alias "bplay" "bot_stop 0"
  27. alias "bplace" "bot_place"
  28. alias "bcrouch" "bot_crouch 1"
  29. alias "bstand" "bot_crouch 0"
  30. alias "bmimic" "bot_mimic 1"
  31. alias "bignore" "bot_mimic 0"
  32. alias "byaw" "bot_mimic_yaw_offset 0"
  33. alias "byawoff" "bot_mimic_yaw_offset 180"
  34.  
  35. // Sell All
  36. alias "sellall" "sellback 2;sellback 3;sellback 4;sellback 5;sellback 6;sellback 7;sellback 8;sellback 9;sellback 10;sellback 11;sellback 12;sellback 13;sellback 14;sellback 15;sellback 16;sellback 17;sellback 18;sellback 19;sellback 20;sellback 21;sellback 22;sellback 23;sellback 24;sellback 25;sellback 26;sellback 27;sellback 28;sellback 29;sellback 30;sellback 31;sellback 32;sellback 33;sellback 34;sellback 35;play ui\panorama\itemtile_click_02.vsnd_c"
  37. bind "f4" "sellall"
  38.  
  39. // ---------------------------------------------------------------------------------------------
  40. // ActionToggle Switch by MrMaxim
  41. // This script allows certain buttons to have a secondary action by holding down a "toggle" button.
  42.  
  43. // Part 1 (Setup your default actions here)
  44. alias defC      "bind c radio2"
  45. alias defQ      "bind q lastinv"
  46. alias defE      "bind e +use"
  47. alias defF      "bind f +lookatweapon"
  48.  
  49. // Part 2 (This is where the script temporarily rebinds the buttons to their secondary actions)
  50. alias keyC      "bind c customC"
  51. alias keyQ      "bind q customQ"
  52. alias keyE      "bind e customE"
  53. alias keyF      "bind f customF"
  54.  
  55. // Part 3 (Setup your secondary actions here)
  56. alias customC   "slot10" //Default: Molotov
  57. alias customQ   "slot7" //Default: Flashbang
  58. alias customE   "slot6" //Default: HE
  59. alias customF   "slot8" //Default: Smoke
  60.  
  61. // Part 4 (This handles the switching mechanism, allowing the buttons to alternate between their default and secondary actions)
  62. alias +secondaryaction "keyC; keyQ; keyE; keyF"
  63. alias -secondaryaction "defC; defQ; defE; defF"
  64.  
  65. // Part 5 (Toggle Button  - Holding this will trigger your secondary action)
  66. bind mouse4 +secondaryaction
  67. // ---------------------------------------------------------------------------------------------
Add Comment
Please, Sign In to add comment