Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Just use gvd:
  2. // gvd backwards toggle (yaw 180 & pitch 360)
  3.  
  4. alias "gvdbw" "gvdbw_on"
  5. alias "gvdbw_on" "kcc_fixedyaw 180; kcc_fixedpitch 360; alias gvdbw gvdbw_off"
  6. alias "gvdbw_off" "kcc_fixedyaw 0; kcc_fixedpitch 0; alias gvdbw gvdbw_on"
  7. bind "KEY" "gvdbw"
  8.  
  9.  
  10. // gvd sideways toggle (yaw 89 & pitch 0)
  11.  
  12. alias "gvdsw" "gvdsw_on"
  13. alias "gvdsw_on" "kcc_fixedyaw 89; kcc_fixedpitch 89; alias gvdsw gvdsw_off"
  14. alias "gvdsw_off" "kcc_fixedyaw 0; kcc_fixedpitch 0; alias gvdsw gvdsw_on"
  15. bind "KEY" "gvdsw"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement