JademusSreg

PlayerGroupDoSomething

May 7th, 2011
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. void PlayerGroupDoSomething (playergroup g) {
  2.     //playergroup g = PlayerGroupActive();
  3.     int count = PlayerGroupCount(g);
  4.     int player;
  5.     int i = 1;
  6.     while (i <= count) {
  7.         player = PlayerGroupPlayer(g,i);
  8.         // Do something
  9.         i+=1;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment