Advertisement
Guest User

penico

a guest
Jan 20th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. bind KP_HOME "say ¯\_(ツ)_/¯"
  2. bind KP_UPARROW "say ( ͡° ͜ʖ ͡°)"
  3. bind KP_PGUP "say ༼ つ ◕_◕ ༽つ"
  4. bind KP_LEFTARROW "say Saint Angerj wu: achei fácil"
  5. bind O "say essa vai pra montagi"
  6. bind P "say mum get the camera"
  7. bind I record fix; stop
  8.  
  9. hud_combattext_batching 1
  10.  
  11.  
  12. rate 100000
  13. cl_cmdrate 100
  14. cl_updaterate 100
  15. cl_interp 0.0152
  16. cl_interp_ratio 1
  17. cl_pred_optimize 2
  18. cl_smooth 0
  19. cl_smoothtime 0.01
  20.  
  21. // Null-cancelling movement script
  22. // (prevents you from pressing two opposing directions, which causes you to stop moving)
  23.  
  24. exec reset
  25. alias +mfwd "-back;+forward;alias checkfwd +forward"
  26. alias +mback "-forward;+back;alias checkback +back"
  27. alias +mleft "-moveright;+moveleft;alias checkleft +moveleft"
  28. alias +mright "-moveleft;+moveright;alias checkright +moveright"
  29. alias -mfwd "-forward;checkback;alias checkfwd none"
  30. alias -mback "-back;checkfwd;alias checkback none"
  31. alias -mleft "-moveleft;checkright;alias checkleft none"
  32. alias -mright "-moveright;checkleft;alias checkright none"
  33. alias checkfwd none
  34. alias checkback none
  35. alias checkleft none
  36. alias checkright none
  37. alias none ""
  38. bind "w" "+mfwd" //default "+forward"
  39. bind "a" "+mleft" //default "+moveleft"
  40. bind "s" "+mback" //default "+back"
  41. bind "d" "+mright" //default "+moveright"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement