Advertisement
ijontichy

derpACS.c

Mar 4th, 2013
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. function int PlayerTeamCount(int teamNo)
  2. {
  3.     int i, ret;
  4.     for (i = 0; i < 64; i++)  // PLAYERMAX == 64
  5.     {
  6.         if (GetPlayerInfo(i, PLAYERINFO_TEAM) == teamNO) { ret++; }
  7.     }
  8.    
  9.     return ret;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement