Advertisement
Guest User

Untitled

a guest
Mar 21st, 2014
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. // Null-cancelling movement script
  2. // (prevents you from pressing two opposing directions, which causes you to stop moving)
  3.  
  4. bind w +mfwd
  5. bind s +mback
  6. bind a +mleft
  7. bind d +mright
  8.  
  9. alias +mfwd "-back;+forward;alias checkfwd +forward;dotxhaircolor"
  10. alias +mback "-forward;+back;alias checkback +back;dotxhaircolor"
  11. alias +mleft "-moveright;+moveleft;alias checkleft +moveleft;dotxhaircolor"
  12. alias +mright "-moveleft;+moveright;alias checkright +moveright;dotxhaircolor"
  13. alias -mfwd "-forward;checkback;alias checkfwd none;dotxhaircolor"
  14. alias -mback "-back;checkfwd;alias checkback none;dotxhaircolor"
  15. alias -mleft "-moveleft;checkright;alias checkleft none;dotxhaircolor"
  16. alias -mright "-moveright;checkleft;alias checkright none;dotxhaircolor"
  17. alias checkfwd none
  18. alias checkback none
  19. alias checkleft none
  20. alias checkright none
  21. alias none ""
  22.  
  23. developer 1
  24. echo "default settings loaded"
  25. developer 0
  26.  
  27. // viewmodel/combination script binds
  28. bind "1" "slot1; r_drawviewmodel 1; viewmodel_fov 54"
  29. bind "2" "slot2; r_drawviewmodel 0"
  30. bind "3" "slot3; r_drawviewmodel 1; viewmodel_fov 99"
  31. bind "q" "lastinv; r_drawviewmodel 1; viewmodel_fov desired 99"
  32.  
  33. bind "mouse1" "+attack"
  34. bind "mouse2" "+attack2"
  35.  
  36.  
  37. // crosshair script binds
  38. bind "SPACE" "+jump"
  39. bind "f" "+duck"
  40.  
  41. sensitivity 5// [5] Your default sens
  42.  
  43. cl_updaterate 100
  44. cl_cmdrate 100
  45. rate 60000
  46. cl_interp_ratio -1
  47. cl_interp .015
  48. cl_smooth 0
  49. cl_smoothtime 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement