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

  1. /*
  2.  *  Just go get some guys at Dione and Mimas
  3.  */
  4.  
  5. Verbose
  6.  
  7. /* Set up player */
  8. Cursor { Titan +10500 }
  9. Player { }
  10.  
  11. /* Titan Base */
  12. Include titanbase.inc
  13.  
  14. /* Bad guys at Dione */
  15. Cursor { Dione +5000 }
  16. Object { Name Fighter1 Model light2.tri Strategy Hunt1 Score 1 }
  17. Cursor { +1000 }
  18. Object { Name Fighter2 Model light2.tri Strategy Hunt1 Score 1 }
  19. Cursor { -500 +700 }
  20. Object { Name Fighter3 Model light2.tri Strategy Hunt1 Score 1 }
  21.  
  22. /* And at Mimas */
  23. Cursor { Mimas +5000 }
  24. Object { Name Fighter4 Model light1.tri Hidden Strategy Hunt1 Score 1 }
  25. Cursor { +1000 }
  26. Object { Name Fighter5 Model light1.tri Hidden Strategy Hunt1 Score 1 }
  27. Cursor { -500 +700 }
  28. Object { Name Fighter6 Model light1.tri Hidden Strategy Hunt1 Score 1 }
  29.  
  30. /* And at Tethys */
  31. Cursor { Tethys +5000 }
  32. Object { Name Fighter7 Model light2.tri Hidden Strategy Hunt1 Score 1 }
  33. Cursor { +1000 }
  34. Object { Name Fighter8 Model light2.tri Hidden Strategy Hunt1 Score 1 }
  35. Cursor { -500 +700 }
  36. Object { Name Fighter9 Model light2.tri Hidden Strategy Hunt1 Score 1 }
  37. /* Briefing */
  38. Briefing
  39. {
  40.     Mission: Saturn Sweep\\
  41.     More alien activity as been detected near the moon Dione.\\
  42.     Your mission is to approach Dione and destroy any and all
  43.     alien forces.\\
  44.     Gook luck!
  45. }
  46.  
  47. /* Load next mission */
  48. Event
  49. {
  50.     Name LoadNext
  51.     Disabled
  52.     Trigger Alarm
  53.     Value 10
  54.  
  55.     Action LoadMission
  56.     Value saturn01.msn
  57. }
  58.  
  59. /* Return to base */
  60. Cursor { Titan +10000 }
  61. Event
  62. {
  63.     Name return
  64.     Trigger StopNear
  65.     Value 1000
  66.     Disabled
  67.  
  68.     Action Enable
  69.     Value LoadNext
  70.  
  71.     Action Message
  72.     Value
  73.     {
  74.         [Titan Base] Mission Successful!  Await further orders.
  75.     }
  76. }
  77.  
  78. /* Win */
  79. Event
  80. {
  81.     Trigger Score
  82.     Value 9
  83.  
  84.     Action Message
  85.     Value
  86.     {
  87.         [computer] Mission complete.  Return to base.
  88.     }
  89.  
  90.     Action Enable
  91.     Value return
  92. }
  93.  
  94. /* Got the first three guys */
  95. Event
  96. {
  97.     Trigger Score
  98.     Value 3
  99.  
  100.     /* Unhide guys at Mimas */
  101.     Action Unhide Value Fighter4
  102.     Action Unhide Value Fighter5
  103.     Action Unhide Value Fighter6
  104.  
  105.     Action Message
  106.     Value
  107.     {
  108.         [Titan Base] Good work!  We have a new report of
  109.         enemy activity at Mimas.  Proceed to Mimas and
  110.         eliminate all alien forces.
  111.     }
  112. }
  113.  
  114. /* Got the next three guys */
  115. Event
  116. {
  117.     Trigger Score
  118.     Value 6
  119.  
  120.     /* Unhide guys at Tethys */
  121.     Action Unhide Value Fighter7
  122.     Action Unhide Value Fighter8
  123.     Action Unhide Value Fighter9
  124.  
  125.     Action Message
  126.     Value
  127.     {
  128.         [Titan Base] Nice shooting!  Proceed now to
  129.         the moon Tethys and kick some more alien butt!
  130.     }
  131. }
  132.