Guest User

Untitled

a guest
Jul 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.15 KB | None | 0 0
  1. //-------------------------------------------------------------------
  2. // Aliases
  3. //-------------------------------------------------------------------
  4. // Viewmodels
  5. alias on "r_drawviewmodel 1"
  6. alias off "r_drawviewmodel 0"
  7.  
  8. // Netgraph
  9. alias ngraph "ngraphon"
  10. alias ngraphon "net_graphpos 3; net_graphheight 0; net_graph 1; alias ngraph ngraphoff"
  11. alias ngraphoff "net_graph 0; alias ngraph ngraphon"
  12. bind "p" "ngraph"
  13.  
  14. //General Network Setting Bundle
  15. bind "KP_END" "interplow"
  16. bind "KP_DOWNARROW" "interpmed"
  17. bind "KP_PGDN" "interphigh"
  18. bind "KP_5" "interppub"
  19. bind "KP_LEFTARROW" "interpoff"
  20. bind "KP_HOME" "ratelow"
  21. bind "KP_PGUP" "ratehigh"
  22. bind "KP_RIGHTARROW" "PUB"
  23. alias PUB "cl_interp_ratio 2; cl_interp .1; cl_cmdrate 30; cl_updaterate 20"
  24. alias interpoff "cl_interp 0.00; nonpub; cl_smooth 0; cl_smoothtime 0.01"
  25. alias interplow "cl_interp 0.016; nonpub; cl_smooth 0; cl_smoothtime 0.01"
  26. alias interpmed "cl_interp 0.024; nonpub; cl_smooth 0; cl_smoothtime 0.01"
  27. alias interphigh "cl_interp 0.033; nonpub; cl_smooth 0; cl_smoothtime 0.01"
  28. alias interppub "cl_interp 0.033; PUB; cl_smooth 1; cl_smoothtime 0.1"
  29. alias nonpub "cl_cmdrate 66; cl_updaterate 66; cl_interp_ratio 1"
  30. alias ratelow "rate 30000"
  31. alias ratehigh "rate 60000"
  32.  
  33.  
  34. echo "Aliases Loaded"
  35.  
  36. //-------------------------------------------------------------------
  37. // Custom Binds
  38. //-------------------------------------------------------------------
  39. // Null-cancelling movement script
  40. // (prevents you from pressing two opposing directions, which causes you to stop moving)
  41. alias +mfwd "-back;+forward;alias checkfwd +forward"
  42. alias +mback "-forward;+back;alias checkback +back"
  43. alias +mleft "-moveright;+moveleft;alias checkleft +moveleft"
  44. alias +mright "-moveleft;+moveright;alias checkright +moveright"
  45. alias -mfwd "-forward;checkback;alias checkfwd none"
  46. alias -mback "-back;checkfwd;alias checkback none"
  47. alias -mleft "-moveleft;checkright;alias checkleft none"
  48. alias -mright "-moveright;checkleft;alias checkright none"
  49. alias checkfwd none
  50. alias checkback none
  51. alias checkleft none
  52. alias checkright none
  53. alias none ""
  54.  
  55.  
  56. // Movement
  57. bind "a" "+mleft"
  58. bind "d" "+mright"
  59. bind "w" "+mfwd"
  60. bind "s" "+mback"
  61. bind "shift" "+duck"
  62. bind "SPACE" "+jump"
  63.  
  64. // Weapons
  65. bind "MOUSE1" "+attack"
  66. bind "MOUSE2" "+attack2"
  67. bind "MOUSE4" "slot2; on"
  68. bind "mwheelup" "slot1; off"
  69. bind "mwheeldown" "slot2; on"
  70. bind "q" "slot1; off"
  71. bind "v" "slot2; on"
  72. bind "x" "slot3; on"
  73. bind "e" "invnext; on"
  74.  
  75. // Misc
  76. bind "alt" "taunt"
  77. bind "z" "voicemenu 0 0"
  78. bind "F1" "timeleft"
  79. bind "F2" "nextmap"
  80. bind "F9" "record bugfix; stop"
  81. //bind "CTRL" "+voicerecord"
  82.  
  83. // Volume Control
  84. bind "UPARROW" "incrementvar volume .00 1 .05"
  85. bind "LEFTARROW" "volume 0"
  86. bind "DOWNARROW" "incrementvar volume .00 1 -.05"
  87. bind "RIGHTARROW" "snd_restart"
  88.  
  89. //-------------------------------------------------------------------
  90. // General Preferences
  91. //-------------------------------------------------------------------
  92. // Hitsounds
  93. tf_dingalingaling "1"
  94. tf_dingaling_pitchmaxdmg "50"
  95. tf_dingaling_pitchmindmg "150"
  96. tf_dingaling_volume "0.9"
  97.  
  98. // Misc
  99. showhitlocation "1"
  100. viewmodel_fov "54"
  101. fov_desired "90.000000"
  102. con_enable "1"
  103. glow_outline_effect_enable "1"
  104. tf_particles_disable_weather "1"
  105. hud_combattext "1"
  106. hud_takesshots "1"
  107. hud_fastswitch "1"
  108. cl_autorezoom "0"
  109. cl_crosshairalpha "255"
  110. cl_rumblescale "0"
  111. cl_debugrumble "0"
  112. cl_autoreload "1"
  113. cl_forcepreload "1"
  114. cl_predict "1"
  115. cl_predictweapons "1"
  116. cl_hud_minmode "0"
  117. mat_queue_mode "2"
  118. m_rawinput "1"
  119. r_drawviewmodel "0"
  120. //zoom_sensitivity_ratio "0.8"
  121.  
  122. echo "Preferences Loaded"
Add Comment
Please, Sign In to add comment