Advertisement
Guest User

Untitled

a guest
Feb 1st, 2013
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1.  
  2.  
  3. /*
  4. Serverside configs for switching players in your game between channels during briefing vs while in game
  5. This allows for dynamic TVT breifings without having to manually move peoples channels
  6.  
  7. */
  8. class TVT_ChannelSwitch {
  9.  
  10. mode = 0;
  11.  
  12. class gameChannel {
  13. id = 24;
  14. password = "";
  15.  
  16. joinDelay = 1;
  17. };
  18. class bluChannel {
  19. id = 25;
  20. password = "";
  21.  
  22. joinDelay = 1;
  23. };
  24. class redChannel {
  25. id = 27;
  26. password = "";
  27.  
  28. joinDelay = 1;
  29. };
  30. class civChannel {
  31. id = 28;
  32. password = "";
  33.  
  34. joinDelay = 1;
  35. };
  36. class indChannel {
  37. id = 29;
  38. password = "";
  39.  
  40. joinDelay = 1;
  41. };
  42. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement