Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void PlayerGroupDoSomething (playergroup g) {
- //playergroup g = PlayerGroupActive();
- int count = PlayerGroupCount(g);
- int player;
- int i = 1;
- while (i <= count) {
- player = PlayerGroupPlayer(g,i);
- // Do something
- i+=1;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment