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

  1. /*
  2.  *  Go to Mars science station
  3.  */
  4.  
  5. Verbose
  6.  
  7. Include iobase.inc
  8. Waypoint { }
  9.  
  10. /* Player */
  11. Cursor { -700 +200 }
  12. Player { }
  13.  
  14. Include marssci.inc
  15. Waypoint { }
  16.  
  17. Briefing
  18. {
  19.     Mission:  Inward to Mars\\
  20.     The alien construction appears to be some kind of energy
  21.     collection device.  It has been moved to the Mars Science
  22.     Station for further study.\\
  23.     Proceed to Mars and rendezvous with the Science Station.
  24. }
  25.  
  26. /* Solar collector */
  27. Cursor { MarsSci +5000 +0 -5000 }
  28. Include coll1.inc
  29.  
  30. /* Bad guys */
  31. Cursor { MarsSci +1000 +1000 +9000 }
  32. Cursor { +0 +0 +3000 }
  33. Object { Name Alpha1 Model light1.tri Strategy hunt3 Score 1 }
  34. Cursor { +0 +0 -3000 }
  35.  
  36. Cursor { -2000 -2000 -2000 }
  37. Object { Name Alpha2 Model light1.tri Strategy hunt3 Score 1 }
  38. Cursor { +2000 +2000 +2000 }
  39.  
  40. /* Destroyer */
  41. Cursor { MarsSci -1000 -1000 +8000 }
  42. Object
  43. {
  44.     Name Destroyer
  45.     Model dest1.tri
  46.     Strategy Hunt3
  47.     Score 1
  48.     TurnRate 0.1
  49.     Speed 0.001
  50.     MaxShields 200
  51.     Weapon 3
  52. }
  53.  
  54. Weapon
  55. {
  56.     Index 9
  57.     Yield 30
  58.     Color 0x00ffff
  59.     Renderer 2
  60. }
  61.  
  62. Cursor { +0 +2000 -2000 }
  63. Object { Name AlphaAce Model heavy1.tri Strategy hunt4 Weapon 9 Score 1 }
  64. Cursor { +0 -2000 +2000 }
  65.  
  66. Event
  67. {
  68.     Name loadsuccess
  69.     Disabled
  70.     Trigger Alarm
  71.     Value 10.0
  72.  
  73.     Action LoadMission
  74.     Value mars2.msn
  75. }
  76.  
  77. Cursor { MarsSci }
  78. Event
  79. {
  80.     Name returnsuccess
  81.     Disabled
  82.     Trigger StopNear
  83.     Value 1000
  84.  
  85.     Action Enable
  86.     Value loadsuccess
  87.  
  88.     Action Message
  89.     Value
  90.     {
  91.         [MarsSci] Welcome to Mars!  Stand by for further orders.
  92.     }
  93. }
  94.  
  95. Event
  96. {
  97.     Name loadfailure
  98.     Disabled
  99.     Trigger Alarm
  100.     Value 10.0
  101.  
  102.     Action LoadMission
  103.     Value lose.msn
  104. }
  105.  
  106. /* MarsSci is going down */
  107. Event
  108. {
  109.     Trigger Shields
  110.     Value { MarsSci 200 }
  111.  
  112.     Action Message
  113.     Value
  114.     {
  115.         [MarsSci] She's breaking up!
  116.     }
  117. }
  118.  
  119. /* Lose if MarsSci destroyed */
  120. Cursor { MarsSci }
  121. Event
  122. {
  123.     Trigger Destroy
  124.     Value MarsSci
  125.  
  126.     Action Message
  127.     Value
  128.     {
  129.         [MarsSci] Augh!!!
  130.     }
  131.  
  132.     Action Enable
  133.     Value loadfailure
  134.  
  135.     Action Boom
  136.     Value 3.0
  137. }
  138.  
  139. /* Got all the bad guys */
  140. Event
  141. {
  142.     Trigger Score
  143.     Value 4
  144.  
  145.     Action Enable
  146.     Value returnsuccess
  147.  
  148.     Action Message
  149.     Value
  150.     {
  151.         [MarsSci] Nice shooting!  The station is safe and you
  152.         are cleared to dock.
  153.     }
  154. }
  155.  
  156.