keybode

css v34 speedhack ( CL_Move hook )

Feb 11th, 2015
606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. void Hooked_CL_Move(float accumulated_extra_samples, bool bFinalTick) {
  2.     if (GetAsyncKeyState('E')) {
  3.         for (int i = 0; i < 5; i++)
  4.             CL_Move(accumulated_extra_samples, false);
  5.     }
  6.  
  7.     CL_Move(accumulated_extra_samples, bFinalTick);
  8. }
Add Comment
Please, Sign In to add comment