Advertisement
Dragonflare921

Untitled

Dec 17th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. (script dormant void enc_b_convoy_attack
  2. (begin
  3. (object_destroy wraith_bomb_1)
  4. (object_destroy wraith_bomb_2)
  5. (object_destroy wraith_bomb_3)
  6. (sleep 300)
  7. (object_create_anew enc_b_creep)
  8. (object_create_anew enc_b_shadow)
  9. (object_create_anew enc_b_wraith)
  10. (object_create_anew enc_b_ghost_left)
  11. (object_create_anew enc_b_ghost_right)
  12. (object_create_anew enc_b_ghost_left_2)
  13. (object_create_anew enc_b_ghost_right_2)
  14. (unit_set_enterable_by_player enc_b_creep false)
  15. (sound_looping_set_alternate sound\music\battle1\brothers_in_arms true)
  16. (object_can_take_damage enc_b_rocket_odst)
  17. (ai_place enc_b_covenant/creep_infantry)
  18. (ai_place enc_b_covenant/creep_driver)
  19. (ai_place enc_b_covenant/creep_gunner)
  20. (ai_place enc_b_covenant/shadow_driver)
  21. (ai_place enc_b_covenant/shadow_gunner)
  22. (ai_place enc_b_covenant/wraith_driver)
  23. (ai_place enc_b_covenant/ghost_left_driver)
  24. (ai_place enc_b_covenant/ghost_right_driver)
  25. (ai_place enc_b_covenant/ghost_left_driver_2)
  26. (ai_place enc_b_covenant/ghost_right_driver_2)
  27. (vehicle_load_magic enc_b_creep passenger
  28. (ai_actors enc_b_covenant/creep_infantry))
  29. (vehicle_load_magic enc_b_creep driver
  30. (ai_actors enc_b_covenant/creep_driver))
  31. (vehicle_load_magic enc_b_creep gunner
  32. (ai_actors enc_b_covenant/creep_gunner))
  33. (vehicle_load_magic enc_b_shadow driver
  34. (ai_actors enc_b_covenant/shadow_driver))
  35. (vehicle_load_magic enc_b_shadow gunner
  36. (ai_actors enc_b_covenant/shadow_gunner))
  37. (vehicle_load_magic enc_b_wraith driver
  38. (ai_actors enc_b_covenant/wraith_driver))
  39. (vehicle_load_magic enc_b_ghost_left driver
  40. (ai_actors enc_b_covenant/ghost_left_driver))
  41. (vehicle_load_magic enc_b_ghost_right driver
  42. (ai_actors enc_b_covenant/ghost_right_driver))
  43. (vehicle_load_magic enc_b_ghost_left_2 driver
  44. (ai_actors enc_b_covenant/ghost_left_driver_2))
  45. (vehicle_load_magic enc_b_ghost_right_2 driver
  46. (ai_actors enc_b_covenant/ghost_right_driver_2))
  47. (device_set_power enc_b_tunnel_door 1.00)
  48. (device_set_position enc_b_tunnel_door 1.00)
  49. (ai_place enc_b_human/hog_1_passenger)
  50. (ai_place enc_b_human/hog_r_passenger)
  51. (object_create_anew hog_1_gunner)
  52. (ai_attach hog_1_gunner enc_b_human/hog_1_gunner)
  53. (object_create_anew hog_r_gunner)
  54. (ai_attach hog_r_gunner enc_b_human/hog_r_gunner)
  55. (vehicle_load_magic hog_1 passenger
  56. (ai_actors enc_b_human/hog_1_passenger))
  57. (vehicle_load_magic hog_r passenger
  58. (ai_actors enc_b_human/hog_r_passenger))
  59. (vehicle_load_magic hog_1 gunner
  60. (ai_actors enc_b_human/hog_1_gunner))
  61. (vehicle_load_magic hog_r gunner
  62. (ai_actors enc_b_human/hog_r_gunner))
  63. (wake hog_manager)
  64. (wake door_controller)
  65. (sound_looping_start sound\sfx\impulse\doors\b40_garage none 1.00)
  66. (ai_command_list_advance enc_b_human/odst)
  67. (sleep 300)
  68. (sound_looping_stop sound\sfx\impulse\doors\b40_garage)
  69. (sleep 180)
  70. (ai_magically_see_encounter enc_b_human enc_b_covenant/wraith_driver)
  71. (sleep 420)
  72. (vehicle_unload enc_b_creep passenger)
  73. (sleep 180)
  74. (ai_command_list_advance enc_b_covenant/wraith_driver)
  75. (ai_command_list_advance enc_b_covenant/shadow_driver)
  76. (ai_command_list_advance enc_b_covenant/ghost_left_driver)
  77. (ai_command_list_advance enc_b_covenant/ghost_right_driver)
  78. (ai_command_list_advance enc_b_human/odst)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement