Advertisement
Guest User

Pyro/bleed script

a guest
Jan 26th, 2015
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. developer 1
  2. echo "default settings loaded"
  3. developer 0
  4.  
  5. // viewmodel/combination script binds
  6. bind "0" "slot10"
  7. bind "mouse5" "slot1"
  8. bind "mouse3" "slot2"
  9. bind "mouse4" "slot3"
  10. bind "4" "slot4"
  11. bind "q" "lastinv"
  12.  
  13. bind "mouse1" "+attack"
  14. bind "mouse2" "+attack2"
  15.  
  16.  
  17. // crosshair script binds
  18. bind "a" "+moveleft"
  19. bind "d" "+moveright"
  20. bind "s" "+back"
  21. bind "w" "+forward"
  22. bind "SPACE" "+jump"
  23. bind "ctrl" "+duck"
  24.  
  25. sensitivity 2
  26. r_drawviewmodel 1
  27.  
  28. // Null-cancelling movement script
  29. // (prevents you from pressing two opposing directions, which causes you to stop moving)
  30.  
  31. bind w +mfwd
  32. bind s +mback
  33. bind a +mleft
  34. bind d +mright
  35.  
  36. alias +mfwd "-back;+forward;alias checkfwd +forward"
  37. alias +mback "-forward;+back;alias checkback +back"
  38. alias +mleft "-moveright;+moveleft;alias checkleft +moveleft"
  39. alias +mright "-moveleft;+moveright;alias checkright +moveright"
  40. alias -mfwd "-forward;checkback;alias checkfwd none"
  41. alias -mback "-back;checkfwd;alias checkback none"
  42. alias -mleft "-moveleft;checkright;alias checkleft none"
  43. alias -mright "-moveright;checkleft;alias checkright none"
  44. alias checkfwd none
  45. alias checkback none
  46. alias checkleft none
  47. alias checkright none
  48. alias none ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement