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

  1. /*
  2.  *  Alien blockade at Ganymede
  3.  */
  4.  
  5. Verbose
  6.  
  7. Include iobase.inc
  8. Waypoint { }
  9.  
  10. /* Player */
  11. Cursor { -1000 }
  12. Player { }
  13.  
  14. Briefing
  15. {
  16.     Mission:  Ganymede Blockade\\
  17.     Due to our failure to defend the Ganymede medical freighters,
  18.     the aliens have set up an intense blockade of the moon.\\
  19.     Proceed to Ganymede and eliminate the blockade or the colonists
  20.     will perish.
  21. }
  22.  
  23. /* Bad guys */
  24. Weapon
  25. {
  26.     Index 9
  27.     Yield 30
  28.     Color 0x00ffff
  29.     Renderer 2
  30. }
  31.  
  32. Cursor { Ganymede +2000 +2000 +2000 }
  33. Object { Name Platform1 Model platform.tri Strategy Sit2 Score 1 Weapon 9 }
  34. Cursor { Ganymede +2000 +2000 -2000 }
  35. Object { Name Platform2 Model platform.tri Strategy Sit2 Score 1 Weapon 9 }
  36. Cursor { Ganymede +2000 -2000 +2000 }
  37. Object { Name Platform3 Model platform.tri Strategy Sit2 Score 1 Weapon 9 }
  38. Cursor { Ganymede +2000 -2000 -2000 }
  39. Object { Name Platform4 Model platform.tri Strategy Sit2 Score 1 Weapon 9 }
  40. Cursor { Ganymede -2000 +2000 +2000 }
  41. Object { Name Platform5 Model platform.tri Strategy Sit2 Score 1 Weapon 9 }
  42. Cursor { Ganymede -2000 +2000 -2000 }
  43. Object { Name Platform6 Model platform.tri Strategy Sit2 Score 1 Weapon 9 }
  44. Cursor { Ganymede -2000 -2000 +2000 }
  45. Object { Name Platform7 Model platform.tri Strategy Sit2 Score 1 Weapon 9 }
  46. Cursor { Ganymede -2000 -2000 -2000 }
  47. Object { Name Platform8 Model platform.tri Strategy Sit2 Score 1 Weapon 9 }
  48.  
  49. Event
  50. {
  51.     Name loadsuccess
  52.     Disabled
  53.     Trigger Alarm
  54.     Value 10.0
  55.  
  56.     Action LoadMission
  57.     Value jupiter3.msn
  58. }
  59.  
  60. Event
  61. {
  62.     Name loadfailure
  63.     Disabled
  64.     Trigger Alarm
  65.     Value 10.0
  66.  
  67.     Action LoadMission
  68.     Value lose.msn
  69. }
  70.  
  71. Cursor { IoBase }
  72. Event
  73. {
  74.     Name returnfailure
  75.     Disabled
  76.     Trigger StopNear
  77.     Value 1000
  78.  
  79.     Action Enable
  80.     Value loadfailure
  81.  
  82.     Action Message
  83.     Value
  84.     {
  85.         [IoBase] Mission failed! 
  86.     }
  87. }
  88.  
  89. Event
  90. {
  91.     Name returnsuccess
  92.     Disabled
  93.     Trigger StopNear
  94.     Value 1000
  95.  
  96.     Action Enable
  97.     Value loadsuccess
  98.  
  99.     Action Message
  100.     Value
  101.     {
  102.         [IoBase] Mission Successful!  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 8
  119.  
  120.     Action Enable
  121.     Value returnsuccess
  122.  
  123.     Action Disable
  124.     Value returnfailure
  125.  
  126.     Action Message
  127.     Value
  128.     {
  129.         [Ganymede Colony] Thanks!  You saved our colony.
  130.     }
  131. }
  132.  
  133.