Advertisement
Chdata

autoexec.cfg } Chdata's autoexec

Jul 13th, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. exec class.cfg
  2.  
  3. cl_showpos 1;
  4. cl_showfps 1;
  5. bind DEL explode; // Suicide button
  6.  
  7. // VSH chat binds
  8. bind ] "say /halehp";
  9. bind \ "say /nextmap";
  10.  
  11. // Toggle thirdperson mode on modded servers
  12. // By: Chdata
  13. alias "TP" "ToggleTP";
  14. alias "ToggleTP" "say /tp; alias TP TPToggle";
  15. alias "TPToggle" "say /fp; alias TP ToggleTP";
  16. bind z "TP";
  17. // bind z "say /3"; // For Skial servers
  18.  
  19. // Press x to autowalk forward
  20. // By: Chdata
  21. alias "FW" "ToggleFW";
  22. alias "ToggleFW" "+forward; alias FW FWToggle";
  23. alias "FWToggle" "-forward; alias FW ToggleFW";
  24. bind x FW;
  25.  
  26. // Null Movement Canceling Script with autowalk compatibility
  27. // By: stabby stabby
  28. bind w +mfwd;
  29. bind s +mback;
  30. bind a +mleft;
  31. bind d +mright;
  32.  
  33. alias +mfwd "-back;+forward;alias checkfwd +forward";
  34. alias +mback "-forward;+back;alias checkback +back;alias FW ToggleFW";
  35. alias +mleft "-moveright;+moveleft;alias checkleft +moveleft";
  36. alias +mright "-moveleft;+moveright;alias checkright +moveright";
  37. alias -mfwd "-forward;checkback;alias checkfwd none;alias FW ToggleFW";
  38. alias -mback "-back;checkfwd;alias checkback none";
  39. alias -mleft "-moveleft;checkright;alias checkleft none";
  40. alias -mright "-moveright;checkleft;alias checkright none";
  41. alias checkfwd none;
  42. alias checkback none;
  43. alias checkleft none;
  44. alias checkright none;
  45. alias none "";
  46.  
  47. // Pocket Purrer Fix
  48. r_eyes 1;
  49. r_flex 1;
  50. r_lod 1;
  51. r_rootlod 1;
  52. r_teeth 1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement