Advertisement
Guest User

Untitled

a guest
May 28th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public nextmap()
  2. {
  3. for(new i = 0; i < MAX_PLAYERS; i++)
  4. if(cw1 == 1)
  5. {
  6. cw1 = 0;
  7. cw2 = 1;
  8. ForceClassSelection(i);
  9. TogglePlayerSpectating(i,1);
  10. SetTimer("stopspec",100,false);
  11. }
  12. else if(cw2 == 1)
  13. {
  14. cw2 = 0;
  15. cw1 = 1;
  16. ForceClassSelection(i);
  17. TogglePlayerSpectating(i,1);
  18. SetTimer("stopspec",100,false);
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement