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

  1. /*
  2.  *  Comm station moved to 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: If At First\\
  17.     The aliens have moved the comm station to an orbit around the
  18.     moon Enceladus.  It is imperative that the station be destroyed!
  19.     Proceed to Enceladus and knock out that comm station.
  20. }
  21.  
  22. /* Bad guys */
  23. Cursor { Enceladus +4000 -4000 +2000 }
  24. Object
  25. {
  26.     Name CommStation
  27.     Model comm1.tri
  28.     Strategy DoNothing
  29.     Score 1
  30.     MaxShields 500
  31. }
  32.  
  33. Cursor { CommStation +0 +2000 }
  34. Object { Name Fighter1 Model light2.tri Strategy Hunt2 }
  35. Cursor { CommStation +0 -2000 }
  36. Object { Name Fighter2 Model light1.tri Strategy Hunt1 }
  37. Cursor { CommStation +0 +0 +2000 }
  38. Object { Name Fighter3 Model light2.tri Strategy Hunt2 }
  39. Cursor { CommStation +0 +0 -2000 }
  40. Object { Name Fighter4 Model light1.tri Strategy Hunt1 }
  41.  
  42. Event
  43. {
  44.     Name loadsuccess
  45.     Disabled
  46.     Trigger Alarm
  47.     Value 10.0
  48.  
  49.     Action LoadMission
  50.     Value saturn04.msn
  51. }
  52.  
  53. Event
  54. {
  55.     Name loadfailure
  56.     Disabled
  57.     Trigger Alarm
  58.     Value 10.0
  59.  
  60.     Action LoadMission
  61.     Value lose.msn
  62. }
  63.  
  64. Cursor { TitanBase }
  65. Event
  66. {
  67.     Name returnfailure
  68.     Disabled
  69.     Trigger StopNear
  70.     Value 1000
  71.  
  72.     Action Enable
  73.     Value loadfailure
  74.  
  75.     Action Message
  76.     Value
  77.     {
  78.         [TitanBase] Mission failed! 
  79.     }
  80. }
  81.  
  82. Event
  83. {
  84.     Name returnsuccess
  85.     Disabled
  86.     Trigger StopNear
  87.     Value 1000
  88.  
  89.     Action Enable
  90.     Value loadsuccess
  91.  
  92.     Action Message
  93.     Value
  94.     {
  95.         [TitanBase] Great job!  Without that comm station the
  96.         aliens will have a rough time.  Await further orders.
  97.     }
  98. }
  99.  
  100. Event
  101. {
  102.     Trigger Depart
  103.     Value 10000
  104.  
  105.     Action Enable
  106.     Value returnfailure
  107. }
  108.  
  109. Event
  110. {
  111.     Trigger Score
  112.     Value 1
  113.  
  114.     Action Enable
  115.     Value returnsuccess
  116.  
  117.     Action Disable
  118.     Value returnfailure
  119.  
  120.     Action Message
  121.     Value
  122.     {
  123.         [computer] Mission successful.  Return to base.
  124.     }
  125. }
  126.  
  127.