Advertisement
mikemat

Untitled

Oct 13th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. ///////autoexec shit////////
  2. /////////Default vm options/////////////
  3. r_drawviewmodel 1
  4. viewmodel_fov 70
  5. tf_use_min_viewmodels 1
  6.  
  7. /////////binds/////////////
  8. bind MWHEELUP "primary" //switch to primary
  9. bind MWHEELDOWN "secondary" //switch to secondary
  10. bind "mouse4" "+usemelee" //switch to and use melee
  11. bind "f" "viewtoggle" //toggles viewmodel state show/hide
  12. bind "t" "mintoggle" //Toggles min viewmodels
  13.  
  14. alias "mintoggle" "minoff" //min viewmodel toggle
  15. alias "minon" "tf_use_min_viewmodels 1; viewmodel_fov 70; alias "mintoggle" "minoff""
  16. alias "minoff" "tf_use_min_viewmodels 0; viewmodel_fov 99; alias "mintoggle" "minon""
  17.  
  18. alias vmoff "r_drawviewmodel 0"
  19. alias vmon "r_drawviewmodel 1"
  20.  
  21. alias 1vm vmon //sets primary viewmodels are on or off by default in the vmon state
  22. alias 2vm vmon //sets secondary viewmodels are on or off by default in the vmon state
  23.  
  24. alias "viewtoggle" "viewoff"
  25. alias "viewon" "alias "1vm" "vmon"; alias "2vm" "vmon"; vmon; alias "viewtoggle" "viewoff""
  26. alias "viewoff" "alias "1vm" "vmoff"; alias "2vm" "vmoff"; vmoff; alias "viewtoggle" "viewon""
  27.  
  28. alias "primary" "slot1; 1vm" //default slot and vm state for primary
  29. alias "secondary" "slot2; 2vm" //default slot and vm state for secondary
  30. alias +melee "slot3; r_drawviewmodel 1" //melee always has viewmodel
  31. alias +usemelee "+melee; +attack" //melee autoswing
  32. alias -usemelee "-attack"
  33.  
  34.  
  35.  
  36.  
  37. ////class config shit////
  38. ///changes how slots work in the 'viewmodel on' state. 1vm is slot 1, 2vm is slot 2. use vmon for on and vmoff for off, and add any other slot shit like vm fov or minmode
  39. alias 1vm "vmon"
  40. alias 2vm "vmoff"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement