Advertisement
Guest User

Untitled

a guest
Jan 21st, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. //xhair color toggle--delete this to keep your xhair from flashing
  2. //=========================================================
  3. alias dotxhaircolor "dotxhaircolorb"
  4. alias dotxhaircolorb "cl_crosshair_blue 0; cl_crosshair_green 255; cl_crosshair_red 0;alias dotxhaircolor dotxhaircolorc" //Green
  5. alias dotxhaircolorc "cl_crosshair_blue 255; cl_crosshair_green 0; cl_crosshair_red 255;alias dotxhaircolor dotxhaircolord" //Purple
  6. alias dotxhaircolord "cl_crosshair_blue 240; cl_crosshair_green 255; cl_crosshair_red 0;alias dotxhaircolor dotxhaircolorb" //Cyan
  7. //=========================================================
  8.  
  9.  
  10.  
  11. // bind "w" +fw
  12. // alias +fw "+forward;dotxhaircolor"
  13. // alias -fw "-forward;dotxhaircolor"
  14.  
  15. // bind "s" +bw
  16. // alias +bw "+back;dotxhaircolor"
  17. // alias -bw "-back;dotxhaircolor"
  18.  
  19. // bind "d" +mr
  20. // alias +mr "+moveright;dotxhaircolor"
  21. // alias -mr "-moveright;dotxhaircolor"
  22.  
  23. // bind "a" +ml
  24. // alias +ml "+moveleft;dotxhaircolor"
  25. // alias -ml "-moveleft;dotxhaircolor"
  26. "
  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;dotxhaircolor"
  37. alias +mback "-forward;+back;alias checkback +back;dotxhaircolor"
  38. alias +mleft "-moveright;+moveleft;alias checkleft +moveleft;dotxhaircolor"
  39. alias +mright "-moveleft;+moveright;alias checkright +moveright;dotxhaircolor"
  40. alias -mfwd "-forward;checkback;alias checkfwd none;dotxhaircolor"
  41. alias -mback "-back;checkfwd;alias checkback none;dotxhaircolor"
  42. alias -mleft "-moveleft;checkright;alias checkleft none;dotxhaircolor"
  43. alias -mright "-moveright;checkleft;alias checkright none;dotxhaircolor"
  44. alias checkfwd none
  45. alias checkback none
  46. alias checkleft none
  47. alias checkright none
  48. alias none ""
  49.  
  50. // Crouch Jump Script
  51. //alias "+jumpec" "+jump; +duck;dotxhaircolor;spec_mode;+moveup"
  52. //alias "-jumpec" "-duck; -jump;dotxhaircolor;-moveup"
  53. //bind "space" "+jumpec"
  54.  
  55. // Normal Jump Script
  56. alias "+jumpeh" "+jump;dotxhaircolor;spec_mode;+moveup"
  57. alias "-jumpeh" "-jump;dotxhaircolor;-moveup"
  58. bind "space" "+jumpeh"
  59.  
  60. // set crouch to move you downward in water
  61. bind "ctrl" "+dk;dotxhaircolor"
  62. alias +dk "+duck;+movedown;dotxhaircolor"
  63. alias -dk "-duck;-movedown;dotxhaircolor"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement