home *** CD-ROM | disk | FTP | other *** search
/ Classic Fond 54 / ClassicFond54.iso / games / stars.rar / Server_CTF_ALL.cs < prev    next >
Text File  |  1999-02-22  |  5KB  |  116 lines

  1. // FILENAME: Server_CTF_ALL.cs
  2. //
  3. //Capture the flag Server with no limitations
  4.  
  5.  
  6. exec(serverLocation);
  7. //-------------------------------------------------
  8. //  RC file to start a server automatically
  9. //-------------------------------------------------
  10.  
  11. //-------------------------------------------------
  12. // Edit the parameters of this file to configure
  13. // your server options. Use notepad, not a word
  14. // processor. File must be saved as text only.
  15. //-------------------------------------------------
  16.  
  17. //-------------------------------------------------
  18. // Type the name for your server inside the quotes
  19. // Must be less then 22 characters
  20. //-------------------------------------------------
  21. $server::Hostname =                                strcat($Location, ": CTF All");
  22.  
  23. //-------------------------------------------------
  24. // Password Protection. Leave blank for none.
  25. // Quotes optional.
  26. //-------------------------------------------------
  27. $server::Password =                                 "";
  28.  
  29. //-------------------------------------------------
  30. // Maximum player limit. 16 is highest recommended.
  31. //-------------------------------------------------
  32. $server::MaxPlayers =                              16;
  33.  
  34. //-------------------------------------------------
  35. // Number of kills before server cycles.
  36. // If zero, kills are never reset.
  37. //-------------------------------------------------
  38. $server::FragLimit =                               0;
  39.  
  40. //-------------------------------------------------
  41. // Time limit in minutes before server cycles.
  42. // Must be a positive integer.
  43. //-------------------------------------------------
  44. $server::TimeLimit =                               20;
  45.  
  46. //-------------------------------------------------
  47. // Mass limit per player
  48. // Must be a positive integer or zero for no limit.
  49. //-------------------------------------------------
  50. $server::MassLimit =                                0;
  51.  
  52. //-------------------------------------------------
  53. // Combat Value limit per player
  54. // Must be a positive integer or zero for no limit.
  55. //-------------------------------------------------
  56. $server::CombatValueLimit =                         0;
  57.  
  58. //-------------------------------------------------
  59. // Team play options. TeamPlay false =  deathmatch.
  60. // TeamPlay true = teams
  61. //-------------------------------------------------
  62. $server::TeamPlay =                                true;
  63.  
  64. //-------------------------------------------------
  65. // Team Mass limit - valid only when teamPlay is true
  66. // Must be a positive integer or zero for no limit.
  67. //-------------------------------------------------
  68. $server::TeamMassLimit =                            0;
  69.  
  70. //-------------------------------------------------
  71. // Team Combat Value Limit - valid only when teamPlay is true
  72. // Must be a positive integer or zero for no limit.
  73. //-------------------------------------------------
  74. $server::TeamCombatValueLimit =                     0;
  75.  
  76. //-------------------------------------------------
  77. // Tech Level Limit
  78. // Must be a positive integer less then or
  79. // equal to 128 or zero for no limit.
  80. //-------------------------------------------------
  81. $server::TechLevelLimit =                          0;
  82.  
  83. //-------------------------------------------------
  84. // Drop In Progress
  85. // Does server allow drop in progress??
  86. //-------------------------------------------------
  87. $server::DropInProgress =                            TRUE  ;
  88.  
  89. $server::AllowMixedTech =                            TRUE  ;
  90. $server::FactoryVehOnly =                           FALSE  ;
  91. $server::AllowTeamRed =                             FALSE  ;
  92. $server::AllowTeamYellow =                          FALSE  ;
  93. $server::AllowTeamBlue =                             TRUE  ;
  94. $server::AllowTeamPurple =                           TRUE  ;
  95.  
  96. //-------------------------------------------------
  97. // Mission rotation list. This is the order the
  98. // worlds will cycle in a game with either the frag
  99. // or time limits set.
  100. //-------------------------------------------------
  101. $MissionCycling::Stage0 =                          "CTF_Winter_Wasteland";
  102. $MissionCycling::Stage1 =                          "CTF_Circular_Logic";
  103. $MissionCycling::Stage2 =                          "CTF_Balance_of_Power";
  104. $MissionCycling::Stage3 =                          "CTF_City_on_the_Edge";
  105.  
  106. //-------------------------------------------------
  107. // Start mission. Defines which mission from the
  108. // rotation list the server starts on.
  109. //-------------------------------------------------
  110. $server::Mission =                                  $MissionCycling::Stage0;
  111.  
  112. //Vehicles
  113. allowVehicle(                                      all,      TRUE  );
  114. allowComponent(                                    all,      TRUE  );
  115. allowWeapon(                                       all,      TRUE  );
  116.