Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. if (shot)
  2. {
  3. if (c_config::get().hide_shot)
  4. {
  5. static int32_t iTicks = 72;
  6. if (iTicks <= 0)
  7. {
  8. Globals::bSendPacket = false;
  9. iTicks = 0;
  10. }
  11. else
  12. {
  13. Globals::bSendPacket = true;
  14. iTicks--;
  15. }
  16. }
  17. shot = false;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement