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

  1. // FILENAME: Server_DM_ALL.cs
  2. //
  3. //Regular Deathmatch 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, ": DM 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 =                                FALSE;
  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.  
  92. //-------------------------------------------------
  93. // Mission rotation list. This is the order the
  94. // worlds will cycle in a game with either the frag
  95. // or time limits set.
  96. //-------------------------------------------------
  97. $MissionCycling::Stage0 =                          "DM_Avalanche";
  98. $MissionCycling::Stage1 =                          "DM_Terran_conquest";
  99. $MissionCycling::Stage2 =                          "DM_Bloody_Brunch";
  100. $MissionCycling::Stage3 =                          "DM_City_on_the_Edge";
  101. $MissionCycling::Stage4 =                          "DM_Cold_Titan_Night";
  102. $MissionCycling::Stage5 =                          "DM_Fear_in_Isolation";
  103. $MissionCycling::Stage6 =                          "DM_Heavens_Peak";
  104. $MissionCycling::Stage7 =                          "DM_Impact";
  105. $MissionCycling::Stage8 =                          "DM_Lunacy";
  106. $MissionCycling::Stage9 =                          "DM_Mercury_Rising";
  107. $MissionCycling::Stage10 =                         "DM_Moonstrike";
  108. $MissionCycling::Stage11 =                         "DM_Requiem_for_Gen_Lanz";
  109. $MissionCycling::Stage12 =                         "DM_Sacrifice_to_Bast";
  110. $MissionCycling::Stage13 =                         "DM_State_of_Confusion";
  111. $MissionCycling::Stage14 =                         "DM_The_Guardian";
  112. $MissionCycling::Stage15 =                         "DM_Twin_Siege";
  113.  
  114. //-------------------------------------------------
  115. // Start mission. Defines which mission from the
  116. // rotation list the server starts on.
  117. //-------------------------------------------------
  118. $server::Mission =                                  $MissionCycling::Stage0;
  119.  
  120. //Vehicles
  121. allowVehicle(                                      all,      TRUE  );
  122. allowComponent(                                    all,      TRUE  );
  123. allowWeapon(                                       all,      TRUE  );
  124.