home *** CD-ROM | disk | FTP | other *** search
/ Hacker 5 / HACKER05.ISO / Igre / Incoming / incoming.EXE / asc / africa / africa_action.mdl next >
Text File  |  1998-03-16  |  17KB  |  842 lines

  1. drag_coeff    0.01        
  2. gravity        2.2
  3.  
  4. #=====================================================
  5. # Weapons ODL
  6.  
  7. ;GREEN ENERGY LASER    hitpoints    30
  8. ;GREEN LASER         hitpoints    32
  9. ;BLUE LASER            hitpoints    16
  10. ;RED LASER            hitpoints    24
  11. ;PURPLE LASER        hitpoints    12
  12.  
  13. ;PLASMA BOLT 1        hitpoints    30
  14. ;PLASMA BOLT 2        hitpoints    25
  15. ;PLASMA BOLT 3        hitpoints    15
  16. ;PLASMA BOLT 4        hitpoints    20
  17.  
  18. ;ROCKET 1            hitpoints    150
  19. ;ROCKET 2            hitpoints    500
  20. ;GUIDED MISSILE        hitpoints    120
  21. ;TRACER SHOT 1        hitpoints    110
  22.  
  23. ;BOMB 1                hitpoints    500
  24. ;DESIGNATOR            hitpoints    0
  25. ;FOAM                hitpoints    0
  26.  
  27. ;ENERGY 1            hitpoints    150
  28. ;ENERGY 2            hitpoints    50
  29.  
  30. ;BIG SHELL            hitpoints    32
  31. #=====================================================
  32. phasestart
  33.  
  34. phasemessage 85 30
  35. playcdslow
  36.  
  37. clear_flag all
  38.  
  39. critical_group "adata"
  40.  
  41. create "helicopter"
  42.     label "rez"
  43.     position 41321 -122 49574
  44.     forward -0.5 0 -0.8 up 0 1 0
  45.     armed_with "PURPLE LASER"    rate 2
  46.     secondary_armed_with "GUIDED MISSILE" rate 64 rounds 20
  47.     inert
  48.  
  49. create "tank1"
  50.     label "spikee"
  51.     position 14500 on ground 15000
  52.     forward 1 0 0 up 0 1 0
  53. ;    armed_with "RED LASER"    rate 6
  54.     armed_with "ROCKET 1" rate 32
  55. ;    secondary_armed_with "GUIDED MISSILE" rate 64 rounds 20
  56. ;    secondary_armed_with "ROCKET 1" rate 16 rounds 20
  57.     inert
  58.  
  59. create "laser gun"
  60.     label "rowla"
  61.     position 46951 on ground 43875
  62.     forward -0.5 0 0.8 up 0 1 0
  63.     armed_with "GREEN LASER"    rate 2
  64.     inert
  65.  
  66. create "rack"
  67.     position 46494 on ground 44332
  68.     forward 0.5 0 0.8 up 0 1 0
  69.     armed_with "GUIDED MISSILE"    rate 64
  70.     task
  71.         slave_to "rowla"
  72.     end
  73.  
  74. create "laser gun"
  75.     label "pearl"
  76.     position 37261 on ground 50165
  77.     forward -1 0 0 up 0 1 0
  78.     armed_with "GREEN LASER"    rate 2
  79.     inert
  80.  
  81. create "rack"
  82.     position 36803 on ground 49675
  83.     forward 0.5 0 0.8 up 0 1 0
  84.     armed_with "GUIDED MISSILE"    rate 64
  85.     inert
  86.     task
  87.         slave_to "pearl"
  88.     end
  89.  
  90. create hero "laser gun"
  91.     label "banstyle"
  92.     position 37200 on ground 42201
  93.     forward -0.8 0 -0.5 up 0 1 0
  94.     armed_with "GREEN LASER"    rate 2
  95.     task
  96.         wait_until flag 0 set
  97.         playercontrols
  98.     end
  99.  
  100. create "rack"
  101.     position 36780 on ground 41773
  102.     forward 0.5 0 0.8 up 0 1 0
  103.     armed_with "GUIDED MISSILE"    rate 64
  104.     task
  105.         slave_to "banstyle"
  106.     end
  107.  
  108. hud off
  109. camera
  110.     attached_to "hero"
  111.     position 600 -300 -600
  112.     pointing_at "hero"
  113.     dolly 0
  114. pause 40
  115. set_flag 0
  116.  
  117. camera cockpit
  118.  
  119. create "tranheli"
  120.     position 40000 -1200 36000
  121.     task
  122.         goto 35000 -600 42000
  123.         goto 37500 -1000 46000
  124.         goto 65000 -3400 65000
  125.         kill
  126.     end
  127.  
  128. ;----------------------------
  129. ;first 2 waves
  130.  
  131. procedure "a1"
  132.     create "lfighter"
  133.         position 27580 -1100 29500
  134.         towards "hero"
  135.         armed_with "PURPLE LASER"    rate 6
  136.         task
  137.             patrol
  138.                 point 28920 -1640 34824
  139.                 point 36200 -700 41670
  140.                 point 37900 -950 42790
  141.                 point 36860 -2900 36150
  142.         end
  143.  
  144.     pause 30
  145. end_procedure terminate after 4 loops
  146.  
  147. pause 60
  148. #....................................................................
  149.     phasemessage 26 30
  150.  
  151.     play_speech "incoming alien fighters"
  152. #....................................................................
  153.  
  154. wait_until proc "a1" terminated
  155. wait_until number_of "aliens" = 0
  156.  
  157. procedure "a1"
  158.     create "lfighter"
  159.         position 21420 -2380.2 43450.8
  160.         towards "hero"
  161.         task
  162.             patrol
  163.                 point 25902 -1841.2 35409.8
  164.                 point 35548.8 -821.2 41675
  165.                 point 37980.8 -1681.2 42581.8
  166.                 point 40255.6 -3465.1 49358.6
  167. ;                point 19634.1 -3021.2 37580.8
  168.  
  169.         end
  170.  
  171.     pause 30
  172. end_procedure terminate after 4 loops
  173.  
  174. wait_until proc "a1" terminated
  175. wait_until number_of "aliens" = 0
  176.  
  177.  
  178. ;----------------------------
  179.  
  180. create "lbomber"
  181. ;path red1
  182.     position 22000 -2300 40000
  183.     towards "hero"
  184.     armed_with "PLASMA BOLT 4" rate 4
  185.     task
  186.         patrol
  187.             point 35000 -2300 40000
  188.             point 37500 -2300 40000
  189.             point 38000 -2300 45000
  190.             point 30000 -2300 42500
  191.     end
  192.     
  193. pause 100
  194.  
  195.  
  196. create "lfighter"
  197. ;path pink2
  198.     position 20000 -3100 42200
  199.     towards "hero"
  200.     armed_with "PLASMA BOLT 3" rate 8
  201.     task
  202.             goto 31500 -3100 42200
  203.             goto 32500 -2400 42200
  204.             goto 34000 -2000 42200
  205.             goto 35500 -1600 42200
  206.             goto 38000 -1400 42200
  207.         patrol
  208.             point 36000 -3100 47000
  209.             point 40000 -3100 40000
  210.             point 38000 -3100 36000
  211.             point 35000 -3100 35000
  212.             point 33000 -3100 46000
  213.             break_task_if number_of "aliens" <2
  214.         attack "hero"
  215.     end
  216.     
  217. create "lfighter"
  218. ;path pink3
  219.     position 15000 -2800 39000
  220.     towards "hero"
  221.     armed_with "PLASMA BOLT 3" rate 8
  222.     task
  223.         patrol
  224.             point 37500 -2800 37500
  225.             point 40000 -2800 42000
  226.             point 35000 -2800 46000
  227.             point 31000 -2800 42000
  228.             point 31000 -2800 36000
  229.             break_task_if number_of "aliens" <5
  230.         attack "hero"
  231.     end
  232.     
  233. pause 40
  234.  
  235. create "lbomber"
  236.     position 25000 -2100 39000
  237.     towards "hero"
  238.     armed_with "PLASMA BOLT 4" rate 4
  239.     task
  240.         patrol
  241.             point 35000 -1900 37500
  242.             point 40000 -1900 40000
  243.             point 36000 -1900 46000
  244.             point 32500 -1900 44000
  245.     end
  246.  
  247. pause 200
  248.  
  249. create "lfighter"
  250.     position 5000 -3400 30000
  251.     towards "hero"
  252.     armed_with "PLASMA BOLT 3" rate 8
  253.     task
  254.         goto 20000 -3400 40000
  255.         goto 30000 -3400 42200
  256.         goto 31000 -2400 42200
  257.         goto 32000 -2200 42200
  258.         goto 33000 -2000 42200
  259.         goto 34000 -1800 42200
  260.         goto 35000 -1600 42200
  261.         goto 38000 -1400 42200
  262.         patrol
  263.              point 41000 -3400 42200
  264.             point 40000 -3400 45000
  265.             point 30000 -3400 40000
  266.             point 29000 -3400 38000
  267.             point 32500 -3400 35000
  268.             break_task_if number_of "aliens" <2
  269.         attack "hero"
  270.     end
  271.     
  272. create "lfighter"
  273.     position 15000 -2500 40000
  274.     towards "hero"
  275.     armed_with "PLASMA BOLT 3" rate 8
  276.     task
  277.         patrol
  278.             point 35000 -2500 45000
  279.             point 39000 -2500 42000
  280.             point 37000 -2500 38000
  281.             point 32500 -2500 37500
  282.             point 32500 -2500 42000
  283.             break_task_if number_of "aliens" <5
  284.         attack "hero"
  285.  
  286.     end
  287.     
  288. create "lbomber"
  289.     position 25000 -500 34500
  290.     towards "hero"
  291.     armed_with "PLASMA BOLT 4" rate 4
  292.     task
  293.              goto 37500 -700 42500
  294.             goto 40000 -1000 40000
  295.             goto 38500 -1500 37500
  296.         patrol
  297.             point 34000 -1700 39000
  298.             point 37000 -1700 47000
  299.             point 40000 -1700 45000
  300.             point 39000 -1700 42000
  301.             point 37500 -1700 41000
  302.     end
  303.  
  304. create "tranheli"
  305.     position 37500 -3000 57500
  306.     task
  307.         goto 36000 -2500 53000
  308.         goto 34000 -2000 50000
  309.         goto 33000 -2000 47000
  310.         goto 37500 -2000 47000
  311.         goto 60000 -3000 47000
  312.         kill
  313.     end
  314.  
  315. create "tranheli"
  316.     position 40000 -4800 20000
  317.     forward -1 0 0 up 0 1 0
  318.     task
  319.         goto 35000 -4800 40000
  320.         goto 40000 -600 50000
  321.         goto 55000 -4000 40000
  322.         kill
  323.     end
  324.  
  325. procedure "a"
  326.     wait_until number_of_baddies < 22
  327.  
  328.     create "lfighter"
  329.         position 27500 -4000 25000
  330.         towards "hero"
  331.         armed_with "PLASMA BOLT 3" rate 8
  332.         task
  333.             goto 34000 -4000 44000
  334.             shoot
  335.             goto 38000 -4000 44000
  336.             shoot
  337.             goto 39000 -4000 40000
  338.             shoot
  339.             goto 27500 -4000 25000
  340.             kill
  341.         end
  342.    pause 1200
  343. do_procedure_until number_of "aliens" <3
  344.  
  345. procedure "b"
  346.     pause 50
  347.     wait_until number_of_baddies < 22
  348.     create "lfighter"
  349.         position 22500 -4400 31000
  350.         towards "hero"
  351.         armed_with "PLASMA BOLT 3" rate 8
  352.         task
  353.             goto 33000 -4400 44000
  354.             shoot
  355.             goto 37000 -4400 43000
  356.             shoot
  357.             goto 37500 -4400 39000
  358.             shoot
  359.             goto 22500 -4400 31000
  360.             kill
  361.         end
  362.     pause 1000
  363. do_procedure_until number_of "aliens" <4
  364.  
  365. procedure "c"
  366.     pause 100
  367.     wait_until number_of_baddies < 22
  368.     create "lfighter"
  369.         position 20000 -4800 45000
  370.         towards "hero"
  371.         armed_with "PLASMA BOLT 3" rate 8
  372.         task
  373.             goto 35000 -4800 37500
  374.             shoot
  375.             goto 37500 -4800 40000
  376.             shoot
  377.             goto 37000 -4800 43000
  378.             shoot
  379.             goto 20000 -4800 45000
  380.              kill
  381.         end
  382.     pause 800
  383. do_procedure_until number_of "aliens" <5
  384.  
  385. create "tranheli"
  386.     position 60000 -2300 50000
  387.     forward -1 0 0 up 0 1 0
  388.     task
  389.         goto 40000 -2300 42500
  390.         goto 30000 -600 37500
  391.         goto 20000 -2500 30000
  392.         kill
  393.     end
  394.  
  395. wait_until number_of "aliens" =0
  396.  
  397. end_procedure "a"
  398. end_procedure "b"
  399. end_procedure "c"
  400.  
  401. #....................................................................
  402.     phasemessage 25 30
  403.  
  404.     play_speech "incoming alien craft"
  405. #....................................................................
  406.  
  407. create "lfighter"
  408.     position 45780.7 -801.2 57207.5
  409.     towards "hero"
  410.     armed_with "PLASMA BOLT 3" rate 4
  411.     task
  412.         goto 44820.9 -2011.2 52759.4
  413.         goto 42411.7 -2851.2 46658.1
  414.         attack "hero"
  415.     end
  416. pause 30
  417.  
  418.  
  419. procedure "a1"
  420.     create "lfighter"
  421.         position 45780.7 -801.2 57207.5
  422.         towards "hero"
  423.         task
  424.             patrol
  425.                 point 44820.9 -2011.2 52759.4
  426.                 point 42411.7 -2851.2 46658.1
  427.                 point 37155.6 -551.2 42836.6
  428.                 point 35229.8 -1461.2 39685.4
  429.                 point 34942.1 -3461.2 48188
  430.         end
  431.     pause 30
  432. end_procedure terminate after 2 loops
  433.  
  434. wait_until proc "a1" terminated
  435.  
  436. create "lfighter"
  437.     position 48544.9 -616.438 43517.7
  438.     towards "hero"
  439.     armed_with "PLASMA BOLT 3" rate 4
  440.     task
  441.         patrol
  442.             point 46531.2 -1090.15 45691.1
  443.             point 43920.5 -2333.05 45947.4
  444.             point 38340.5 -740.886 42777.7
  445.             point 35968 -2308.35 38655.1
  446.             point 42888.1 -3192.52 36984.1
  447.     end
  448. pause 30
  449.  
  450.  
  451. procedure "a2"
  452.     create "lfighter"
  453.         position 48544.9 -616.438 43517.7
  454.         towards "hero"
  455.         task
  456.             patrol
  457.                 point 46531.2 -1090.15 45691.1
  458.                 point 43920.5 -2333.05 45947.4
  459.                 point 38340.5 -740.886 42777.7
  460.                 point 35968 -2308.35 38655.1
  461.                 point 42888.1 -3192.52 36984.1
  462.         end
  463.     pause 30
  464. end_procedure terminate after 2 loops
  465.  
  466. wait_until proc "a2" terminated
  467.  
  468. wait_until number_of "aliens" =0
  469.  
  470. #....................................................................
  471.     phasemessage 10 60
  472.  
  473.     play_speech "phase complete"
  474. #....................................................................
  475.  
  476. pause 20
  477.  
  478. set_flag 10
  479.  
  480. kill group "aihuman"
  481.  
  482. hud off
  483. camera
  484.     attached_to "hero"
  485.     position 600 -300 -600
  486.     pointing_at "hero"
  487.     dolly 0
  488. pause 40
  489.  
  490. ;-------------------------------------------------------
  491. ;PHASE 2
  492. ;-------------------------------------------------------
  493.  
  494. phasestart
  495.  
  496. clear_flag all
  497.  
  498. create "recpod2"
  499.     label "dark"
  500. ;    mission_critical
  501.     position 22500 on ground 42500
  502.     inert
  503.     task
  504.         wait_until flag 3 set
  505.         bepod
  506.         set_flag 1
  507. ;        take_to 0 -100 0 relative to "replen1"
  508.         take_to 0 -150 0 relative to "P2pad"
  509.         set_flag 2
  510.         pause 70
  511.         kill
  512.     end
  513.  
  514.  
  515. create "AItank1"
  516.     position 22800 on ground 41800
  517.     label "cnvyA"
  518.  
  519. switch_hero "rez"
  520.     task
  521.         wait_until flag 0 set
  522.         playercontrols
  523.             break_task_if distance_between "rez" and "dark" <2000 and flag 3 set
  524.         playercontrolswithrope from "dark" to 0 -150 0 relative to "P2pad"
  525.     end
  526.  
  527. set_waypoint "dark"
  528.  
  529. camera_task
  530.     hud off
  531.     cam_pos 600 -200 -600 attached_to "hero"
  532.     cam_focus "hero"
  533.     dolly 0
  534.     set_flag 0
  535.  
  536.     cam_goto -600 -200 -600
  537.     wait_until distance_between "hero" and "replen1" > 500
  538.  
  539.     cam_mode cockpit
  540.  
  541.     wait_until    distance_between "hero" and "dark" <2000 and flag 3 set
  542.     cam_pos 0 0 -2000 attached_to "dark"
  543.     cam_focus "hero"
  544.     hud off
  545.  
  546.     pause 20
  547.     cam_goto 1000 0 0
  548.  
  549.     wait_until flag 1 set
  550.     cam_mode cockpit
  551.  
  552.     wait_until    distance_between "hero" and "Rdrop" <2000
  553.     cam_pos waypoint
  554. ;    0 0 -2000 attached_to "replen1"
  555.     cam_focus "hero"
  556.     hud off
  557.  
  558.     pause 50
  559. ;    cam_goto 1000 -200 1000
  560. end
  561.  
  562. #....................................................................
  563.     phasemessage 86 60
  564.  
  565.     play_speech "follow waypoint marker"
  566. #....................................................................
  567.  
  568.  
  569. wait_until distance_between "rez" and "dark" <12000
  570.  
  571. #....................................................................
  572.     phasemessage 30 60
  573.  
  574.     play_speech "destroy alien surface craft"
  575. #....................................................................
  576.  
  577. clear_waypoint
  578.  
  579. create "AItank2"
  580.     position 21000 on ground 40500
  581.     forward -1 0 0 up 0 1 0
  582.     armed_with "RED LASER" rate 64
  583.     task
  584.             wait_until number_of "aliens">1
  585.             attack
  586.             goto 22600 on ground 43500
  587.     end
  588.  
  589. create "AItank2"
  590.     position 19000 on ground 42500
  591.     forward -1 0 0 up 0 1 0
  592.     armed_with "RED LASER" rate 64
  593.     task
  594.             wait_until number_of "aliens">1
  595.             attack
  596.             goto 22000 on ground 41800
  597.     end
  598.  
  599. create "atank"
  600.     position 11000 on ground 40000
  601.     forward 1 0 0 up 0 1 0
  602.     armed_with "PLASMA BOLT 1" rate 28
  603.     task
  604.         attack
  605.     end
  606.  
  607. create "atank"
  608.     position 8000 on ground 37500
  609.     forward 1 0 0 up 0 1 0
  610.     armed_with "PLASMA BOLT 1" rate 28
  611.     task
  612.         attack
  613.     end
  614.  
  615. ;------------
  616. ;convoy
  617.  
  618. create "atank"
  619.     position 13627.3 on ground 21100.4
  620.     armed_with "PLASMA BOLT 1" rate 28
  621.     task
  622.         patrol
  623.             point 12378.7 on ground 30264.5
  624.             point 18460 on ground 40820
  625.             point 20760 on ground 41250
  626.             point 24190 on ground 40670
  627.             break_task_if distance_between 24190 on ground 40670 and me < 1200
  628.             attack "rad4"
  629.             attack "hero"
  630.     end
  631. pause 50
  632.  
  633. create "atank"
  634.     position 13627.3 on ground 21100.4
  635.     armed_with "PLASMA BOLT 1" rate 28
  636.     task
  637.         patrol
  638.             point 12378.7 on ground 30264.5
  639.             point 18460 on ground 40820
  640.             point 20760 on ground 41250
  641.             point 24190 on ground 40670
  642.             break_task_if distance_between 24190 on ground 40670 and me < 1200
  643.             attack "rad4"
  644.             attack "hero"
  645.     end
  646. pause 50
  647.  
  648. create "atank"
  649.     position 13627.3 on ground 21100.4
  650.     armed_with "PLASMA BOLT 1" rate 28
  651.     task
  652.         patrol
  653.             point 12378.7 on ground 30264.5
  654.             point 18460 on ground 40820
  655.             point 20760 on ground 41250
  656.             point 26900 on ground 36850
  657.             break_task_if distance_between 26900 on ground 36850 and me < 1200
  658.             attack "rad5"
  659.             attack "hero"
  660.     end
  661. pause 50
  662.  
  663. create "atank"
  664.     position 13627.3 on ground 21100.4
  665.     armed_with "PLASMA BOLT 1" rate 28
  666.     task
  667.         patrol
  668.             point 12378.7 on ground 30264.5
  669.             point 18460 on ground 40820
  670.             point 20760 on ground 41250
  671.             point 26900 on ground 36850
  672.             break_task_if distance_between 26900 on ground 36850 and me < 1200
  673.             attack "rad5"
  674.             attack "hero"
  675.     end
  676.  
  677. ;------------
  678.  
  679.  
  680. create "lfighter"
  681.     position 12938 -1416 26491
  682.     towards "hero"
  683.     armed_with "PLASMA BOLT 3" rate 8
  684.     task
  685.         attack "hero"
  686.     end
  687.  
  688.  
  689. create "lfighter"
  690.     position 42500 -2600 9000
  691.     towards "hero"
  692.     armed_with "PLASMA BOLT 3" rate 8
  693.     task
  694.         patrol
  695.             point 11500 -3000 35000
  696.             point 7500 -3000 35000
  697.             point 5000 -3000 38000
  698.             point 10000 -3000 42000
  699.             point 12500 -3000 39000
  700.             break_task_if number_of "aland" <2
  701.             attack group "aihuman"
  702.             attack
  703.     end
  704.  
  705. procedure "n"
  706.     set_waypoint nearest "aland"
  707. do_procedure_until number_of "aland" = 0
  708.  
  709. wait_until number_of "aland" =0
  710. end_procedure "n"
  711.  
  712.  
  713. create "lfighter"
  714.     position 12938 -1416 26491
  715.     towards "hero"
  716.     armed_with "PLASMA BOLT 3" rate 8
  717.     task
  718.         attack "hero"
  719.     end
  720.  
  721.  
  722. create "lfighter"
  723.     position 42500 -2600 9000
  724.     towards "hero"
  725.     armed_with "PLASMA BOLT 3" rate 8
  726.     task
  727.         attack "hero"
  728.     end
  729.  
  730. wait_until number_of "aliens" =0
  731.  
  732. set_flag 3
  733. set_waypoint "dark"
  734. #....................................................................
  735.     phasemessage 50 30
  736.  
  737.     play_speech "follow waypoint marker"
  738. #....................................................................
  739.  
  740.  
  741.  
  742. wait_until distance_between "hero" and waypoint <2000
  743. #....................................................................
  744.     phasemessage 64 60
  745.  
  746.     play_speech "retrieve recon pod"
  747. #....................................................................
  748.  
  749. wait_until flag 1 set
  750. #....................................................................
  751.     phasemessage 50 30
  752.  
  753.     play_speech "follow waypoint marker"
  754. #....................................................................
  755.  
  756.  
  757. wait_until flag 2 set
  758. pause 1
  759. clear_waypoint
  760.  
  761. #....................................................................
  762.     phasemessage 10 60
  763.  
  764.     play_speech "phase complete"
  765. #....................................................................
  766.  
  767.  
  768. pause 20
  769.  
  770. kill group "aihuman"
  771.  
  772. pause 100
  773.  
  774. ;-------------------------------------------------------
  775. ;PHASE 3
  776. ;-------------------------------------------------------
  777.  
  778. usable "rowla"
  779. usable "pearl"
  780. usable "banstyle"
  781.  
  782. #===================================
  783.  
  784. phasestart
  785.  
  786. #....................................................................
  787.     phasemessage 29 60
  788.  
  789.     play_speech "incoming alien tanks"
  790. #....................................................................
  791.  
  792.  
  793. clear_flag all
  794.  
  795. switch_hero "spikee"
  796.     task
  797.         wait_until flag 0 set
  798.         do
  799.             playercontrols
  800.                 break_task_if flag 10 set
  801.         until flag 10 set
  802.     end
  803.  
  804. hud off
  805. camera
  806.     attached_to "hero"
  807.     position 600 -200 -600
  808.     pointing_at "hero"
  809.     dolly 0
  810. pause 40
  811. set_flag 0
  812.  
  813. camera cockpit
  814.  
  815. set_inert "rez"
  816. set_task "rez"
  817.         position 41321 -152 49574
  818.         secondary_armed_with "GUIDED MISSILE" rate 64 rounds 20
  819. ;        secondary_armed_with "ROCKET 2" rate 20 rounds 20
  820.     end
  821.  
  822. create "tranheli"
  823.     position 10000 -800 15000
  824.     task
  825.         goto 20000 -1000 20000
  826.         goto 25000 -1000 25000
  827.         goto 35000 -2000 45000
  828.         kill
  829.     end
  830.  
  831. create "atank"
  832.     position 11000 on ground 27500
  833.     towards "hero"
  834.     armed_with "PLASMA BOLT 1" rate 14
  835.     task
  836.         goto 12000 on ground 20000
  837.         attack "hero"
  838.     end
  839. ;-------------------------------------------------------
  840. ;END OF SCENARIO
  841. ;-------------------------------------------------------
  842.