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

  1. /*
  2.  *  Proceed to Jupiter
  3.  */
  4.  
  5. Verbose
  6.  
  7. /* Titan base */
  8. Include titanbase.inc
  9.  
  10. Cursor { TitanBase -1000 }
  11. Player { }
  12.  
  13. Briefing
  14. {
  15.     Mission:  Reassignment to Jupiter\\
  16.     The alien artifact is some sort of data storage device.
  17.     Information retrieved from the artifact reveals that the
  18.     entire alien presence in the Saturn system was a deception!\\
  19.     The aliens are planning a large invasion of the Jupiter
  20.     system.\\
  21.     Proceed to Io station (waypoint 1) immediately.
  22. }
  23.  
  24. /* Io base */
  25. Include iobase.inc
  26. Waypoint { }
  27.  
  28. Event
  29. {
  30.     Trigger Approach
  31.     Value 10000
  32.  
  33.     Action Message
  34.     Value
  35.     {
  36.         [IoBase] Good to see you, sir.  The base is under attack!
  37.         She's about to blow!
  38.     }
  39. }
  40.  
  41. /* Bad guys */
  42. Cursor { IoBase +2000 }
  43. Object { Name Fighter1 Model light2.tri Score 1 Strategy Hunt3 }
  44. Cursor { IoBase -2000 +1500 +300 }
  45. Object { Name Fighter2 Model light2.tri Score 1 Strategy Hunt3 }
  46. Cursor { IoBase +100 -2500 -400 }
  47. Object { Name Fighter3 Model light2.tri Score 1 Strategy Hunt3 }
  48.  
  49. Cursor { IoBase }
  50. Event
  51. {
  52.     Name rendezvous
  53.  
  54.     Trigger StopNear
  55.     Value 1000
  56.     Disabled
  57.  
  58.     Action Enable
  59.     Value loadnext
  60.  
  61.     Action Message
  62.     Value
  63.     {
  64.         [IoBase] Mission successful.  Await further orders.
  65.     }
  66. }
  67.  
  68. Event
  69. {
  70.     Name loadlose
  71.     Disabled
  72.  
  73.     Trigger Alarm
  74.     Value 10
  75.  
  76.     Action LoadMission
  77.     Value lose.msn
  78. }
  79.  
  80. Event
  81. {
  82.     Trigger Destroy
  83.     Value IoBase
  84.  
  85.     Action Enable
  86.     Value loadlose
  87.  
  88.     Action Message
  89.     Value
  90.     {
  91.         [IoBase] Augh!  We're hit!
  92.     }
  93. }
  94.  
  95. Event
  96. {
  97.     Trigger Score
  98.     Value 3
  99.  
  100.     Action Enable
  101.     Value rendezvous
  102.  
  103.     Action Message
  104.     Value
  105.     {
  106.         [IoBase] Way to go!  The base is safe.  You're cleared
  107.         for docking.
  108.     }
  109. }
  110.  
  111. Event
  112. {
  113.     Name loadnext
  114.  
  115.     Disabled
  116.     Trigger Alarm
  117.     Value 10
  118.  
  119.     Action LoadMission
  120.     Value jupiter2.msn
  121. }
  122.  
  123.