Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. kickFakeClients()
  2. {
  3.     self endon("disconnect");
  4.  
  5.     if (self isBot())
  6.         return;
  7.  
  8.     if (self getClientState() >= 3)
  9.         return;
  10.  
  11.     wait 3.5;
  12.  
  13.     if (self getClientState() != 2)
  14.         return;
  15.  
  16.     if (self getLastMSG() >= 3500)
  17.         kick2(self getEntityNumber(), "EXE_CANNOTVALIDATEPURECLIENT");
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement