home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Issue 2 / Freelog_HS_3_Setp_Oct_Nov_2000_CD2.mdx / Arcade / Orbit / missions / saturn03.msn < prev    next >
Text File  |  1999-08-05  |  1KB  |  77 lines

  1. /*
  2.  *  Clean up Enceladus
  3.  */
  4.  
  5. Verbose
  6.  
  7. /* Set up Titan Base */
  8. Include titanbase.inc
  9.  
  10. /* Player */
  11. Cursor { TitanBase -1000 }
  12. Player { }
  13.  
  14. Briefing
  15. {
  16.     Mission: Saturn Cleanup\\
  17.     The last of the alien presence has been located near
  18.     Enceladus.  Proceed to the moon and eradicate the enemy.
  19. }
  20.  
  21. /* Bad guys */
  22. Cursor { Enceladus +0 +0 +4000 }
  23. Object { Name Fighter1 Model medium1.tri Score 1 Strategy Hunt2 }
  24. Cursor { Enceladus +0 +0 -4000 }
  25. Object { Name Fighter2 Model medium1.tri Score 1 Strategy Hunt1 }
  26. Cursor { Enceladus +0 +4000 }
  27. Object { Name Fighter3 Model medium1.tri Score 1 Strategy Hunt2 }
  28. Cursor { Enceladus +0 -4000 }
  29. Object { Name Fighter4 Model medium1.tri Score 1 Strategy Hunt1 }
  30.  
  31. Event
  32. {
  33.     Name loadsuccess
  34.     Disabled
  35.     Trigger Alarm
  36.     Value 10.0
  37.  
  38.     Action LoadMission
  39.     Value saturn04.msn
  40. }
  41.  
  42. Cursor { TitanBase }
  43.  
  44. Event
  45. {
  46.     Name returnsuccess
  47.     Disabled
  48.     Trigger StopNear
  49.     Value 1000
  50.  
  51.     Action Enable
  52.     Value loadsuccess
  53.  
  54.     Action Message
  55.     Value
  56.     {
  57.         [TitanBase] Nice job!  The aliens have been eliminated
  58.         completely from the Saturn system.
  59.     }
  60. }
  61.  
  62. Event
  63. {
  64.     Trigger Score
  65.     Value 4
  66.  
  67.     Action Enable
  68.     Value returnsuccess
  69.  
  70.     Action Message
  71.     Value
  72.     {
  73.         [computer] Mission successful.  Return to base.
  74.     }
  75. }
  76.  
  77.