Advertisement
Tustin

bolegdeh

Jan 30th, 2016
608
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. int delay = 200,
  2. last_tick = 0;
  3. void penis_hook()
  4. {
  5.     if (GET_GAME_TIMER() - last_tick > delay)
  6.     {
  7.         //stuff
  8.  
  9.         last_tick = GET_GAME_TIMER();
  10.     }
  11.    
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement