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

  1. /*
  2.  *  Find alien comm station in saturn's rings
  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: Dead Ringer\\
  17.     Telemetry indicates that the aliens may be hiding
  18.     a communications station within the rings of Saturn.  The
  19.     tech guys say the most likely location is the
  20.     Cassini division, a wide gap in the rings.  The station is
  21.     probably heavily defended and shielded.
  22.     Your mission is to search the rings for the comm station
  23.     and, if it exists, destroy it.\\
  24.     Good hunting!
  25. }
  26.  
  27. /* Bad guys */
  28. Cursor { Saturn +120000 }
  29. Object
  30. {
  31.     Name CommStation
  32.     Model comm1.tri
  33.     Strategy DoNothing
  34.     Score 1
  35.     MaxShields 500
  36. }
  37.  
  38. Cursor { CommStation +0 +2000 }
  39. Object { Name Fighter1 Model light2.tri Strategy Hunt2 }
  40. Cursor { CommStation +0 -2000 }
  41. Object { Name Fighter2 Model light2.tri Strategy Hunt1 }
  42. Cursor { CommStation +0 +0 +2000 }
  43. Object { Name Fighter3 Model light2.tri Strategy Hunt2 }
  44. Cursor { CommStation +0 +0 -2000 }
  45. Object { Name Fighter4 Model light2.tri Strategy Hunt1 }
  46.  
  47. Event
  48. {
  49.     Name loadsuccess
  50.     Disabled
  51.     Trigger Alarm
  52.     Value 10.0
  53.  
  54.     Action LoadMission
  55.     Value saturn03.msn
  56. }
  57.  
  58. Event
  59. {
  60.     Name loadfailure
  61.     Disabled
  62.     Trigger Alarm
  63.     Value 10.0
  64.  
  65.     Action LoadMission
  66.     Value saturn02.msn
  67. }
  68.  
  69. Cursor { TitanBase }
  70. Event
  71. {
  72.     Name returnfailure
  73.     Disabled
  74.     Trigger StopNear
  75.     Value 1000
  76.  
  77.     Action Enable
  78.     Value loadfailure
  79.  
  80.     Action Message
  81.     Value
  82.     {
  83.         [TitanBase] Mission failed! You didn't destory the comm
  84.         station. Await further orders.
  85.     }
  86. }
  87.  
  88. Event
  89. {
  90.     Name returnsuccess
  91.     Disabled
  92.     Trigger StopNear
  93.     Value 1000
  94.  
  95.     Action Enable
  96.     Value loadsuccess
  97.  
  98.     Action Message
  99.     Value
  100.     {
  101.         [TitanBase] Great job!  Without that comm station the
  102.         aliens will have a rough time.  Await further orders.
  103.     }
  104. }
  105.  
  106. Event
  107. {
  108.     Trigger Depart
  109.     Value 10000
  110.  
  111.     Action Enable
  112.     Value returnfailure
  113. }
  114.  
  115. Event
  116. {
  117.     Trigger Score
  118.     Value 1
  119.  
  120.     Action Enable
  121.     Value returnsuccess
  122.  
  123.     Action Disable
  124.     Value returnfailure
  125.  
  126.     Action Message
  127.     Value
  128.     {
  129.         [computer] Mission successful.  Return to base.
  130.     }
  131. }
  132.  
  133.