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

  1. // FILENAME:    DM_Twin_Siege.cs
  2. //
  3. // AUTHORS:      Chupie Doll & Youth in Asia
  4. //------------------------------------------------------------------------------
  5.  
  6. $missionName = "DM_Twin_Siege";
  7.  
  8. exec("multiplayerStdLib.cs");
  9. exec("DMstdLib.cs");
  10.  
  11. function setDefaultMissionOptions()
  12. {
  13.     $server::TeamPlay = false;
  14.     $server::AllowDeathmatch = true;
  15.     $server::AllowTeamPlay = true;    
  16.  
  17.     $server::AllowTeamRed = true;
  18.     $server::AllowTeamBlue = true;
  19.     $server::AllowTeamYellow = true;
  20.     $server::AllowTeamPurple = true;
  21. }
  22.  
  23. function onMissionLoad(){
  24.    cdAudioCycle("Watching", "Mechsoul", "Gnash"); 
  25. }
  26.  
  27. // move the map
  28. $server::HudMapViewOffsetX = 7500;
  29. $server::HudMapViewOffsetY = -6000;
  30.  
  31. function onMissionStart()
  32. {
  33.     titanSounds();
  34. }
  35.  
  36.