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

  1. /*
  2.  *  Training mission #01
  3.  */
  4.  
  5. /* Verbose reporting from the mission loader */
  6. Verbose
  7.  
  8. Cursor
  9. {
  10.     Earth -15000
  11. }
  12.  
  13. /* Put player here */
  14. Player { }
  15.  
  16. Briefing
  17. {
  18.     Training Mission #01: One small step\\
  19.     In this training session you will learn how to move your
  20.     ship using your low-speed engines.\\
  21.     Your objective is to fly from Earth orbit to the Moon
  22.     and back again.\\
  23.     Follow the instructions which will appear on the screen.\\
  24.     Briefing concluded.  Good luck, sir!\\
  25.     You may press 'M' to remove this message from your screen.\\
  26.     Press 'B' at any time to see this briefing again.
  27. }
  28.  
  29. Event
  30. {
  31.     Name e1
  32.     Trigger Alarm
  33.     Value 30.0
  34.  
  35.     Action Message
  36.     Value
  37.     {
  38.         Press 'N' to see the names of objects and planets.\\
  39.         Use the joystick to point your ship toward the moon.\\
  40.         Then hold 'A' to accelerate toward the moon.\\
  41.         Your current velocity is shown to the left of the
  42.         HUD.  Increase speed to about 10000 kps.
  43.     }
  44. }
  45.  
  46. Cursor { Earth }
  47.  
  48. Event
  49. {
  50.     Trigger Depart
  51.     Value 20000.0
  52.  
  53.     Action Message
  54.     Value
  55.     {
  56.         You can use 'Z' to slow down.\\
  57.         You can use SPACE to come to a full stop.
  58.     }
  59.  
  60.     Action Disable
  61.     Value e1
  62. }
  63.  
  64. Cursor { Moon }
  65.  
  66. Event
  67. {
  68.     Trigger Approach
  69.     Value 75000.0
  70.  
  71.     Action Message
  72.     Value
  73.     {
  74.         You are approaching the Moon.\\
  75.         Be prepared to stop using the SPACE key.
  76.     }
  77. }
  78.  
  79. Event
  80. {
  81.     Trigger Approach
  82.     Value 15000.0
  83.  
  84.     Action Message
  85.     Value
  86.     {
  87.         You have reached the moon.  Congratulations!\\
  88.         Now turn your ship around and head back to Earth.
  89.     }
  90.  
  91.     Action Enable
  92.     Value e2
  93. }
  94.  
  95. Cursor { Earth }
  96.  
  97. Event
  98. {
  99.     Name e2
  100.     Disabled
  101.  
  102.     Trigger Approach
  103.     Value 20000
  104.  
  105.     Action Message
  106.     Value
  107.     {
  108.         You did it!  Now you know how to maneuver your
  109.         ship at low speeds.\\
  110.         Please wait a few seconds for the next
  111.         training mission to begin.
  112.     }
  113.  
  114.     Action Enable
  115.     Value e3
  116.  
  117.     Action Stop
  118. }
  119.  
  120. Event
  121. {
  122.     Name e3
  123.     Disabled
  124.  
  125.     Trigger Alarm
  126.     Value 10.0
  127.  
  128.     Action LoadMission
  129.     Value train02.msn
  130. }
  131.  
  132.  
  133.