JademusSreg

PlayerGroupDoSomething v2

Jan 30th, 2012
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. void PlayerGroupDoSomething (playergroup g) {
  2.     //playergroup g = PlayerGroupActive();
  3.     int count;
  4.     int player;
  5.     for (count = PlayerGroupCount(g); count > 0; count-=1)
  6.     {
  7.         player = PlayerGroupPlayer(g,count);
  8.         // Do something
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment