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

  1. // FILENAME:    DM_Avalanche.cs
  2. //
  3. // AUTHORS:      Chupie Doll & Youth in Asia
  4. //------------------------------------------------------------------------------
  5.  
  6. // this var 
  7. $missionName = "DM_Avalanche";
  8.  
  9. exec("multiplayerStdLib.cs");
  10. exec("DMstdLib.cs");
  11.  
  12. function setDefaultMissionOptions()
  13. {
  14.     $server::TeamPlay = false;
  15.     $server::AllowDeathmatch = true;
  16.     $server::AllowTeamPlay = true;    
  17.     
  18.     $server::AllowTeamRed = true;
  19.     $server::AllowTeamBlue = true;
  20.     $server::AllowTeamYellow = true;
  21.     $server::AllowTeamPurple = true;
  22. }
  23.  
  24. function onMissionStart()
  25. {
  26.     iceSounds();
  27. }
  28.  
  29. function onMissionLoad(){
  30.    cdAudioCycle("Gnash", "Cloudburst", "Cyberntx"); 
  31. }