Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public bool IsValidClient(int client)
  2. {
  3. if (!(1 <= client <= MaxClients) || !IsClientInGame(client) || !IsClientConnected(client) || IsFakeClient(client) || IsClientSourceTV(client))
  4. return false;
  5.  
  6. return true;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement