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

  1. /*
  2.  *  Use Bertha to knock 'em out
  3.  */
  4.  
  5. Verbose
  6.  
  7. Include marssci.inc
  8. Waypoint { }
  9.  
  10. Cursor { MarsSci -700 +200 }
  11. Player { }
  12.  
  13. Briefing
  14. {
  15.     Mission:  Big Bertha\\
  16.     This is it!  Your mission is to patrol your waypoints and
  17.     knock out all four alien solar collectors.\\
  18.     Don't forget Bertha's short range and long recharge time.  If
  19.     you use any other weapon you will need to wait a full minute
  20.     for Bertha to recharge.\\
  21.     Okay, now go kick some alien butt and let's blow this joint!
  22. }
  23.  
  24. /* Bertha Butt, of the Butt sisters */
  25. Include bertha.inc
  26.  
  27. /* Waypoint 2 */
  28. Cursor { 0 0 0 }
  29. Cursor { +10000000 +0 +0 }
  30. Waypoint { }
  31. Include coll3.inc
  32. Include squad1.inc
  33.  
  34. /* Waypoint 3 */
  35. Cursor { 0 0 0 }
  36. Cursor { +0 +10000000 +0 }
  37. Waypoint { }
  38. Include coll3.inc
  39. Include squad2.inc
  40. Cursor { -4000 }
  41. Object
  42. {
  43.     Name Destroyer
  44.     Model dest1.tri
  45.     Strategy Hunt3
  46.     TurnRate 0.1
  47.     Speed 0.01
  48.     MaxShields 200
  49.     Weapon 2
  50. }
  51.  
  52. /* Waypoint 4 */
  53. Cursor { 0 0 0 }
  54. Cursor { -10000000 +0 +0 }
  55. Waypoint { }
  56. Include coll3.inc
  57. Include squad3.inc
  58.  
  59. /* Waypoint 5 */
  60. Cursor { 0 0 0 }
  61. Cursor { +0 -10000000 +0 }
  62. Waypoint { }
  63. Include coll3.inc
  64. Include squad4.inc
  65.  
  66. Event
  67. {
  68.     Name loadsuccess
  69.     Disabled
  70.     Trigger Alarm
  71.     Value 10.0
  72.  
  73.     Action LoadMission
  74.     Value pluto1.msn
  75. }
  76.  
  77. Event
  78. {
  79.     Name loadfailure
  80.     Disabled
  81.     Trigger Alarm
  82.     Value 10.0
  83.  
  84.     Action LoadMission
  85.     Value lose.msn
  86. }
  87.  
  88. Cursor { MarsSci }
  89. Event
  90. {
  91.     Name returnfailure
  92.     Disabled
  93.     Trigger StopNear
  94.     Value 1000
  95.  
  96.     Action Enable
  97.     Value loadfailure
  98.  
  99.     Action Message
  100.     Value
  101.     {
  102.         [MarsSci] Mission failed! 
  103.     }
  104. }
  105.  
  106. Event
  107. {
  108.     Name returnsuccess
  109.     Disabled
  110.     Trigger StopNear
  111.     Value 1000
  112.  
  113.     Action Enable
  114.     Value loadsuccess
  115.  
  116.     Action Message
  117.     Value
  118.     {
  119.         [MarsSci] Break out the champagne!  The aliens are
  120.         retreating!
  121.     }
  122. }
  123.  
  124. Event
  125. {
  126.     Trigger Depart
  127.     Value 10000
  128.  
  129.     Action Enable
  130.     Value returnfailure
  131. }
  132.  
  133. Event
  134. {
  135.     Trigger Score
  136.     Value 4
  137.  
  138.     Action Enable
  139.     Value returnsuccess
  140.  
  141.     Action Disable
  142.     Value returnfailure
  143.  
  144.     Action Message
  145.     Value
  146.     {
  147.         [computer] Mission successful.  Return to base.
  148.     }
  149. }
  150.  
  151.