home *** CD-ROM | disk | FTP | other *** search
/ Classic Fond 54 / ClassicFond54.iso / games / stars.rar / multiplayer / DM_Mercury_Rising.cs < prev    next >
Text File  |  1999-02-19  |  733b  |  35 lines

  1. // FILENAME:    DM_Mercury_Rising.cs
  2. //
  3. // AUTHORS:      GMAN
  4. //------------------------------------------------------------------------------
  5.  
  6. $missionName = "DM_Mercury_Rising";
  7.  
  8. $server::HudMapViewOffsetX = 500; 
  9. $server::HudMapViewOffsetY = 4000; 
  10.  
  11. exec("multiplayerStdLib.cs");
  12. exec("DMstdLib.cs");
  13.  
  14. function setDefaultMissionOptions()
  15. {
  16.     $server::TeamPlay = false;
  17.     $server::AllowDeathmatch = true;
  18.     $server::AllowTeamPlay = true;    
  19.     
  20.     $server::AllowTeamRed = true;
  21.     $server::AllowTeamBlue = true;
  22.     $server::AllowTeamYellow = true;
  23.     $server::AllowTeamPurple = true;
  24. }
  25.  
  26. function onMissionStart()
  27. {
  28.     mercurySounds();
  29. }
  30.  
  31. function onMissionLoad(){
  32.    cdAudioCycle("Gnash", "Cloudburst", "Cyberntx"); 
  33. }
  34.  
  35.