├── Halo 2 Anniversary Multiplayer └── Windows - Retail Apr 13 2020 │ └── data │ └── globals │ └── scripts │ ├── global_abilities.hsc │ ├── global_ai.hsc │ ├── global_audio.hsc │ ├── global_camera.hsc │ ├── global_checkpoints.hsc │ ├── global_cinematic.hsc │ ├── global_cortana.hsc │ ├── global_devicemachines.hsc │ ├── global_dialog.hsc │ ├── global_lighting.hsc │ ├── global_logic.hsc │ ├── global_narrative.hsc │ ├── global_objects.hsc │ ├── global_physics.hsc │ ├── global_players.hsc │ ├── global_screenshake.hsc │ ├── global_scripts.hsc │ ├── global_zoneset.hsc │ ├── spops_ai.hsc │ ├── spops_audio.hsc │ ├── spops_blips.hsc │ ├── spops_global.hsc │ └── spops_narrative.hsc ├── Halo 2 ├── Windows - MCC Mod Tools Oct 9 2021 │ └── data │ │ ├── ai │ │ └── ai_dialogue_globals.csv │ │ ├── globals │ │ ├── armor_vs_damage.csv │ │ ├── armor_vs_damage.xls │ │ └── global_scripts.hsc │ │ └── scenarios │ │ ├── multi │ │ ├── backwash │ │ │ └── scripts │ │ │ │ └── backwash.hsc │ │ ├── colossus │ │ │ └── scripts │ │ │ │ └── colossus.hsc │ │ ├── containment │ │ │ └── scripts │ │ │ │ └── containment.hsc │ │ ├── dune │ │ │ └── scripts │ │ │ │ └── dune.hsc │ │ ├── elongation │ │ │ └── scripts │ │ │ │ └── elongation_mission.hsc │ │ ├── lockout │ │ │ └── scripts │ │ │ │ └── elevator.hsc │ │ ├── triplicate │ │ │ └── scripts │ │ │ │ └── triplicate.hsc │ │ └── turf │ │ │ └── scripts │ │ │ └── turf_mission.hsc │ │ └── solo │ │ ├── 00a_introduction │ │ └── scripts │ │ │ ├── 00a_introduction_prediction.hsc │ │ │ └── introduction_cinematics.hsc │ │ ├── 01a_tutorial │ │ └── scripts │ │ │ ├── 01a_tutorial_cinematics.hsc │ │ │ └── 01a_tutorial_mission.hsc │ │ ├── 01b_spacestation │ │ └── scripts │ │ │ ├── 01b_spacestation_base.hsc │ │ │ ├── 01b_spacestation_cinematics.hsc │ │ │ ├── 01b_spacestation_mission.hsc │ │ │ └── 01b_spacestation_prediction.hsc │ │ ├── 03a_oldmombasa │ │ ├── earthcity_e3 │ │ │ └── scripts │ │ │ │ ├── earthcity_e3_cinematics.hsc │ │ │ │ ├── earthcity_e3_mission.hsc │ │ │ │ └── earthcity_e3_start.hsc │ │ └── scripts │ │ │ ├── 03a_oldmombasa_cinematics.hsc │ │ │ ├── 03a_oldmombasa_mission.hsc │ │ │ ├── 03a_oldmombasa_prediction.hsc │ │ │ ├── earthcity_cinematics.hsc │ │ │ └── earthcity_mission.hsc │ │ ├── 03b_newmombasa │ │ └── scripts │ │ │ ├── 03b_newmombasa_cinematics.hsc │ │ │ ├── 03b_newmombasa_mission.hsc │ │ │ └── 03b_newmombasa_prediction.hsc │ │ ├── 04a_gasgiant │ │ └── scripts │ │ │ ├── 04a_gasgiant_cinematics.hsc │ │ │ ├── 04a_gasgiant_mission.hsc │ │ │ ├── 04a_gasgiant_prediction.hsc │ │ │ └── 04a_gasgiant_teleport.hsc │ │ ├── 04b_floodlab │ │ └── scripts │ │ │ ├── 04b_floodlab_cinematics.hsc │ │ │ ├── 04b_floodlab_mission.hsc │ │ │ ├── 04b_floodlab_prediction.hsc │ │ │ └── 04b_floodlab_teleport.hsc │ │ ├── 05a_deltaapproach │ │ └── scripts │ │ │ ├── 05a_deltaapproach_cinematics.hsc │ │ │ ├── 05a_deltaapproach_mission.hsc │ │ │ ├── 05a_deltaapproach_prediction.hsc │ │ │ └── 05a_deltaapproach_teleport.hsc │ │ ├── 05b_deltatowers │ │ └── scripts │ │ │ ├── 05b_deltatowers_cinematics.hsc │ │ │ ├── 05b_deltatowers_mission.hsc │ │ │ ├── 05b_deltatowers_prediction.hsc │ │ │ └── 05b_deltatowers_teleport.hsc │ │ ├── 06a_sentinelwalls │ │ └── scripts │ │ │ ├── sentinelwalls_cinematics.hsc │ │ │ ├── sentinelwalls_mission.hsc │ │ │ ├── sentinelwalls_prediction.hsc │ │ │ └── sentinelwalls_teleport.hsc │ │ ├── 06b_floodzone │ │ └── scripts │ │ │ ├── floodzone_cinematics.hsc │ │ │ ├── floodzone_mission.hsc │ │ │ ├── floodzone_prediction.hsc │ │ │ └── floodzone_teleport.hsc │ │ ├── 07a_highcharity │ │ └── scripts │ │ │ ├── highcharity_base.hsc │ │ │ ├── highcharity_cinematics.hsc │ │ │ ├── highcharity_mission.hsc │ │ │ ├── highcharity_prediction.hsc │ │ │ └── highcharity_teleport.hsc │ │ ├── 07b_forerunnership │ │ └── scripts │ │ │ ├── forerunnership_cinematic.hsc │ │ │ ├── forerunnership_mission.hsc │ │ │ └── forerunnership_prediction.hsc │ │ ├── 08a_deltacliffs │ │ └── scripts │ │ │ ├── 08a_deltacliffs_cinematics.hsc │ │ │ ├── 08a_deltacliffs_mission.hsc │ │ │ └── 08a_deltacliffs_prediction.hsc │ │ ├── 08b_deltacontrol │ │ └── scripts │ │ │ ├── 08b_deltacontrol_boss.hsc │ │ │ ├── 08b_deltacontrol_cinematics.hsc │ │ │ ├── 08b_deltacontrol_mission.hsc │ │ │ └── 08b_deltacontrol_prediction.hsc │ │ ├── alphagasgiant │ │ └── scripts │ │ │ ├── alphagasgiant_cinematics.hsc │ │ │ └── alphagasgiant_mission.hsc │ │ ├── alphamoon │ │ └── scripts │ │ │ ├── alphamoon.hsc │ │ │ └── alphamoon_cinematics.hsc │ │ ├── deltacontrolroom │ │ └── scripts │ │ │ ├── deltacontrolroom_cinematics.hsc │ │ │ └── deltacontrolroom_mission.hsc │ │ ├── deltatemple │ │ └── scripts │ │ │ └── deltatemple.hsc │ │ ├── earthcity │ │ ├── earthcity_e3 │ │ │ └── scripts │ │ │ │ ├── earthcity_e3_cinematics.hsc │ │ │ │ ├── earthcity_e3_mission.hsc │ │ │ │ └── earthcity_e3_start.hsc │ │ └── scripts │ │ │ ├── earthcity_cinematics.hsc │ │ │ └── earthcity_mission.hsc │ │ ├── highcharity │ │ └── scripts │ │ │ └── mission.hsc │ │ ├── sentinelhq │ │ └── scripts │ │ │ ├── sentinelhq.hsc │ │ │ └── sentinelhq_cinematics.hsc │ │ └── spacestation │ │ └── scripts │ │ ├── mission.hsc │ │ └── spacestation_cinematics.hsc ├── Windows - Retail 11081.07.04.30.0934.main │ ├── README.md │ ├── debug_menu_init.txt │ ├── hs_doc.txt │ └── raw │ │ ├── globals │ │ └── global_scripts.hsc │ │ └── scenarios │ │ ├── multi │ │ ├── backwash │ │ │ └── scripts │ │ │ │ └── backwash.hsc │ │ ├── containment │ │ │ └── scripts │ │ │ │ └── containment.hsc │ │ └── dune │ │ │ └── scripts │ │ │ └── dune.hsc │ │ └── solo │ │ ├── 00a_introduction │ │ └── scripts │ │ │ ├── 00a_introduction_prediction.hsc │ │ │ └── introduction_cinematics.hsc │ │ ├── 01b_spacestation │ │ └── scripts │ │ │ ├── 01b_spacestation_base.hsc │ │ │ ├── 01b_spacestation_cinematics.hsc │ │ │ ├── 01b_spacestation_mission.hsc │ │ │ └── 01b_spacestation_prediction.hsc │ │ ├── 03a_oldmombasa │ │ └── scripts │ │ │ ├── 03a_oldmombasa_cinematics.hsc │ │ │ ├── 03a_oldmombasa_mission.hsc │ │ │ └── 03a_oldmombasa_prediction.hsc │ │ ├── 03b_newmombasa │ │ └── scripts │ │ │ ├── 03b_newmombasa_cinematics.hsc │ │ │ ├── 03b_newmombasa_mission.hsc │ │ │ └── 03b_newmombasa_prediction.hsc │ │ ├── 04a_gasgiant │ │ └── scripts │ │ │ ├── 04a_gasgiant_cinematics.hsc │ │ │ ├── 04a_gasgiant_mission.hsc │ │ │ ├── 04a_gasgiant_prediction.hsc │ │ │ └── 04a_gasgiant_teleport.hsc │ │ ├── 04b_floodlab │ │ └── scripts │ │ │ ├── 04b_floodlab_cinematics.hsc │ │ │ ├── 04b_floodlab_mission.hsc │ │ │ ├── 04b_floodlab_prediction.hsc │ │ │ └── 04b_floodlab_teleport.hsc │ │ ├── 05a_deltaapproach │ │ └── scripts │ │ │ ├── 05a_deltaapproach_cinematics.hsc │ │ │ ├── 05a_deltaapproach_mission.hsc │ │ │ ├── 05a_deltaapproach_prediction.hsc │ │ │ └── 05a_deltaapproach_teleport.hsc │ │ ├── 05b_deltatowers │ │ └── scripts │ │ │ ├── 05b_deltatowers_cinematics.hsc │ │ │ ├── 05b_deltatowers_mission.hsc │ │ │ ├── 05b_deltatowers_prediction.hsc │ │ │ └── 05b_deltatowers_teleport.hsc │ │ ├── 06a_sentinelwalls │ │ └── scripts │ │ │ ├── sentinelwalls_cinematics.hsc │ │ │ ├── sentinelwalls_mission.hsc │ │ │ ├── sentinelwalls_prediction.hsc │ │ │ └── sentinelwalls_teleport.hsc │ │ ├── 06b_floodzone │ │ └── scripts │ │ │ ├── floodzone_cinematics.hsc │ │ │ ├── floodzone_mission.hsc │ │ │ ├── floodzone_prediction.hsc │ │ │ └── floodzone_teleport.hsc │ │ ├── 07a_highcharity │ │ └── scripts │ │ │ ├── highcharity_cinematics.hsc │ │ │ ├── highcharity_mission.hsc │ │ │ ├── highcharity_prediction.hsc │ │ │ └── highcharity_teleport.hsc │ │ ├── 07b_forerunnership │ │ └── scripts │ │ │ ├── forerunnership_cinematic.hsc │ │ │ ├── forerunnership_mission.hsc │ │ │ └── forerunnership_prediction.hsc │ │ ├── 08a_deltacliffs │ │ └── scripts │ │ │ ├── 08a_deltacliffs_cinematics.hsc │ │ │ ├── 08a_deltacliffs_mission.hsc │ │ │ └── 08a_deltacliffs_prediction.hsc │ │ └── 08b_deltacontrol │ │ └── scripts │ │ ├── 08b_deltacontrol_boss.hsc │ │ ├── 08b_deltacontrol_cinematics.hsc │ │ ├── 08b_deltacontrol_mission.hsc │ │ └── 08b_deltacontrol_prediction.hsc └── Windows - Retail MCC Apr 30 2020 │ ├── README.md │ └── data │ ├── globals │ └── global_scripts.hsc │ └── scenarios │ ├── multi │ ├── backwash │ │ └── scripts │ │ │ └── backwash.hsc │ ├── containment │ │ └── scripts │ │ │ └── containment.hsc │ └── dune │ │ └── scripts │ │ └── dune.hsc │ └── solo │ ├── 00a_introduction │ └── scripts │ │ ├── 00a_introduction_prediction.hsc │ │ └── introduction_cinematics.hsc │ ├── 01b_spacestation │ └── scripts │ │ ├── 01b_spacestation_base.hsc │ │ ├── 01b_spacestation_cinematics.hsc │ │ ├── 01b_spacestation_mission.hsc │ │ └── 01b_spacestation_prediction.hsc │ ├── 03a_oldmombasa │ └── scripts │ │ ├── 03a_oldmombasa_cinematics.hsc │ │ ├── 03a_oldmombasa_mission.hsc │ │ └── 03a_oldmombasa_prediction.hsc │ ├── 03b_newmombasa │ └── scripts │ │ ├── 03b_newmombasa_cinematics.hsc │ │ ├── 03b_newmombasa_mission.hsc │ │ └── 03b_newmombasa_prediction.hsc │ ├── 04a_gasgiant │ └── scripts │ │ ├── 04a_gasgiant_cinematics.hsc │ │ ├── 04a_gasgiant_mission.hsc │ │ ├── 04a_gasgiant_prediction.hsc │ │ └── 04a_gasgiant_teleport.hsc │ ├── 04b_floodlab │ └── scripts │ │ ├── 04b_floodlab_cinematics.hsc │ │ ├── 04b_floodlab_mission.hsc │ │ ├── 04b_floodlab_prediction.hsc │ │ └── 04b_floodlab_teleport.hsc │ ├── 05a_deltaapproach │ └── scripts │ │ ├── 05a_deltaapproach_cinematics.hsc │ │ ├── 05a_deltaapproach_mission.hsc │ │ ├── 05a_deltaapproach_prediction.hsc │ │ └── 05a_deltaapproach_teleport.hsc │ ├── 05b_deltatowers │ └── scripts │ │ ├── 05b_deltatowers_cinematics.hsc │ │ ├── 05b_deltatowers_mission.hsc │ │ ├── 05b_deltatowers_prediction.hsc │ │ └── 05b_deltatowers_teleport.hsc │ ├── 06a_sentinelwalls │ └── scripts │ │ ├── sentinelwalls_base.hsc │ │ ├── sentinelwalls_cinematics.hsc │ │ ├── sentinelwalls_mission.hsc │ │ ├── sentinelwalls_prediction.hsc │ │ └── sentinelwalls_teleport.hsc │ ├── 06b_floodzone │ └── scripts │ │ ├── floodzone_base.hsc │ │ ├── floodzone_cinematics.hsc │ │ ├── floodzone_mission.hsc │ │ ├── floodzone_prediction.hsc │ │ └── floodzone_teleport.hsc │ ├── 07a_highcharity │ └── scripts │ │ ├── highcharity_base.hsc │ │ ├── highcharity_cinematics.hsc │ │ ├── highcharity_mission.hsc │ │ ├── highcharity_prediction.hsc │ │ └── highcharity_teleport.hsc │ ├── 07b_forerunnership │ └── scripts │ │ ├── forerunnership_cinematic.hsc │ │ ├── forerunnership_mission.hsc │ │ ├── forerunnership_prediction.hsc │ │ └── forerunnership_teleport.hsc │ ├── 08a_deltacliffs │ └── scripts │ │ ├── 08a_deltacliffs_cinematics.hsc │ │ ├── 08a_deltacliffs_mission.hsc │ │ └── 08a_deltacliffs_prediction.hsc │ └── 08b_deltacontrol │ └── scripts │ ├── 08b_deltacontrol_boss.hsc │ ├── 08b_deltacontrol_cinematics.hsc │ ├── 08b_deltacontrol_mission.hsc │ └── 08b_deltacontrol_prediction.hsc ├── Halo 3 ODST └── 13895.09.04.27.2201.atlas_relea │ ├── README.md │ ├── data │ └── levels │ │ ├── atlas │ │ ├── c100 │ │ │ └── scripts │ │ │ │ └── c100_decompiled.hsc │ │ ├── c200 │ │ │ └── scripts │ │ │ │ └── c200_decompiled.hsc │ │ ├── h100 │ │ │ └── scripts │ │ │ │ └── h100_decompiled.hsc │ │ ├── l200 │ │ │ └── scripts │ │ │ │ └── l200_decompiled.hsc │ │ ├── l300 │ │ │ └── scripts │ │ │ │ └── l300_decompiled.hsc │ │ ├── sc100 │ │ │ └── scripts │ │ │ │ └── sc100_decompiled.hsc │ │ ├── sc110 │ │ │ └── scripts │ │ │ │ └── sc110_decompiled.hsc │ │ ├── sc120 │ │ │ └── scripts │ │ │ │ └── sc120_decompiled.hsc │ │ ├── sc130 │ │ │ └── scripts │ │ │ │ └── sc130_decompiled.hsc │ │ ├── sc140 │ │ │ └── scripts │ │ │ │ └── sc140_decompiled.hsc │ │ └── sc150 │ │ │ └── scripts │ │ │ └── sc150_decompiled.hsc │ │ └── ui │ │ └── mainmenu │ │ └── scripts │ │ └── mainmenu_decompiled.hsc │ └── title storage │ └── title │ └── 4d530877 │ └── default_hoppers │ ├── cht │ ├── black_motd.bin │ ├── black_motd_image.jpg │ ├── black_motd_popup.bin │ └── black_motd_popup_image.jpg │ ├── de │ ├── black_motd.bin │ ├── black_motd_image.jpg │ ├── black_motd_popup.bin │ └── black_motd_popup_image.jpg │ ├── en │ ├── black_motd.bin │ ├── black_motd_image.jpg │ ├── black_motd_popup.bin │ └── black_motd_popup_image.jpg │ ├── fr │ ├── black_motd.bin │ ├── black_motd_image.jpg │ ├── black_motd_popup.bin │ └── black_motd_popup_image.jpg │ ├── it │ ├── black_motd.bin │ ├── black_motd_image.jpg │ ├── black_motd_popup.bin │ └── black_motd_popup_image.jpg │ ├── jpn │ ├── black_motd.bin │ ├── black_motd_image.jpg │ ├── black_motd_popup.bin │ └── black_motd_popup_image.jpg │ ├── kor │ ├── black_motd.bin │ ├── black_motd_image.jpg │ ├── black_motd_popup.bin │ └── black_motd_popup_image.jpg │ ├── mx │ ├── black_motd.bin │ ├── black_motd_image.jpg │ ├── black_motd_popup.bin │ └── black_motd_popup_image.jpg │ ├── network_configuration_128.bin │ ├── pt │ ├── black_motd.bin │ ├── black_motd_image.jpg │ ├── black_motd_popup.bin │ └── black_motd_popup_image.jpg │ └── sp │ ├── black_motd.bin │ ├── black_motd_image.jpg │ ├── black_motd_popup.bin │ └── black_motd_popup_image.jpg ├── Halo 3 ├── 08117.07.03.07.1702.delta │ ├── README.md │ ├── cheats.txt │ ├── debug_menu_init.txt │ ├── halo3_cache_debug.map │ ├── halo3_cache_play.map │ ├── halo3_cache_profile.map │ ├── halo3_cache_release.map │ ├── halo3_cache_test.map │ ├── hs_doc.txt │ └── init.txt ├── 08172.07.03.08.2240.delta │ ├── README.md │ ├── cheats.txt │ ├── debug_menu_init.txt │ ├── halo3_cache_debug.map │ ├── halo3_cache_play.map │ ├── halo3_cache_profile.map │ ├── halo3_cache_release.map │ ├── halo3_cache_test.map │ ├── hs_doc.txt │ └── init.txt ├── 09699.07.05.01.1534.delta │ ├── README.md │ └── data │ │ └── levels │ │ ├── multi │ │ ├── deadlock │ │ │ └── scripts │ │ │ │ └── deadlock.hsc │ │ └── snowbound │ │ │ └── scripts │ │ │ └── snowbound.hsc │ │ └── ui │ │ └── mainmenu │ │ └── scripts │ │ └── mainmenu.hsc ├── 11729.07.08.10.0021.main │ ├── README.md │ └── data │ │ └── levels │ │ ├── multi │ │ ├── chill │ │ │ └── scripts │ │ │ │ └── chill.hsc │ │ ├── deadlock │ │ │ └── scripts │ │ │ │ └── deadlock.hsc │ │ ├── salvation │ │ │ └── scripts │ │ │ │ └── salvation.hsc │ │ ├── shrine │ │ │ └── scripts │ │ │ │ └── shrine.hsc │ │ ├── snowbound │ │ │ └── scripts │ │ │ │ └── snowbound.hsc │ │ └── zanzibar │ │ │ └── scripts │ │ │ └── zanzibar.hsc │ │ ├── solo │ │ └── 030_outskirts │ │ │ └── scripts │ │ │ └── 030_outskirts.hsc │ │ └── ui │ │ └── mainmenu │ │ └── scripts │ │ └── mainmenu.hsc ├── 11855.07.08.20.2317.halo3_ship │ ├── README.md │ ├── data │ │ └── levels │ │ │ ├── dlc │ │ │ ├── armory │ │ │ │ └── scripts │ │ │ │ │ └── armory.hsc │ │ │ ├── bunkerworld │ │ │ │ └── scripts │ │ │ │ │ └── bunkerworld.hsc │ │ │ ├── chillout │ │ │ │ └── scripts │ │ │ │ │ └── chillout.hsc │ │ │ ├── descent │ │ │ │ └── scripts │ │ │ │ │ └── descent.hsc │ │ │ ├── docks │ │ │ │ └── scripts │ │ │ │ │ └── docks.hsc │ │ │ ├── fortress │ │ │ │ └── scripts │ │ │ │ │ └── fortress.hsc │ │ │ ├── lockout │ │ │ │ └── scripts │ │ │ │ │ └── lockout.hsc │ │ │ ├── midship │ │ │ │ └── scripts │ │ │ │ │ └── midship.hsc │ │ │ ├── sandbox │ │ │ │ └── scripts │ │ │ │ │ └── sandbox.hsc │ │ │ ├── sidewinder │ │ │ │ └── scripts │ │ │ │ │ └── sidewinder.hsc │ │ │ ├── spacecamp │ │ │ │ └── scripts │ │ │ │ │ └── spacecamp.hsc │ │ │ └── warehouse │ │ │ │ └── scripts │ │ │ │ └── warehouse.hsc │ │ │ ├── multi │ │ │ ├── chill │ │ │ │ └── scripts │ │ │ │ │ └── chill.hsc │ │ │ ├── construct │ │ │ │ └── scripts │ │ │ │ │ └── construct.hsc │ │ │ ├── cyberdyne │ │ │ │ └── scripts │ │ │ │ │ └── cyberdyne.hsc │ │ │ ├── deadlock │ │ │ │ └── scripts │ │ │ │ │ └── deadlock.hsc │ │ │ ├── guardian │ │ │ │ └── scripts │ │ │ │ │ └── guardian.hsc │ │ │ ├── salvation │ │ │ │ └── scripts │ │ │ │ │ └── salvation.hsc │ │ │ ├── shrine │ │ │ │ └── scripts │ │ │ │ │ └── shrine.hsc │ │ │ ├── snowbound │ │ │ │ └── scripts │ │ │ │ │ └── snowbound.hsc │ │ │ └── zanzibar │ │ │ │ └── scripts │ │ │ │ └── zanzibar.hsc │ │ │ ├── solo │ │ │ ├── 005_intro │ │ │ │ └── scripts │ │ │ │ │ └── 005_intro.hsc │ │ │ ├── 010_jungle │ │ │ │ └── scripts │ │ │ │ │ └── 010_jungle.hsc │ │ │ ├── 020_base │ │ │ │ └── scripts │ │ │ │ │ └── 020_base.hsc │ │ │ ├── 030_outskirts │ │ │ │ └── scripts │ │ │ │ │ └── 030_outskirts.hsc │ │ │ ├── 040_voi │ │ │ │ └── scripts │ │ │ │ │ └── 040_voi.hsc │ │ │ ├── 050_floodvoi │ │ │ │ └── scripts │ │ │ │ │ └── 050_floodvoi.hsc │ │ │ ├── 070_waste │ │ │ │ └── scripts │ │ │ │ │ └── 070_waste.hsc │ │ │ ├── 100_citadel │ │ │ │ └── scripts │ │ │ │ │ └── 100_citadel.hsc │ │ │ ├── 110_hc │ │ │ │ └── scripts │ │ │ │ │ └── 110_hc.hsc │ │ │ ├── 120_halo │ │ │ │ └── scripts │ │ │ │ │ └── 120_halo.hsc │ │ │ └── 130_epilogue │ │ │ │ └── scripts │ │ │ │ └── 130_epilogue.hsc │ │ │ └── ui │ │ │ └── mainmenu │ │ │ └── scripts │ │ │ └── mainmenu.hsc │ └── title storage │ │ └── title │ │ └── default_hoppers │ │ ├── 00101 │ │ └── game_set_006.bin │ │ ├── 00102 │ │ ├── 10_min_slayer_br_010.bin │ │ ├── braaaains_010.bin │ │ ├── game_set_006.bin │ │ ├── juggernaut_010.bin │ │ ├── map_variants │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_cold_storage_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_epitaph_012.bin │ │ │ ├── default_foundry_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_rats_nest_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ ├── default_the_pit_012.bin │ │ │ ├── ffa_snowbound_012.bin │ │ │ ├── inf_assembly_dismember_012.bin │ │ │ ├── inf_blackout_deadlock_012.bin │ │ │ ├── inf_cold_storage_rigor_mortis_012.bin │ │ │ ├── inf_foundry_haunted_manor_012.bin │ │ │ ├── inf_ghost_town_ghoul_town_012.bin │ │ │ ├── inf_longshore_deaddocks_012.bin │ │ │ ├── inf_orbital_andromeda_012.bin │ │ │ ├── inf_rats_nest_bubonic_012.bin │ │ │ ├── inf_sandbox_spookyhouse_012.bin │ │ │ ├── swat_pit_012.bin │ │ │ ├── year2_epitaph_epilogue_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ ├── mosh_pit_king_010.bin │ │ ├── ninjaball_010.bin │ │ ├── rumble_crazy_king_010.bin │ │ ├── rumble_oddball_010.bin │ │ ├── rumble_slayer_010.bin │ │ ├── rumble_swords_010.bin │ │ └── save_one_bullet_010.bin │ │ ├── 00103 │ │ ├── 5v5_team_slayer_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── default_high_ground_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_longshore_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_rats_nest_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ ├── default_the_pit_012.bin │ │ │ ├── default_valhalla_012.bin │ │ │ ├── year2_snowbound_boundless_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ ├── team_rockets_010.bin │ │ ├── team_slayer_br_010.bin │ │ └── team_slayer_duals_010.bin │ │ ├── 00104 │ │ ├── 1_side_assault_010.bin │ │ ├── 1_side_ctf_010.bin │ │ ├── 5v5_vip_010.bin │ │ ├── game_set_006.bin │ │ ├── land_grab_010.bin │ │ ├── lukems_1flag_010.bin │ │ ├── lukems_multi_flag_010.bin │ │ ├── lukems_oddball_010.bin │ │ ├── map_variants │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── default_high_ground_012.bin │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_longshore_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ ├── default_valhalla_012.bin │ │ │ ├── noequip_citadel_012.bin │ │ │ ├── noequip_heretic_012.bin │ │ │ ├── year2_snowbound_boundless_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ ├── multi_flag_ctf_010.bin │ │ ├── multi_flag_ctf_br_010.bin │ │ ├── neutral_assault_010.bin │ │ └── territories_010.bin │ │ ├── 00106 │ │ ├── 2v2_team_hammers_010.bin │ │ ├── 2v2_team_swords_010.bin │ │ ├── 2v2_vip_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_epitaph_012.bin │ │ │ ├── default_foundry_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_high_ground_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_longshore_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── default_snowbound_012.bin │ │ │ ├── default_the_pit_012.bin │ │ │ ├── default_valhalla_012.bin │ │ │ ├── race_rats_nest_speed_012.bin │ │ │ ├── race_sandtrap_speed_012.bin │ │ │ ├── race_valhalla_speed_012.bin │ │ │ ├── swat_pit_012.bin │ │ │ ├── year2_epitaph_epilogue_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ ├── rocket_race_010.bin │ │ ├── team_crazy_king_010.bin │ │ ├── team_oddball_010.bin │ │ └── team_slayer_010.bin │ │ ├── 00108 │ │ ├── 10_min_crazy_king_010.bin │ │ ├── 10_min_oddball_010.bin │ │ ├── 10_min_slayer_010.bin │ │ ├── 10_min_slayer_br_010.bin │ │ ├── de │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── en │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_epitaph_012.bin │ │ │ ├── default_foundry_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── default_high_ground_012.bin │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_the_pit_012.bin │ │ │ ├── ffa_snowbound_012.bin │ │ │ ├── foundry_anvil_012.bin │ │ │ ├── swat_pit_012.bin │ │ │ ├── year2_epitaph_epilogue_012.bin │ │ │ ├── year2_snowbound_boundless_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ └── rumble_swords_010.bin │ │ ├── 00109 │ │ ├── de │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── en │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── atlas_pantheon_012.bin │ │ │ ├── atlas_reminiscent_012.bin │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_foundry_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── default_high_ground_012.bin │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_orbital_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ ├── default_valhalla_012.bin │ │ │ ├── sandbox_tundra_012.bin │ │ │ ├── sandbox_vindictive_012.bin │ │ │ ├── sandbox_wastelands_012.bin │ │ │ ├── year2_snowbound_boundless_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ ├── team_slayer_010.bin │ │ └── team_slayer_br_010.bin │ │ ├── 00110 │ │ ├── 1_side_assault_010.bin │ │ ├── 1_side_ctf_010.bin │ │ ├── 1_side_ctf_br_010.bin │ │ ├── 2_bomb_assault_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_orbital_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ ├── default_the_pit_012.bin │ │ │ ├── default_valhalla_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ ├── multi_flag_ctf_010.bin │ │ ├── multi_flag_ctf_br_010.bin │ │ ├── neutral_assault_010.bin │ │ ├── team_crazy_king_010.bin │ │ └── team_oddball_010.bin │ │ ├── 00112 │ │ ├── 2v2_1flag_010.bin │ │ ├── 2v2_2flag_010.bin │ │ ├── 2v2_team_ball_010.bin │ │ ├── 2v2_team_br_010.bin │ │ ├── 2v2_team_hill_010.bin │ │ ├── 2v2_team_slayer_010.bin │ │ ├── 2v2_team_snipers_010.bin │ │ ├── de │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── en │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── game_set_006.bin │ │ └── map_variants │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_cold_storage_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_foundry_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_the_pit_012.bin │ │ │ ├── sandbox_tundra_012.bin │ │ │ ├── sandbox_vessel_012.bin │ │ │ ├── year2_epitaph_epilogue_012.bin │ │ │ ├── year2_snowbound_boundless_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ ├── 00113 │ │ ├── braaaains_010.bin │ │ ├── creeping_death_010.bin │ │ ├── creeping_rockets_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── inf_avalanche_zombies_on_ice_012.bin │ │ │ ├── inf_blackout_deadlock_012.bin │ │ │ ├── inf_epitaph_salivation_012.bin │ │ │ ├── inf_foundry_haunted_manor_012.bin │ │ │ ├── inf_ghost_town_ghoul_town_012.bin │ │ │ ├── inf_guardian_tree_rot_012.bin │ │ │ ├── inf_high_ground_club_dead_012.bin │ │ │ ├── inf_isolation_growth_spurt_012.bin │ │ │ ├── inf_last_resort_zomzibar_012.bin │ │ │ ├── inf_longshore_deaddocks_012.bin │ │ │ ├── inf_orbital_andromeda_012.bin │ │ │ ├── inf_pit_charnel_pit_012.bin │ │ │ ├── inf_rats_nest_bubonic_012.bin │ │ │ ├── inf_sandbox_spookyhouse_012.bin │ │ │ ├── inf_snowbound_zomboni_012.bin │ │ │ ├── inf_standoff_dish_of_doom_012.bin │ │ │ └── inf_valhalla_death_valley_012.bin │ │ ├── save_one_bullet_010.bin │ │ └── speed_demons_010.bin │ │ ├── 00114 │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── race_avalanche_speed_012.bin │ │ │ ├── race_isolation_speed_012.bin │ │ │ ├── race_rats_nest_speed_012.bin │ │ │ ├── race_sandtrap_speed_012.bin │ │ │ ├── race_standoff_speed_012.bin │ │ │ └── race_valhalla_speed_012.bin │ │ └── rocket_race_010.bin │ │ ├── 00115 │ │ ├── 10_min_slayer_br_010.bin │ │ ├── braaaains_010.bin │ │ ├── ffa_rockets_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_cold_storage_012.bin │ │ │ ├── default_foundry_012.bin │ │ │ ├── default_rats_nest_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ ├── foundry_anvil_012.bin │ │ │ └── inf_rats_nest_bubonic_012.bin │ │ ├── rumble_crazy_king_010.bin │ │ ├── rumble_hammers_010.bin │ │ ├── rumble_slayer_010.bin │ │ └── rumble_swords_010.bin │ │ ├── 00118 │ │ ├── big_team_1_flag_010.bin │ │ ├── big_team_multiflag_010.bin │ │ ├── big_team_neutral_assault_010.bin │ │ ├── big_team_slayer_010.bin │ │ ├── game_set_006.bin │ │ └── map_variants │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_rats_nest_012.bin │ │ │ ├── default_sandtrap_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ └── default_valhalla_012.bin │ │ ├── 00119 │ │ ├── 2v2_team_br_010.bin │ │ ├── 2v2_team_slayer_010.bin │ │ ├── game_set_006.bin │ │ └── map_variants │ │ │ ├── default_cold_storage_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── year2_epitaph_epilogue_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ ├── 00123 │ │ ├── de │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── en │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── sandbox_tundra_swat_012.bin │ │ │ ├── swat_assembly_012.bin │ │ │ ├── swat_blackout_012.bin │ │ │ ├── swat_citadel_012.bin │ │ │ ├── swat_cold_storage_012.bin │ │ │ ├── swat_construct_012.bin │ │ │ ├── swat_epitaph_012.bin │ │ │ ├── swat_foundry_012.bin │ │ │ ├── swat_ghost_town_012.bin │ │ │ ├── swat_ground_012.bin │ │ │ ├── swat_guardian_012.bin │ │ │ ├── swat_heretic_012.bin │ │ │ ├── swat_isolation_012.bin │ │ │ ├── swat_narrows_012.bin │ │ │ ├── swat_orbital_012.bin │ │ │ ├── swat_pit_012.bin │ │ │ ├── swat_rats_nest_012.bin │ │ │ └── swat_snowbound_012.bin │ │ ├── team_swat_010.bin │ │ ├── team_swat_2flag_010.bin │ │ ├── team_swat_magnums_010.bin │ │ ├── team_swat_oddball_010.bin │ │ └── team_swat_shotguns_010.bin │ │ ├── 00125 │ │ ├── big_team_1_flag_010.bin │ │ ├── big_team_1_flag_tanks_010.bin │ │ ├── big_team_1_side_assault_010.bin │ │ ├── big_team_land_grab_010.bin │ │ ├── big_team_multiflag_010.bin │ │ ├── big_team_neutral_assault_010.bin │ │ ├── big_team_rocket_lasers_010.bin │ │ ├── big_team_slayer_010.bin │ │ ├── big_team_slayer_tanks_010.bin │ │ ├── big_team_territories_010.bin │ │ ├── big_team_territories_tanks_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── atlas_eightygrit_012.bin │ │ │ ├── atlas_workplacebravo_012.bin │ │ │ ├── default_avalanche_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_longshore_012.bin │ │ │ ├── default_rats_nest_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── default_sandtrap_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ ├── default_valhalla_012.bin │ │ │ ├── heavy_avalanche_012.bin │ │ │ ├── heavy_sandtrap_012.bin │ │ │ ├── heavy_standoff_012.bin │ │ │ ├── heavy_valhalla_012.bin │ │ │ ├── sandbox_entrenched_012.bin │ │ │ ├── sandbox_vindictive_012.bin │ │ │ ├── sandbox_wastelands_012.bin │ │ │ └── year2_sandtrap_sandtarp_012.bin │ │ └── two_flag_heavy_010.bin │ │ ├── 00126 │ │ ├── game_set_006.bin │ │ ├── grifball_010.bin │ │ ├── grifball_aerial_010.bin │ │ ├── grifball_mayan_010.bin │ │ ├── grifball_upthere_010.bin │ │ └── map_variants │ │ │ ├── gbl_chichenitza_012.bin │ │ │ ├── gbl_high_012.bin │ │ │ ├── gbl_ultim8_012.bin │ │ │ ├── grifball_agla_foundry_012.bin │ │ │ ├── grifball_agla_sandbox_012.bin │ │ │ ├── grifball_blockdrop_court_012.bin │ │ │ ├── grifball_grifball_club_012.bin │ │ │ ├── grifball_grifball_naught_012.bin │ │ │ └── grifball_noxy_court_012.bin │ │ ├── 00127 │ │ ├── de │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── en │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── mlg_amplified_v8_012.bin │ │ │ ├── mlg_construct_ts8_012.bin │ │ │ ├── mlg_construct_v8_012.bin │ │ │ ├── mlg_guardian_v8_012.bin │ │ │ ├── mlg_heretic_v8_012.bin │ │ │ ├── mlg_narrows_v8_012.bin │ │ │ ├── mlg_onslaught_v8_012.bin │ │ │ └── mlg_the_pit_v8_012.bin │ │ ├── mlg_cstruct_ts8_010.bin │ │ ├── mlg_multiflag_narrows_010.bin │ │ ├── mlg_multiflag_onslaught_010.bin │ │ ├── mlg_multiflag_the_pit_010.bin │ │ ├── mlg_team_king_010.bin │ │ ├── mlg_team_oddball_010.bin │ │ └── mlg_team_slayer_010.bin │ │ ├── 00128 │ │ ├── brawl_laser_tag_010.bin │ │ ├── brawl_mosh_pit_010.bin │ │ ├── brawl_rockets_010.bin │ │ ├── brawl_shotty_snipers_010.bin │ │ ├── brawl_slayer_010.bin │ │ ├── brawl_snipers_010.bin │ │ ├── game_set_006.bin │ │ └── map_variants │ │ │ ├── default_avalanche_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ └── default_standoff_012.bin │ │ ├── 00129 │ │ ├── fiesta_crazy_king_010.bin │ │ ├── fiesta_juggernaut_010.bin │ │ ├── fiesta_oddball_010.bin │ │ ├── fiesta_slayer_010.bin │ │ ├── game_set_006.bin │ │ └── map_variants │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_cold_storage_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_epitaph_012.bin │ │ │ ├── default_foundry_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_longshore_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── default_the_pit_012.bin │ │ │ └── ffa_snowbound_012.bin │ │ ├── 00130 │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_snowbound_012.bin │ │ │ └── default_valhalla_012.bin │ │ ├── team_shotty_snipers_010.bin │ │ ├── team_sniper_hill_010.bin │ │ ├── team_snipers_010.bin │ │ └── team_splasers_010.bin │ │ ├── 00132 │ │ ├── 3ball_010.bin │ │ ├── 3ball_br_010.bin │ │ ├── 3ball_fiesta_010.bin │ │ ├── 3ball_rockets_010.bin │ │ ├── game_set_006.bin │ │ └── map_variants │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_foundry_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_snowbound_012.bin │ │ │ └── default_standoff_012.bin │ │ ├── 00134 │ │ ├── 5v5_vip_010.bin │ │ ├── big_team_1_flag_010.bin │ │ ├── big_team_1_flag_tanks_010.bin │ │ ├── big_team_multiflag_010.bin │ │ ├── big_team_multiflag_tanks_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_orbital_012.bin │ │ │ ├── default_rats_nest_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── default_valhalla_012.bin │ │ │ └── heavy_standoff_012.bin │ │ ├── team_rocket_lasers_010.bin │ │ └── two_flag_heavy_010.bin │ │ ├── 00135 │ │ ├── ffa_rockets_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ └── default_cold_storage_012.bin │ │ └── rumble_oddball_010.bin │ │ ├── 00136 │ │ ├── braaaains_010.bin │ │ ├── creeping_death_010.bin │ │ ├── creeping_rockets_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── inf_epitaph_salivation_012.bin │ │ │ ├── inf_foundry_haunted_manor_012.bin │ │ │ ├── inf_guardian_tree_rot_012.bin │ │ │ ├── inf_high_ground_club_dead_012.bin │ │ │ ├── inf_longshore_deaddocks_012.bin │ │ │ ├── inf_orbital_andromeda_012.bin │ │ │ └── inf_standoff_dish_of_doom_012.bin │ │ └── save_one_bullet_010.bin │ │ ├── 00137 │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_cold_storage_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_foundry_012.bin │ │ │ ├── inf_foundry_haunted_manor_012.bin │ │ │ ├── inf_guardian_tree_rot_012.bin │ │ │ ├── year2_snowbound_boundless_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ ├── turkey_boxingdaybrawl_010.bin │ │ ├── turkey_fiesta_010.bin │ │ ├── turkey_infection_010.bin │ │ ├── turkey_oddball_010.bin │ │ └── turkey_swords_010.bin │ │ ├── 00139 │ │ ├── de │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── en │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── sniper_assembly_012.bin │ │ │ ├── sniper_avalanche_sniperlanche_012.bin │ │ │ ├── sniper_blackout_snipeout_012.bin │ │ │ ├── sniper_citadel_012.bin │ │ │ ├── sniper_construct_snipestruct_012.bin │ │ │ ├── sniper_ghost_town_sniper_town_012.bin │ │ │ ├── sniper_guardian_sniper_guardian_012.b │ │ │ ├── sniper_heretic_012.bin │ │ │ ├── sniper_high_ground_sniperground_012.b │ │ │ ├── sniper_isolation_sniperlation_012.bin │ │ │ ├── sniper_longshore_012.bin │ │ │ ├── sniper_narrows_sniper_bridge_012.bin │ │ │ ├── sniper_orbital_012.bin │ │ │ ├── sniper_rats_nest_snipers_nest_012.bin │ │ │ ├── sniper_sandtrap_snipe_trap_012.bin │ │ │ ├── sniper_snowbound_snipebound_012.bin │ │ │ ├── sniper_the_pit_sniper_stop_012.bin │ │ │ └── sniper_valhalla_sniper_canyon_012.bin │ │ ├── team_shotty_snipers_010.bin │ │ └── team_snipers_010.bin │ │ ├── 00140 │ │ ├── big_team_1_flag_010.bin │ │ ├── big_team_1_flag_tanks_010.bin │ │ ├── big_team_multiflag_010.bin │ │ ├── big_team_multiflag_tanks_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_avalanche_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_high_ground_012.bin │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_longshore_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_orbital_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ ├── default_the_pit_012.bin │ │ │ ├── default_valhalla_012.bin │ │ │ ├── heavy_avalanche_012.bin │ │ │ ├── heavy_standoff_012.bin │ │ │ ├── heavy_valhalla_012.bin │ │ │ └── sandbox_utahmambo_012.bin │ │ └── two_flag_heavy_010.bin │ │ ├── 00141 │ │ ├── ffa_rocket_hill_010.bin │ │ ├── ffa_rocket_lasers_010.bin │ │ ├── ffa_rocket_oddball_010.bin │ │ ├── ffa_rocket_snipers_010.bin │ │ ├── ffa_rockets_010.bin │ │ ├── game_set_006.bin │ │ └── map_variants │ │ │ └── default_foundry_012.bin │ │ ├── 00142 │ │ ├── 1_side_assault_010.bin │ │ ├── 1_side_ctf_010.bin │ │ ├── 5v5_team_slayer_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_orbital_012.bin │ │ │ ├── default_rats_nest_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ └── foundry_smashed_012.bin │ │ ├── multi_flag_ctf_010.bin │ │ ├── multi_flag_ctf_br_010.bin │ │ ├── neutral_assault_010.bin │ │ └── team_slayer_br_010.bin │ │ ├── 00143 │ │ ├── 1_side_assault_010.bin │ │ ├── 1_side_ctf_010.bin │ │ ├── 1_side_ctf_br_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── default_longshore_012.bin │ │ │ ├── default_orbital_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── sandbox_punishment_012.bin │ │ │ └── sandbox_utahmambo_012.bin │ │ ├── multi_flag_ctf_br_010.bin │ │ ├── neutral_assault_010.bin │ │ ├── team_slayer_010.bin │ │ └── team_slayer_br_010.bin │ │ ├── 00144 │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_cold_storage_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_epitaph_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_snowbound_012.bin │ │ │ └── swat_pit_012.bin │ │ ├── team_elim_swords_010.bin │ │ ├── team_hammers_010.bin │ │ ├── team_king_hammers_010.bin │ │ ├── team_punchout_010.bin │ │ └── team_swords_010.bin │ │ ├── 00145 │ │ ├── 2_rnd_territories_br_010.bin │ │ ├── game_set_006.bin │ │ ├── land_grab_010.bin │ │ ├── land_grab_br_010.bin │ │ ├── lurkers_010.bin │ │ ├── map_variants │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_foundry_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── default_high_ground_012.bin │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_longshore_012.bin │ │ │ ├── default_narrows_012.bin │ │ │ ├── default_orbital_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── default_sandtrap_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ ├── default_the_pit_012.bin │ │ │ └── default_valhalla_012.bin │ │ └── team_crazy_king_TC_010.bin │ │ ├── 00146 │ │ ├── brawl_laser_tag_010.bin │ │ ├── brawl_mosh_pit_010.bin │ │ ├── brawl_rockets_010.bin │ │ ├── brawl_shotty_snipers_010.bin │ │ ├── brawl_slayer_010.bin │ │ ├── brawl_snipers_010.bin │ │ ├── de │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── en │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── game_set_006.bin │ │ └── map_variants │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_avalanche_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_orbital_012.bin │ │ │ ├── default_rats_nest_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ └── sniper_longshore_012.bin │ │ ├── 00147 │ │ ├── 1_side_assault_ninja_010.bin │ │ ├── 2flag_shotty_010.bin │ │ ├── dodgeball_010.bin │ │ ├── game_set_006.bin │ │ ├── grifball_010.bin │ │ ├── grifball_mayan_010.bin │ │ ├── map_variants │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_cold_storage_012.bin │ │ │ ├── default_construct_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── default_high_ground_012.bin │ │ │ ├── default_isolation_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_orbital_012.bin │ │ │ ├── default_sandbox_012.bin │ │ │ ├── dodgeball_foundry_012.bin │ │ │ ├── dodgeball_sandbox_012.bin │ │ │ ├── gbl_chichenitza_012.bin │ │ │ ├── grifball_agla_sandbox_012.bin │ │ │ ├── sandbox_sumogrande_012.bin │ │ │ ├── sandbox_utahmambo_012.bin │ │ │ ├── sandbox_zeus_012.bin │ │ │ ├── sticky_assembly_012.bin │ │ │ ├── sticky_coldstorage_012.bin │ │ │ └── swat_pit_012.bin │ │ ├── pit_of_joy_010.bin │ │ ├── team_elim_swords_010.bin │ │ ├── team_fiesta_010.bin │ │ ├── team_punchout_010.bin │ │ ├── team_rockets_010.bin │ │ ├── team_scuds_010.bin │ │ ├── team_splasers_010.bin │ │ ├── team_stickies_010.bin │ │ ├── team_sumo_010.bin │ │ ├── tug_of_war_010.bin │ │ └── vip_runforcover_010.bin │ │ ├── 00148 │ │ ├── 1_side_ctf_010.bin │ │ ├── game_set_006.bin │ │ ├── multi_flag_ctf_010.bin │ │ ├── multi_flag_ctf_br_010.bin │ │ ├── team_slayer_010.bin │ │ └── team_slayer_br_010.bin │ │ ├── 00149 │ │ ├── big_team_1_side_assault_010.bin │ │ ├── big_team_multiflag_010.bin │ │ ├── big_team_neutral_assault_010.bin │ │ ├── big_team_slayer_010.bin │ │ ├── big_team_slayer_tanks_010.bin │ │ ├── game_set_006.bin │ │ └── map_variants │ │ │ ├── default_longshore_012.bin │ │ │ ├── default_rats_nest_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ └── heavy_standoff_012.bin │ │ ├── 00150 │ │ ├── de │ │ │ ├── dynamic_matchmaking_histogram_00.jpg │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── en │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── game_set_006.bin │ │ ├── lukems_1flag_010.bin │ │ ├── lukems_multi_flag_010.bin │ │ ├── lukems_oddball_010.bin │ │ ├── map_variants │ │ │ ├── default_blackout_012.bin │ │ │ ├── default_ghost_town_012.bin │ │ │ ├── default_guardian_012.bin │ │ │ ├── default_high_ground_012.bin │ │ │ ├── default_last_resort_012.bin │ │ │ ├── default_standoff_012.bin │ │ │ ├── default_valhalla_012.bin │ │ │ ├── noequip_citadel_012.bin │ │ │ ├── noequip_heretic_012.bin │ │ │ └── year2_the_pit_pitstop_012.bin │ │ └── multi_flag_ctf_br_010.bin │ │ ├── 00151 │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── odst_assembly_012.bin │ │ │ ├── odst_blackout_012.bin │ │ │ ├── odst_citadel_012.bin │ │ │ ├── odst_construct_012.bin │ │ │ ├── odst_ghost_town_012.bin │ │ │ ├── odst_guardian_012.bin │ │ │ ├── odst_heretic_012.bin │ │ │ ├── odst_rats_nest_012.bin │ │ │ ├── odst_sandtrap_012.bin │ │ │ ├── odst_snowbound_012.bin │ │ │ └── odst_the_pit_012.bin │ │ ├── odst_escort_010.bin │ │ ├── odst_escort_large_010.bin │ │ └── team_slayer_odst_010.bin │ │ ├── 00152 │ │ ├── de │ │ │ ├── dynamic_matchmaking_histogram_00.jpg │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── en │ │ │ └── dynamic_matchmaking_histogram_01.jpg │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── agla_fl09_012.bin │ │ │ ├── agla_foundry_012.bin │ │ │ └── agla_ranked_cave_012.bin │ │ └── ranked_grifball_010.bin │ │ ├── 00153 │ │ ├── 1_side_ctf_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── atlas_actuality-break_012.bin │ │ │ ├── atlas_apex_012.bin │ │ │ ├── atlas_backdraftv1_012.bin │ │ │ ├── atlas_battledome_012.bin │ │ │ ├── atlas_berbercreek_012.bin │ │ │ ├── atlas_borderline_012.bin │ │ │ ├── atlas_breakdown_012.bin │ │ │ ├── atlas_bridgeos_012.bin │ │ │ ├── atlas_chimera_012.bin │ │ │ ├── atlas_collonade_012.bin │ │ │ ├── atlas_conduction_012.bin │ │ │ ├── atlas_coupdetat_012.bin │ │ │ ├── atlas_cryptic_012.bin │ │ │ ├── atlas_cryptic_fate_012.bin │ │ │ ├── atlas_deadbolt_012.bin │ │ │ ├── atlas_deity_012.bin │ │ │ ├── atlas_eightygrit_012.bin │ │ │ ├── atlas_elysium_012.bin │ │ │ ├── atlas_emperor_012.bin │ │ │ ├── atlas_exhibition_012.bin │ │ │ ├── atlas_fortress_012.bin │ │ │ ├── atlas_fracture_012.bin │ │ │ ├── atlas_gauntlet_012.bin │ │ │ ├── atlas_haven_012.bin │ │ │ ├── atlas_iz9courtyard_012.bin │ │ │ ├── atlas_lotus_012.bin │ │ │ ├── atlas_neosho_012.bin │ │ │ ├── atlas_noctilucent_012.bin │ │ │ ├── atlas_onyx_012.bin │ │ │ ├── atlas_pantheon_012.bin │ │ │ ├── atlas_paranoiav11_012.bin │ │ │ ├── atlas_pilaster_012.bin │ │ │ ├── atlas_pivotal_012.bin │ │ │ ├── atlas_rattrap_012.bin │ │ │ ├── atlas_ravinia_012.bin │ │ │ ├── atlas_reflux_012.bin │ │ │ ├── atlas_regicide_012.bin │ │ │ ├── atlas_reminiscent_012.bin │ │ │ ├── atlas_renovation_012.bin │ │ │ ├── atlas_requiem_012.bin │ │ │ ├── atlas_salvation_012.bin │ │ │ ├── atlas_sandtowers_012.bin │ │ │ ├── atlas_sentiment_012.bin │ │ │ ├── atlas_skystation_012.bin │ │ │ ├── atlas_solarium_012.bin │ │ │ ├── atlas_static_012.bin │ │ │ ├── atlas_stonehenge_012.bin │ │ │ ├── atlas_subversive_012.bin │ │ │ ├── atlas_synapse_012.bin │ │ │ ├── atlas_tartarus_012.bin │ │ │ ├── atlas_the_kingdom_012.bin │ │ │ ├── atlas_topple_012.bin │ │ │ ├── atlas_transgression_012.bin │ │ │ ├── atlas_tribal_war_012.bin │ │ │ ├── atlas_undulation_012.bin │ │ │ ├── atlas_vengeance_012.bin │ │ │ └── atlas_workplacebravo_012.bin │ │ ├── multi_flag_ctf_010.bin │ │ ├── multi_flag_ctf_br_010.bin │ │ ├── team_slayer_010.bin │ │ └── team_slayer_br_010.bin │ │ ├── 00154 │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ └── mlg_ffa_guard_012.bin │ │ └── mlg_ffa_010.bin │ │ ├── 00777 │ │ ├── 10_min_slayer_010.bin │ │ ├── 10_min_slayer_br_010.bin │ │ ├── braaaains_010.bin │ │ ├── ffa_rockets_010.bin │ │ ├── fiesta_slayer_010.bin │ │ ├── game_set_006.bin │ │ ├── map_variants │ │ │ ├── default_assembly_012.bin │ │ │ ├── default_citadel_012.bin │ │ │ ├── default_cold_storage_012.bin │ │ │ ├── default_heretic_012.bin │ │ │ ├── inf_assembly_dismember_012.bin │ │ │ └── inf_cold_storage_rigor_mortis_012.bin │ │ ├── rumble_crazy_king_010.bin │ │ ├── rumble_oddball_010.bin │ │ └── rumble_swords_010.bin │ │ ├── README.MD │ │ ├── cht │ │ ├── blue_motd.bin │ │ ├── blue_motd_popup.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── motd.bin │ │ ├── motd_image.jpg │ │ ├── motd_popup.bin │ │ └── motd_popup_image.jpg │ │ ├── de │ │ ├── blue_motd.bin │ │ ├── blue_motd_image.jpg │ │ ├── blue_motd_popup.bin │ │ ├── blue_motd_popup_image.jpg │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── motd.bin │ │ ├── motd_image.jpg │ │ ├── motd_popup.bin │ │ └── motd_popup_image.jpg │ │ ├── dynamic_hopper_statistics.bin │ │ ├── dynamic_matchmaking_nightmap.jpg │ │ ├── en │ │ ├── blue_motd.bin │ │ ├── blue_motd_image.jpg │ │ ├── blue_motd_popup.bin │ │ ├── blue_motd_popup_image.jpg │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── motd.bin │ │ ├── motd_image.jpg │ │ ├── motd_popup.bin │ │ └── motd_popup_image.jpg │ │ ├── fr │ │ ├── blue_motd.bin │ │ ├── blue_motd_popup.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── motd.bin │ │ ├── motd_image.jpg │ │ ├── motd_popup.bin │ │ └── motd_popup_image.jpg │ │ ├── it │ │ ├── blue_motd.bin │ │ ├── blue_motd_popup.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── motd.bin │ │ ├── motd_image.jpg │ │ ├── motd_popup.bin │ │ ├── motd_popup.binion_135.bin │ │ └── motd_popup_image.jpg │ │ ├── jpn │ │ ├── blue_motd.bin │ │ ├── blue_motd_popup.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── motd.bin │ │ ├── motd_image.jpg │ │ ├── motd_popup.bin │ │ └── motd_popup_image.jpg │ │ ├── kor │ │ ├── blue_motd.bin │ │ ├── blue_motd_popup.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── motd.bin │ │ ├── motd_image.jpg │ │ ├── motd_popup.bin │ │ └── motd_popup_image.jpg │ │ ├── manifest_001.bin │ │ ├── matchmaking_hopper_011.bin │ │ ├── mx │ │ ├── blue_motd.bin │ │ ├── blue_motd_popup.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── motd.bin │ │ ├── motd_image.jpg │ │ ├── motd_popup.bin │ │ └── motd_popup_image.jpg │ │ ├── network_configuration_135.bin │ │ ├── pt │ │ ├── blue_motd.bin │ │ ├── blue_motd_popup.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── motd.bin │ │ ├── motd_image.jpg │ │ ├── motd_popup.bin │ │ └── motd_popup_image.jpg │ │ ├── rsa_manifest.bin │ │ └── sp │ │ ├── blue_motd.bin │ │ ├── blue_motd_popup.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── motd.bin │ │ ├── motd_image.jpg │ │ ├── motd_popup.bin │ │ └── motd_popup_image.jpg ├── 11856.07.08.20.2332.release │ ├── README.md │ ├── cheats.txt │ ├── data │ │ └── levels │ │ │ ├── multi │ │ │ ├── deadlock │ │ │ │ └── scripts │ │ │ │ │ └── deadlock.hsc │ │ │ ├── shrine │ │ │ │ └── scripts │ │ │ │ │ └── shrine.hsc │ │ │ ├── snowbound │ │ │ │ └── scripts │ │ │ │ │ └── snowbound.hsc │ │ │ └── zanzibar │ │ │ │ └── scripts │ │ │ │ └── zanzibar.hsc │ │ │ ├── solo │ │ │ └── 030_outskirts │ │ │ │ └── scripts │ │ │ │ └── 030_outskirts.hsc │ │ │ └── ui │ │ │ └── mainmenu │ │ │ └── scripts │ │ │ └── mainmenu.hsc │ ├── debug_menu_init.txt │ └── init.txt ├── Mar 9 2007 Untracked Version │ ├── README.md │ ├── halo3_cache_profile.map │ └── init.txt └── Windows - MCC Mod Tools Oct 11 2021 │ └── data │ ├── ai │ ├── ai_dialogue_globals.xls │ ├── ai_dialogue_rules.xls │ ├── export_dialogue_globals.bat │ └── export_dialogue_globals_debug.bat │ ├── globals │ ├── armor_vs_damage.csv │ ├── armor_vs_damage.xls │ ├── armor_vs_damage_tilted.csv │ ├── armor_vs_damage_tilted.xls │ ├── global_extras.hsc │ └── global_scripts.hsc │ └── levels │ ├── dlc │ ├── armory │ │ ├── armory.xml │ │ └── scripts │ │ │ ├── armory_fragments.hsc │ │ │ └── armory_main.hsc │ ├── beachhead │ │ └── beachhead.xml │ ├── bunkerworld │ │ ├── bunkerworld.xml │ │ └── scripts │ │ │ ├── bunkerworld_fragments.hsc │ │ │ └── bunkerworld_main.hsc │ ├── chillout │ │ ├── chillout.xml │ │ └── scripts │ │ │ ├── chillout_fragments.hsc │ │ │ └── chillout_main.hsc │ ├── descent │ │ ├── descent.xml │ │ └── scripts │ │ │ ├── descent_fragments.hsc │ │ │ └── descent_main.hsc │ ├── docks │ │ ├── docks.xml │ │ └── scripts │ │ │ ├── docks_fragments.hsc │ │ │ └── docks_main.hsc │ ├── fortress │ │ ├── fortress.xml │ │ └── scripts │ │ │ ├── fortress_fragments.hsc │ │ │ └── fortress_main.hsc │ ├── ghosttown │ │ └── ghosttown.xml │ ├── landslide │ │ └── landslide.xml │ ├── lockout │ │ ├── lockout.xml │ │ └── scripts │ │ │ ├── lockout_fragments.hsc │ │ │ └── lockout_main.hsc │ ├── midship │ │ ├── midship.xml │ │ └── scripts │ │ │ ├── midship_fragments.hsc │ │ │ └── midship_main.hsc │ ├── pump_haus │ │ └── pump_haus.xml │ ├── sandbox │ │ ├── sandbox.xml │ │ └── scripts │ │ │ ├── sandbox_fragments.hsc │ │ │ └── sandbox_main.hsc │ ├── shaft │ │ └── shaft.xml │ ├── sidewinder │ │ ├── scripts │ │ │ ├── sidewinder_fragments.hsc │ │ │ └── sidewinder_main.hsc │ │ └── sidewinder.xml │ ├── spacecamp │ │ ├── scripts │ │ │ ├── spacecamp_fragments.hsc │ │ │ └── spacecamp_main.hsc │ │ └── spacecamp.xml │ ├── volcano │ │ └── volcano.xml │ ├── warehouse │ │ ├── scripts │ │ │ ├── warehouse.hsc │ │ │ └── warehouse_fragments.hsc │ │ └── warehouse.xml │ └── warthog_inc │ │ └── warthog_inc.xml │ ├── halo3.xml │ ├── multi │ ├── archive │ │ └── lockout │ │ │ └── scripts │ │ │ └── elevator.hsc │ ├── chill │ │ ├── chill.xml │ │ └── scripts │ │ │ ├── chill_fragments.hsc │ │ │ └── chill_main.hsc │ ├── construct │ │ ├── construct.xml │ │ └── scripts │ │ │ ├── construct_fragments.hsc │ │ │ └── construct_main.hsc │ ├── cyberdyne │ │ ├── cyberdyne.xml │ │ └── scripts │ │ │ ├── cyberdyne_fragments.hsc │ │ │ └── cyberdyne_main.hsc │ ├── deadlock │ │ ├── deadlock.xml │ │ └── scripts │ │ │ ├── deadlock_fragments.hsc │ │ │ └── deadlock_main.hsc │ ├── guardian │ │ ├── guardian.xml │ │ └── scripts │ │ │ ├── guardian_fragments.hsc │ │ │ └── guardian_main.hsc │ ├── isolation │ │ └── isolation.xml │ ├── riverworld │ │ └── riverworld.xml │ ├── s3d_edge │ │ ├── s3d_edge.xml │ │ └── scripts │ │ │ ├── s3d_edge_fragments.hsc │ │ │ └── s3d_edge_main.hsc │ ├── s3d_turf │ │ ├── s3d_turf.xml │ │ └── scripts │ │ │ ├── s3d_turf_fragments.hsc │ │ │ └── s3d_turf_main.hsc │ ├── s3d_waterfall │ │ ├── s3d_waterfall.xml │ │ └── scripts │ │ │ ├── s3d_waterfall.hsc │ │ │ └── s3d_waterfall_fragments.hsc │ ├── salvation │ │ ├── salvation.xml │ │ └── scripts │ │ │ ├── salvation_fragments.hsc │ │ │ └── salvation_main.hsc │ ├── shrine │ │ ├── scripts │ │ │ ├── shrine_fragments.hsc │ │ │ └── shrine_main.hsc │ │ └── shrine.xml │ ├── snowbound │ │ ├── scripts │ │ │ ├── snowbound_fragments.hsc │ │ │ └── snowbound_main.hsc │ │ └── snowbound.xml │ └── zanzibar │ │ └── zanzibar.xml │ ├── solo │ ├── 005_intro │ │ ├── 005_intro.xml │ │ └── scripts │ │ │ ├── 005_intro_ambient.hsc │ │ │ ├── 005_intro_fragments.hsc │ │ │ ├── 005_intro_insertion.hsc │ │ │ ├── 005_intro_mission.hsc │ │ │ └── 005_intro_tutorial.hsc │ ├── 010_jungle │ │ ├── 010_jungle.xml │ │ └── scripts │ │ │ ├── 010_jungle_ambient.hsc │ │ │ ├── 010_jungle_empty_cinematic.hsc │ │ │ ├── 010_jungle_fragments.hsc │ │ │ ├── 010_jungle_insertion.hsc │ │ │ ├── 010_jungle_mission.hsc │ │ │ └── 010_jungle_tutorial.hsc │ ├── 020_base │ │ ├── 020_base.xml │ │ └── scripts │ │ │ ├── 020_base_ambient.hsc │ │ │ ├── 020_base_empty_cinematic.hsc │ │ │ ├── 020_base_fragments.hsc │ │ │ ├── 020_base_insertion.hsc │ │ │ └── 020_base_mission.hsc │ ├── 030_outskirts │ │ ├── 030_outskirts.xml │ │ ├── e3 │ │ │ └── scripts │ │ │ │ ├── e3.hsc │ │ │ │ ├── e3_fragments.hsc │ │ │ │ ├── e3cubemaps.hsc │ │ │ │ └── e3cubemaps_fragments.hsc │ │ └── scripts │ │ │ ├── 030_outskirts_ambient.hsc │ │ │ ├── 030_outskirts_cinematics.hsc │ │ │ ├── 030_outskirts_empty_cinematic.hsc │ │ │ ├── 030_outskirts_fragments.hsc │ │ │ ├── 030_outskirts_insertion.hsc │ │ │ └── 030_outskirts_mission.hsc │ ├── 040_voi │ │ ├── 040_voi.xml │ │ └── scripts │ │ │ ├── 040_voi_ambient.hsc │ │ │ ├── 040_voi_cinematics.hsc │ │ │ ├── 040_voi_empty.hsc │ │ │ ├── 040_voi_empty_cinematic.hsc │ │ │ ├── 040_voi_fragments.hsc │ │ │ ├── 040_voi_insertion.hsc │ │ │ ├── 040_voi_mission.hsc │ │ │ ├── 040_voi_press.hsc │ │ │ ├── 040_voi_press_fragments.hsc │ │ │ ├── 040_voi_teleport.hsc │ │ │ └── sinomatixx.hsc │ ├── 050_floodvoi │ │ ├── 050_floodvoi.xml │ │ └── scripts │ │ │ ├── 050_floodvoi_ambient.hsc │ │ │ ├── 050_floodvoi_empty_cinematic.hsc │ │ │ ├── 050_floodvoi_fragments.hsc │ │ │ ├── 050_floodvoi_insertion.hsc │ │ │ └── 050_floodvoi_mission.hsc │ ├── 055_shadow │ │ └── scripts │ │ │ ├── 055_shadow.hsc │ │ │ └── 055_shadow_fragments.hsc │ ├── 070_waste │ │ ├── 070_waste.xml │ │ └── scripts │ │ │ ├── 070_waste_ambient.hsc │ │ │ ├── 070_waste_background.hsc │ │ │ ├── 070_waste_cinematics.hsc │ │ │ ├── 070_waste_empty_cinematic.hsc │ │ │ ├── 070_waste_fragments.hsc │ │ │ ├── 070_waste_insertion.hsc │ │ │ └── 070_waste_mission.hsc │ ├── 080_forest │ │ └── scripts │ │ │ ├── 080_forest_ambient.hsc │ │ │ ├── 080_forest_fragments.hsc │ │ │ ├── 080_forest_mission.hsc │ │ │ └── 080_forest_teleport.hsc │ ├── 090_alpine │ │ └── scripts │ │ │ └── 090_alpine_mission.hsc │ ├── 100_citadel │ │ ├── 100_citadel.xml │ │ └── scripts │ │ │ ├── 100_citadel_ambient.hsc │ │ │ ├── 100_citadel_empty_cinematic.hsc │ │ │ ├── 100_citadel_fragments.hsc │ │ │ ├── 100_citadel_insertion.hsc │ │ │ ├── 100_citadel_mission.hsc │ │ │ └── 100_citadel_teleport.hsc │ ├── 100_forecity │ │ └── scripts │ │ │ └── 100_forecity_mission.hsc │ ├── 110_hc │ │ ├── 110_hc.xml │ │ └── scripts │ │ │ ├── 110_hc_ambient.hsc │ │ │ ├── 110_hc_empty_cinematic.hsc │ │ │ ├── 110_hc_fragments.hsc │ │ │ ├── 110_hc_mission.hsc │ │ │ └── 110_hc_teleport.hsc │ ├── 110_hc_old │ │ └── scripts │ │ │ ├── 110_hc_fragments.hsc │ │ │ ├── 110_hc_mission.hsc │ │ │ └── 110_hc_teleport.hsc │ ├── 120_halo │ │ ├── 120_halo.xml │ │ └── scripts │ │ │ ├── 120_halo_ambient.hsc │ │ │ ├── 120_halo_empty.hsc │ │ │ ├── 120_halo_empty_fragments.hsc │ │ │ ├── 120_halo_fragments.hsc │ │ │ ├── 120_halo_insertion.hsc │ │ │ ├── 120_halo_mission.hsc │ │ │ ├── 120_halo_monitor.hsc │ │ │ ├── 120_halo_trench.hsc │ │ │ └── 120_halo_trench_cinematic.hsc │ └── 130_epilogue │ │ ├── 130_epilogue.xml │ │ └── scripts │ │ ├── 130_epilogue.hsc │ │ └── 130_epilogue_fragments.hsc │ └── ui │ └── mainmenu │ ├── mainmenu.xml │ └── scripts │ ├── mainmenu.hsc │ ├── mainmenu_blue_disk.hsc │ ├── mainmenu_fragments.hsc │ └── mainmenu_fragments_blue_disk.hsc ├── Halo 4 ├── Network Test Beta 14064.12.05.05.1011.beta │ ├── README.md │ └── data │ │ ├── globals │ │ └── scripts │ │ │ ├── global_abilities.hsc │ │ │ ├── global_ai.hsc │ │ │ ├── global_camera.hsc │ │ │ ├── global_checkpoints.hsc │ │ │ ├── global_cortana.hsc │ │ │ ├── global_devicemachines.hsc │ │ │ ├── global_dialog.hsc │ │ │ ├── global_lighting.hsc │ │ │ ├── global_logic.hsc │ │ │ ├── global_narrative.hsc │ │ │ ├── global_objects.hsc │ │ │ ├── global_physics.hsc │ │ │ ├── global_players.hsc │ │ │ ├── global_screenshake.hsc │ │ │ └── global_scripts.hsc │ │ └── levels │ │ ├── multi │ │ ├── ca_warhouse │ │ │ └── scripts │ │ │ │ └── ca_warhouse_audio.hsc │ │ └── wraparound │ │ │ └── scripts │ │ │ └── wraparound_audio.hsc │ │ └── ui │ │ └── mainmenu │ │ └── scripts │ │ └── mainmenu.hsc ├── Pre-Release 15116.12.05.31.0300.e3 │ ├── README.md │ ├── cheats.txt │ ├── data │ │ ├── globals │ │ │ └── scripts │ │ │ │ ├── global_abilities.hsc │ │ │ │ ├── global_ai.hsc │ │ │ │ ├── global_audio.hsc │ │ │ │ ├── global_camera.hsc │ │ │ │ ├── global_checkpoints.hsc │ │ │ │ ├── global_cinematic.hsc │ │ │ │ ├── global_cortana.hsc │ │ │ │ ├── global_devicemachines.hsc │ │ │ │ ├── global_dialog.hsc │ │ │ │ ├── global_lighting.hsc │ │ │ │ ├── global_logic.hsc │ │ │ │ ├── global_narrative.hsc │ │ │ │ ├── global_objects.hsc │ │ │ │ ├── global_physics.hsc │ │ │ │ ├── global_players.hsc │ │ │ │ ├── global_screenshake.hsc │ │ │ │ └── global_scripts.hsc │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── ca_warhouse │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ca_warhouse_audio.hsc │ │ │ │ └── wraparound │ │ │ │ │ └── scripts │ │ │ │ │ └── wraparound_audio.hsc │ │ │ └── ui │ │ │ │ └── mainmenu │ │ │ │ └── scripts │ │ │ │ └── mainmenu.hsc │ │ └── objects │ │ │ └── props │ │ │ └── forerunner │ │ │ └── knight_taint │ │ │ └── scripts │ │ │ └── knight_taint.hsc │ ├── debug_menu_init.txt │ ├── init.txt │ ├── prop.manifest │ └── wargames.map ├── Pre-Release 15117.12.05.31.0300.e3 │ ├── README.md │ ├── cheats.txt │ ├── data │ │ ├── globals │ │ │ ├── firefight_script.hsc │ │ │ ├── global_extras.hsc │ │ │ ├── global_firefight_vo_script.hsc │ │ │ └── scripts │ │ │ │ ├── global_abilities.hsc │ │ │ │ ├── global_ai.hsc │ │ │ │ ├── global_audio.hsc │ │ │ │ ├── global_camera.hsc │ │ │ │ ├── global_checkpoints.hsc │ │ │ │ ├── global_cinematic.hsc │ │ │ │ ├── global_cortana.hsc │ │ │ │ ├── global_devicemachines.hsc │ │ │ │ ├── global_dialog.hsc │ │ │ │ ├── global_lighting.hsc │ │ │ │ ├── global_logic.hsc │ │ │ │ ├── global_narrative.hsc │ │ │ │ ├── global_objects.hsc │ │ │ │ ├── global_physics.hsc │ │ │ │ ├── global_players.hsc │ │ │ │ ├── global_screenshake.hsc │ │ │ │ └── global_scripts.hsc │ │ ├── levels │ │ │ ├── firefight │ │ │ │ └── ff82_scurve │ │ │ │ │ └── scripts │ │ │ │ │ ├── ff82_scurve.hsc │ │ │ │ │ ├── ff82_scurve_e1_m5.hsc │ │ │ │ │ ├── ff82_scurve_e1_m5_audio.hsc │ │ │ │ │ ├── ff82_scurve_e2_m2.hsc │ │ │ │ │ ├── ff82_scurve_e4_m4.hsc │ │ │ │ │ ├── ff82_scurve_narrative.hsc │ │ │ │ │ └── ff82_scurve_vo.hsc │ │ │ └── ui │ │ │ │ └── mainmenu │ │ │ │ └── scripts │ │ │ │ └── mainmenu.hsc │ │ └── objects │ │ │ ├── props │ │ │ ├── covenant │ │ │ │ └── cov_squad_drop_pod │ │ │ │ │ └── scripts │ │ │ │ │ └── cov_squad_drop_pod.hsc │ │ │ └── forerunner │ │ │ │ ├── knight_taint │ │ │ │ └── scripts │ │ │ │ │ └── knight_taint.hsc │ │ │ │ └── shard_spawn │ │ │ │ └── scripts │ │ │ │ └── shard_spawn.hsc │ │ │ └── vehicles │ │ │ └── forerunner │ │ │ └── turrets │ │ │ └── storm_anti_infantry_turret │ │ │ └── scripts │ │ │ └── storm_anti_infantry_turret.hsc │ ├── debug_menu_init.txt │ ├── init.txt │ ├── prop.manifest │ └── spartanops.map ├── Pre-Release 15119.12.05.31.0400.e3m60 │ ├── README.md │ ├── cheats.txt │ ├── data │ │ ├── environments │ │ │ └── solo │ │ │ │ └── m60_rescue │ │ │ │ └── m60_e3 │ │ │ │ └── m60_e3 │ │ │ │ └── scripts │ │ │ │ ├── m60_e3_audio.hsc │ │ │ │ ├── m60_e3_design.hsc │ │ │ │ ├── m60_e3_dialog.hsc │ │ │ │ ├── m60_e3_mission.hsc │ │ │ │ └── m60_e3_narrative.hsc │ │ ├── globals │ │ │ └── scripts │ │ │ │ ├── global_abilities.hsc │ │ │ │ ├── global_ai.hsc │ │ │ │ ├── global_audio.hsc │ │ │ │ ├── global_camera.hsc │ │ │ │ ├── global_checkpoints.hsc │ │ │ │ ├── global_cinematic.hsc │ │ │ │ ├── global_cortana.hsc │ │ │ │ ├── global_devicemachines.hsc │ │ │ │ ├── global_dialog.hsc │ │ │ │ ├── global_lighting.hsc │ │ │ │ ├── global_logic.hsc │ │ │ │ ├── global_narrative.hsc │ │ │ │ ├── global_objects.hsc │ │ │ │ ├── global_physics.hsc │ │ │ │ ├── global_players.hsc │ │ │ │ ├── global_screenshake.hsc │ │ │ │ └── global_scripts.hsc │ │ ├── levels │ │ │ └── ui │ │ │ │ └── mainmenu │ │ │ │ └── scripts │ │ │ │ └── mainmenu.hsc │ │ └── objects │ │ │ └── props │ │ │ └── forerunner │ │ │ ├── knight_taint │ │ │ └── scripts │ │ │ │ └── knight_taint.hsc │ │ │ └── shard_spawn │ │ │ └── scripts │ │ │ └── shard_spawn.hsc │ ├── debug_menu_init.txt │ ├── init.txt │ ├── keynote.map │ └── prop.manifest ├── Pre-Release 16531.12.07.05.0200.main │ ├── README.md │ └── data │ │ ├── globals │ │ └── scripts │ │ │ ├── global_abilities.hsc │ │ │ ├── global_ai.hsc │ │ │ ├── global_audio.hsc │ │ │ ├── global_camera.hsc │ │ │ ├── global_checkpoints.hsc │ │ │ ├── global_cinematic.hsc │ │ │ ├── global_cortana.hsc │ │ │ ├── global_devicemachines.hsc │ │ │ ├── global_dialog.hsc │ │ │ ├── global_lighting.hsc │ │ │ ├── global_logic.hsc │ │ │ ├── global_narrative.hsc │ │ │ ├── global_objects.hsc │ │ │ ├── global_physics.hsc │ │ │ ├── global_players.hsc │ │ │ ├── global_screenshake.hsc │ │ │ └── global_scripts.hsc │ │ └── objects │ │ └── props │ │ └── forerunner │ │ └── knight_taint │ │ └── scripts │ │ └── knight_taint.hsc ├── Pre-Release 16587.12.07.05.2141.precert │ ├── README.md │ └── data │ │ ├── globals │ │ └── scripts │ │ │ ├── global_abilities.hsc │ │ │ ├── global_ai.hsc │ │ │ ├── global_audio.hsc │ │ │ ├── global_camera.hsc │ │ │ ├── global_checkpoints.hsc │ │ │ ├── global_cinematic.hsc │ │ │ ├── global_cortana.hsc │ │ │ ├── global_devicemachines.hsc │ │ │ ├── global_dialog.hsc │ │ │ ├── global_lighting.hsc │ │ │ ├── global_logic.hsc │ │ │ ├── global_narrative.hsc │ │ │ ├── global_objects.hsc │ │ │ ├── global_physics.hsc │ │ │ ├── global_players.hsc │ │ │ ├── global_screenshake.hsc │ │ │ └── global_scripts.hsc │ │ └── objects │ │ └── props │ │ └── forerunner │ │ └── knight_taint │ │ └── scripts │ │ └── knight_taint.hsc ├── Pre-Release 17539.12.07.24.0200.main │ ├── README.md │ └── data │ │ ├── globals │ │ └── scripts │ │ │ ├── global_abilities.hsc │ │ │ ├── global_ai.hsc │ │ │ ├── global_audio.hsc │ │ │ ├── global_camera.hsc │ │ │ ├── global_checkpoints.hsc │ │ │ ├── global_cinematic.hsc │ │ │ ├── global_cortana.hsc │ │ │ ├── global_devicemachines.hsc │ │ │ ├── global_dialog.hsc │ │ │ ├── global_lighting.hsc │ │ │ ├── global_logic.hsc │ │ │ ├── global_narrative.hsc │ │ │ ├── global_objects.hsc │ │ │ ├── global_physics.hsc │ │ │ ├── global_players.hsc │ │ │ ├── global_screenshake.hsc │ │ │ ├── global_scripts.hsc │ │ │ └── global_zoneset.hsc │ │ └── objects │ │ └── props │ │ └── forerunner │ │ └── knight_taint │ │ └── scripts │ │ └── knight_taint.hsc ├── Pre-Release 18223.12.08.06.0200.main │ ├── README.md │ └── data │ │ └── globals │ │ └── scripts │ │ ├── global_abilities.hsc │ │ ├── global_ai.hsc │ │ ├── global_audio.hsc │ │ ├── global_camera.hsc │ │ ├── global_checkpoints.hsc │ │ ├── global_cinematic.hsc │ │ ├── global_cortana.hsc │ │ ├── global_devicemachines.hsc │ │ ├── global_dialog.hsc │ │ ├── global_lighting.hsc │ │ ├── global_logic.hsc │ │ ├── global_narrative.hsc │ │ ├── global_objects.hsc │ │ ├── global_physics.hsc │ │ ├── global_players.hsc │ │ ├── global_screenshake.hsc │ │ ├── global_scripts.hsc │ │ └── global_zoneset.hsc ├── Pre-Release 18845.12.08.16.0200.main │ ├── README.md │ └── data │ │ └── globals │ │ └── scripts │ │ ├── global_abilities.hsc │ │ ├── global_ai.hsc │ │ ├── global_audio.hsc │ │ ├── global_camera.hsc │ │ ├── global_checkpoints.hsc │ │ ├── global_cinematic.hsc │ │ ├── global_cortana.hsc │ │ ├── global_devicemachines.hsc │ │ ├── global_dialog.hsc │ │ ├── global_lighting.hsc │ │ ├── global_logic.hsc │ │ ├── global_narrative.hsc │ │ ├── global_objects.hsc │ │ ├── global_physics.hsc │ │ ├── global_players.hsc │ │ ├── global_screenshake.hsc │ │ ├── global_scripts.hsc │ │ └── global_zoneset.hsc ├── Pre-Release 19057.12.08.19.0400.main │ ├── README.md │ ├── data │ │ ├── environments │ │ │ ├── solo │ │ │ │ ├── m020 │ │ │ │ │ ├── device_machines │ │ │ │ │ │ ├── m20_bridge_door │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_bridge_door.hsc │ │ │ │ │ │ ├── m20_bridge_elevator │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_bridge_elevator.hsc │ │ │ │ │ │ ├── m20_cat_hex │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_cat_hex.hsc │ │ │ │ │ │ ├── m20_cat_int_door_main │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_cat_int_door_main.hsc │ │ │ │ │ │ ├── m20_cat_int_reg │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_cat_int_reg.hsc │ │ │ │ │ │ ├── m20_cat_int_sideways │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_cat_int_sideways.hsc │ │ │ │ │ │ ├── m20_cat_int_tall │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_cat_int_tall.hsc │ │ │ │ │ │ ├── m20_cat_mushroom │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_cat_mushroom.hsc │ │ │ │ │ │ ├── m20_fr_to_courtyard_door │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_fr_to_courtyard_door.hsc │ │ │ │ │ │ ├── m20_term_column │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_term_column.hsc │ │ │ │ │ │ ├── m20_term_lift │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m20_term_lift.hsc │ │ │ │ │ │ └── m20_to_term_door │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_to_term_door.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── m020_mission.hsc │ │ │ │ │ │ ├── m020_mission_guardpost.hsc │ │ │ │ │ │ ├── m20_ambient.hsc │ │ │ │ │ │ ├── m20_audio.hsc │ │ │ │ │ │ ├── m20_dialogue.hsc │ │ │ │ │ │ ├── m20_fx.hsc │ │ │ │ │ │ ├── m20_insertion.hsc │ │ │ │ │ │ └── m20_narrative.hsc │ │ │ │ ├── m05_prologue │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m05_prologue.hsc │ │ │ │ ├── m10_crash │ │ │ │ │ ├── crates │ │ │ │ │ │ ├── cryo_tube_02 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── cryo_tube_02.hsc │ │ │ │ │ │ ├── m10_maintenance │ │ │ │ │ │ │ └── m10_maintenance_rail_crate │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_maintenance_rail_crate.hsc │ │ │ │ │ │ ├── m10_maintenance_hall │ │ │ │ │ │ │ └── m10_maintenance_hall_wall │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_maintenance_hall_wall.hsc │ │ │ │ │ │ ├── m10_obs_window_main │ │ │ │ │ │ │ └── m10_obs_window_main │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_obs_window_main.hsc │ │ │ │ │ │ ├── m10_obs_window_side │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_obs_window_side.hsc │ │ │ │ │ │ └── m10_podchase │ │ │ │ │ │ │ ├── m10_podchase_debris │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_podchase_debris.hsc │ │ │ │ │ │ │ └── m10_podchase_fusioncoil │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_podchase_fusioncoil.hsc │ │ │ │ │ ├── device_controls │ │ │ │ │ │ ├── m10_control_panel_switch │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_control_panel_switch.hsc │ │ │ │ │ │ ├── m10_elevator_control │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_elevator_control.hsc │ │ │ │ │ │ ├── m10_fud_halogram_switch │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_fud_halogram_switch.hsc │ │ │ │ │ │ ├── m10_plinth_control │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_plinth_control.hsc │ │ │ │ │ │ └── m10_star_map_control │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_star_map_control.hsc │ │ │ │ │ ├── device_machines │ │ │ │ │ │ ├── m10_beacon01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_beacon01.hsc │ │ │ │ │ │ ├── m10_beacon02 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_beacon02.hsc │ │ │ │ │ │ ├── m10_beacon_debris_phantom_killer │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_beac_debris_kill.hsc │ │ │ │ │ │ ├── m10_beacon_door │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_beacon_door.hsc │ │ │ │ │ │ ├── m10_beacon_launcher │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_beacon_launcher.hsc │ │ │ │ │ │ ├── m10_breaking_hall_02 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_dm_breaking_hall_02.hsc │ │ │ │ │ │ ├── m10_broken │ │ │ │ │ │ │ ├── m10_broken_block01 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_broken_block01.hsc │ │ │ │ │ │ │ ├── m10_broken_ceiling01 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_dm_breaking_hall_01_ceiling.hsc │ │ │ │ │ │ │ ├── m10_broken_hall01 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_dm_breaking_hall_01.hsc │ │ │ │ │ │ │ ├── m10_broken_room01 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_broken_room01.hsc │ │ │ │ │ │ │ ├── m10_broken_room02 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_broken_room02.hsc │ │ │ │ │ │ │ ├── m10_broken_room03 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_broken_room03.hsc │ │ │ │ │ │ │ └── m10_broken_room04 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_broken_room04.hsc │ │ │ │ │ │ ├── m10_cryo_tube │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_cryo_tube.hsc │ │ │ │ │ │ ├── m10_debris_ambient │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_debris_ambient.hsc │ │ │ │ │ │ ├── m10_door_double_elevator │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_door_double_elevator.hsc │ │ │ │ │ │ ├── m10_doors │ │ │ │ │ │ │ └── m10_vehiclebay_hall_door │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_vehiclebay_hall_door.hsc │ │ │ │ │ │ ├── m10_fud_halogram │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_fud_halogram.hsc │ │ │ │ │ │ ├── m10_ics_elevator_door01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_ics_elevator_door01.hsc │ │ │ │ │ │ ├── m10_magaccelerator01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_magaccelerator01.hsc │ │ │ │ │ │ ├── m10_maintenance │ │ │ │ │ │ │ ├── m10_maintenance_ramp_far │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_maintenance_ramp_far.hsc │ │ │ │ │ │ │ ├── m10_maintenance_ramp_near │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_maintenance_ramp_near.hsc │ │ │ │ │ │ │ └── m10_maintenance_warthog_rack │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_maintenance_warthog_rack.hsc │ │ │ │ │ │ ├── m10_maintenance_hall │ │ │ │ │ │ │ ├── m10_maintenance_hall_block01 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_maintenance_hall_block01.hsc │ │ │ │ │ │ │ └── m10_maintenance_hall_block02 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_maintenance_hall_block02.hsc │ │ │ │ │ │ ├── m10_observatory_covenant_fleet │ │ │ │ │ │ │ ├── m10_obs_fleet_background_ships │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_obs_fleet_background_ships.hsc │ │ │ │ │ │ │ ├── m10_obs_fleet_crash_ship │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_obs_fleet_crash_ship.hsc │ │ │ │ │ │ │ ├── m10_obs_fleet_debris │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_obs_fleet_debris.hsc │ │ │ │ │ │ │ └── m10_obs_fleet_drop_pod_cruiser │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_obs_fleet_drop_pod_cruiser.hsc │ │ │ │ │ │ ├── m10_observatory_covenant_fleet_cheap │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_obs_fleet_crash_ship_cheap.hsc │ │ │ │ │ │ ├── m10_observatory_windows │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_observatory_windows.hsc │ │ │ │ │ │ ├── m10_phantom_lander_03 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_obs_phantom_lander_03.hsc │ │ │ │ │ │ ├── m10_podchase │ │ │ │ │ │ │ └── events │ │ │ │ │ │ │ │ └── 02 │ │ │ │ │ │ │ │ ├── m10_podchase_event02_obstacle │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_podchase_event02_obstacle.hsc │ │ │ │ │ │ │ │ ├── m10_podchase_event02_platform_a01 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_podchase_e02_platform_a01.hsc │ │ │ │ │ │ │ │ ├── m10_podchase_event02_platform_b01 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_podchase_e02_platform_b01.hsc │ │ │ │ │ │ │ │ ├── m10_podchase_event02_platform_b02 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_podchase_e02_platform_b02.hsc │ │ │ │ │ │ │ │ ├── m10_podchase_event02_platform_c02 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ │ └── m10_podchase_e02_platform_c02.hsc │ │ │ │ │ │ │ │ └── m10_podchase_event02_platform_c03 │ │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_podchase_e02_platform_c03.hsc │ │ │ │ │ │ ├── m10_temp_phantom_tube │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_temp_phantom_tube.hsc │ │ │ │ │ │ ├── m10_unsc_door_main_airlock │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_unsc_door_main_airlock.hsc │ │ │ │ │ │ ├── m10_unsc_door_main_large_fud │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_unsc_door_main_large_fud.hsc │ │ │ │ │ │ ├── m10_unsc_door_main_small_fud │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_unsc_door_main_small_fud.hsc │ │ │ │ │ │ ├── m10_weaponrack_floor01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_weaponrack_floor01.hsc │ │ │ │ │ │ ├── m10_weaponrack_wall01_single_horiz │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_weprack_wall01_single_horiz.hsc │ │ │ │ │ │ ├── m10_weaponrack_wall01_single_vert │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_weprack_wall01_single_vert.hsc │ │ │ │ │ │ ├── m10_weaponrack_wall01_small │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_weaponrack_wall01_small.hsc │ │ │ │ │ │ └── m10_weaponrack_wall01_wide │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_weaponrack_wall01_wide.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── fx_00_cryo_room.hsc │ │ │ │ │ │ ├── fx_08_elevator.hsc │ │ │ │ │ │ ├── fx_12_observatory.hsc │ │ │ │ │ │ ├── fx_30_beacons.hsc │ │ │ │ │ │ ├── fx_30_beacons_02.hsc │ │ │ │ │ │ ├── m10_beacon.hsc │ │ │ │ │ │ ├── m10_cortana_plinth.hsc │ │ │ │ │ │ ├── m10_crash_audio.hsc │ │ │ │ │ │ ├── m10_crash_dialog.hsc │ │ │ │ │ │ ├── m10_crash_droppod_ics.hsc │ │ │ │ │ │ ├── m10_crash_elevator_ics.hsc │ │ │ │ │ │ ├── m10_crash_end.hsc │ │ │ │ │ │ ├── m10_crash_fx.hsc │ │ │ │ │ │ ├── m10_crash_fx_je.hsc │ │ │ │ │ │ ├── m10_crash_fx_jvz.hsc │ │ │ │ │ │ ├── m10_crash_gameplay.hsc │ │ │ │ │ │ ├── m10_crash_insertion.hsc │ │ │ │ │ │ ├── m10_crash_mission.hsc │ │ │ │ │ │ ├── m10_cryo.hsc │ │ │ │ │ │ ├── m10_end_airlock.hsc │ │ │ │ │ │ ├── m10_end_brokenfloor.hsc │ │ │ │ │ │ ├── m10_end_brokenfloor_ai.hsc │ │ │ │ │ │ ├── m10_end_brokenfloor_destruction.hsc │ │ │ │ │ │ ├── m10_end_brokenfloor_entry.hsc │ │ │ │ │ │ ├── m10_end_brokenfloor_hall.hsc │ │ │ │ │ │ ├── m10_end_maintenance.hsc │ │ │ │ │ │ ├── m10_end_maintenance_ai.hsc │ │ │ │ │ │ ├── m10_end_maintenance_destruction.hsc │ │ │ │ │ │ ├── m10_end_maintenance_hall.hsc │ │ │ │ │ │ ├── m10_end_maintenance_hall_ai.hsc │ │ │ │ │ │ ├── m10_flank.hsc │ │ │ │ │ │ ├── m10_flank_ai.hsc │ │ │ │ │ │ ├── m10_lab.hsc │ │ │ │ │ │ ├── m10_narrative.hsc │ │ │ │ │ │ ├── m10_objectives.hsc │ │ │ │ │ │ ├── m10_observatory.hsc │ │ │ │ │ │ ├── m10_observatory_covenant_fleet.hsc │ │ │ │ │ │ ├── m10_observatory_phantom_lander.hsc │ │ │ │ │ │ └── m10_spacesuck_fx.hsc │ │ │ │ ├── m30_cryptum │ │ │ │ │ ├── device_machines │ │ │ │ │ │ ├── donut_large_door │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── donut_large_door.hsc │ │ │ │ │ │ ├── escape_collapse_1 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── escape_collapse_1.hsc │ │ │ │ │ │ ├── escape_collapse_2 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── escape_collapse_2.hsc │ │ │ │ │ │ ├── escape_collapse_3 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── escape_collapse_3.hsc │ │ │ │ │ │ ├── escape_collapse_4 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── escape_collapse_4.hsc │ │ │ │ │ │ ├── escape_collapse_5 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── escape_collapse_5.hsc │ │ │ │ │ │ ├── escape_collapse_7 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── escape_collapse_7.hsc │ │ │ │ │ │ ├── escape_collapse_8 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── escape_collapse_8.hsc │ │ │ │ │ │ ├── forerunner_bishop_tower │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── forerunner_bishop_tower.hsc │ │ │ │ │ │ ├── forerunner_forts_powercore_01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── forerunner_forts_powercore_01.hsc │ │ │ │ │ │ ├── forerunner_forts_powercore_02 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── forerunner_forts_powercore_02.hsc │ │ │ │ │ │ ├── forerunner_large_tunnel_door_in │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── forerunner_large_tunnel_door_in.hsc │ │ │ │ │ │ ├── forerunner_pylon_elevator_pad_01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── forerunner_elevator_01.hsc │ │ │ │ │ │ ├── forerunner_small_tunnel_door_in │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── forerunner_small_tunnel_door_in.hsc │ │ │ │ │ │ ├── m30_donut_elevator │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m30_donut_elevator.hsc │ │ │ │ │ │ ├── m30_donut_grinder │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m30_donut_grinder.hsc │ │ │ │ │ │ ├── observation_deck_01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── observation_deck_01.hsc │ │ │ │ │ │ ├── observation_deck_support_01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── observation_deck_support_01.hsc │ │ │ │ │ │ ├── observation_portal_01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── observation_portal_01.hsc │ │ │ │ │ │ ├── observation_portal_02 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── observation_portal_02.hsc │ │ │ │ │ │ ├── observation_portal_03 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── observation_portal_03.hsc │ │ │ │ │ │ ├── plyon_curved_door │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── pylon_curved_door.hsc │ │ │ │ │ │ ├── pylon_beam_shaft │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── pylon_beam_shaft.hsc │ │ │ │ │ │ ├── pylon_power_core_eye │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── pylon_power_core_eye.hsc │ │ │ │ │ │ └── pylon_teleporter │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── pylon_teleporter.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── m30_cryptum_audio.hsc │ │ │ │ │ │ ├── m30_cryptum_donut.hsc │ │ │ │ │ │ ├── m30_cryptum_escape.hsc │ │ │ │ │ │ ├── m30_cryptum_exterior_1.hsc │ │ │ │ │ │ ├── m30_cryptum_exterior_2.hsc │ │ │ │ │ │ ├── m30_cryptum_forerunners.hsc │ │ │ │ │ │ ├── m30_cryptum_forts_1.hsc │ │ │ │ │ │ ├── m30_cryptum_forts_2.hsc │ │ │ │ │ │ ├── m30_cryptum_fx.hsc │ │ │ │ │ │ ├── m30_cryptum_insertion.hsc │ │ │ │ │ │ ├── m30_cryptum_mission.hsc │ │ │ │ │ │ ├── m30_dialogue.hsc │ │ │ │ │ │ └── m30_narrative.hsc │ │ │ │ ├── m40_invasion │ │ │ │ │ ├── device_machine │ │ │ │ │ │ ├── desert_weapon_rack │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── desert_weapon_rack.hsc │ │ │ │ │ │ ├── fore_door_large │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── fore_door_large.hsc │ │ │ │ │ │ └── fore_door_small │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── fore_door_small.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── m40_dialog.hsc │ │ │ │ │ │ ├── m40_invasion_audio.hsc │ │ │ │ │ │ ├── m40_invasion_citadel.hsc │ │ │ │ │ │ ├── m40_invasion_citadel_ext.hsc │ │ │ │ │ │ ├── m40_invasion_citadel_int.hsc │ │ │ │ │ │ ├── m40_invasion_epic.hsc │ │ │ │ │ │ ├── m40_invasion_fodder.hsc │ │ │ │ │ │ ├── m40_invasion_fx.hsc │ │ │ │ │ │ ├── m40_invasion_infinity.hsc │ │ │ │ │ │ ├── m40_invasion_insertion.hsc │ │ │ │ │ │ ├── m40_invasion_jackal.hsc │ │ │ │ │ │ ├── m40_invasion_library.hsc │ │ │ │ │ │ ├── m40_invasion_mission.hsc │ │ │ │ │ │ ├── m40_invasion_powercave.hsc │ │ │ │ │ │ ├── m40_invasion_prechopper.hsc │ │ │ │ │ │ ├── m40_invasion_target_designator.hsc │ │ │ │ │ │ └── m40_narrative.hsc │ │ │ │ ├── m60_rescue │ │ │ │ │ ├── device_machine │ │ │ │ │ │ ├── infinity_airlock_door │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── infinity_airlock_door.hsc │ │ │ │ │ │ ├── infinity_elevator │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── infinity_elevator.hsc │ │ │ │ │ │ ├── infinity_elevator_door_hallway │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── infinity_elevator_door_hallway.hsc │ │ │ │ │ │ ├── infinity_rock_fall │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── infinity_rock_fall.hsc │ │ │ │ │ │ └── infinity_tank_lift │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── infinity_tank_lift.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── m60_dialog.hsc │ │ │ │ │ │ ├── m60_e4all.hsc │ │ │ │ │ │ ├── m60_narrative.hsc │ │ │ │ │ │ ├── m60_rescue_audio.hsc │ │ │ │ │ │ ├── m60_rescue_fx.hsc │ │ │ │ │ │ ├── m60_rescue_insertion.hsc │ │ │ │ │ │ ├── m60_rescue_marsh.hsc │ │ │ │ │ │ ├── m60_rescue_mission.hsc │ │ │ │ │ │ ├── m60_rescue_mission_ch.hsc │ │ │ │ │ │ └── m60_rescue_mission_tt.hsc │ │ │ │ ├── m70_liftoff │ │ │ │ │ ├── device_machines │ │ │ │ │ │ ├── fr_bridge001 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m70_fr_bridge001.hsc │ │ │ │ │ │ ├── fr_bridge002 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m70_fr_bridge002.hsc │ │ │ │ │ │ ├── fr_bridgecenter │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m70_fr_bridgecenter.hsc │ │ │ │ │ │ ├── fr_bridgestart │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m70_fr_bridge_start.hsc │ │ │ │ │ │ ├── m70_interior_door │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m70_interior_door.hsc │ │ │ │ │ │ ├── m70_spire01_gondola │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m70_spire01_gondola.hsc │ │ │ │ │ │ ├── m70_spire01_tower_bridge │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m70_spire01_tower_bridge.hsc │ │ │ │ │ │ ├── m70_spire01_tower_shield │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m70_spire01_tower_shield.hsc │ │ │ │ │ │ └── m70_spire2_core003 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m70_spire2_core003.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── m70_audio.hsc │ │ │ │ │ │ ├── m70_dialog.hsc │ │ │ │ │ │ ├── m70_didact.hsc │ │ │ │ │ │ ├── m70_flight.hsc │ │ │ │ │ │ ├── m70_flight_ai.hsc │ │ │ │ │ │ ├── m70_flight_audio.hsc │ │ │ │ │ │ ├── m70_flight_fx.hsc │ │ │ │ │ │ ├── m70_infinity.hsc │ │ │ │ │ │ ├── m70_infinity_ai.hsc │ │ │ │ │ │ ├── m70_infinity_audio.hsc │ │ │ │ │ │ ├── m70_infinity_fx.hsc │ │ │ │ │ │ ├── m70_insertion.hsc │ │ │ │ │ │ ├── m70_lich.hsc │ │ │ │ │ │ ├── m70_mission.hsc │ │ │ │ │ │ ├── m70_narrative.hsc │ │ │ │ │ │ ├── m70_objectives.hsc │ │ │ │ │ │ ├── m70_spire.hsc │ │ │ │ │ │ ├── m70_spire_01.hsc │ │ │ │ │ │ ├── m70_spire_01_ai.hsc │ │ │ │ │ │ ├── m70_spire_01_audio.hsc │ │ │ │ │ │ ├── m70_spire_01_fx.hsc │ │ │ │ │ │ ├── m70_spire_02.hsc │ │ │ │ │ │ ├── m70_spire_02_ai.hsc │ │ │ │ │ │ ├── m70_spire_02_audio.hsc │ │ │ │ │ │ ├── m70_spire_02_fx.hsc │ │ │ │ │ │ ├── m70_spire_03.hsc │ │ │ │ │ │ ├── m70_spire_03_ai.hsc │ │ │ │ │ │ ├── m70_spire_03_audio.hsc │ │ │ │ │ │ └── m70_spire_03_fx.hsc │ │ │ │ ├── m80_delta │ │ │ │ │ ├── device_machines │ │ │ │ │ │ ├── m80_airlock_door_02 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m80_airlock_door_02.hsc │ │ │ │ │ │ ├── m80_arch_door_01b │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m80_arch_door_01b.hsc │ │ │ │ │ │ ├── m80_large_door_01b │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m80_large_door_01b.hsc │ │ │ │ │ │ ├── m80_medium_door_01b │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m80_medium_door_01b.hsc │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m80_airlock_door_01b.hsc │ │ │ │ │ ├── scenery │ │ │ │ │ │ └── m80_location_marker │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m80_location_marker.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── m80_airlocks.hsc │ │ │ │ │ │ ├── m80_airlocks_one.hsc │ │ │ │ │ │ ├── m80_airlocks_one_ai.hsc │ │ │ │ │ │ ├── m80_airlocks_two.hsc │ │ │ │ │ │ ├── m80_airlocks_two_ai.hsc │ │ │ │ │ │ ├── m80_atrium.hsc │ │ │ │ │ │ ├── m80_atrium_ai.hsc │ │ │ │ │ │ ├── m80_atrium_audio.hsc │ │ │ │ │ │ ├── m80_atrium_fx.hsc │ │ │ │ │ │ ├── m80_atrium_narrative.hsc │ │ │ │ │ │ ├── m80_atrium_return.hsc │ │ │ │ │ │ ├── m80_atrium_return_lookout.hsc │ │ │ │ │ │ ├── m80_audio.hsc │ │ │ │ │ │ ├── m80_crash.hsc │ │ │ │ │ │ ├── m80_crash_audio.hsc │ │ │ │ │ │ ├── m80_crash_fx.hsc │ │ │ │ │ │ ├── m80_crash_narrative.hsc │ │ │ │ │ │ ├── m80_dialog.hsc │ │ │ │ │ │ ├── m80_elevator.hsc │ │ │ │ │ │ ├── m80_fx.hsc │ │ │ │ │ │ ├── m80_guns.hsc │ │ │ │ │ │ ├── m80_guns_ai.hsc │ │ │ │ │ │ ├── m80_guns_hallways.hsc │ │ │ │ │ │ ├── m80_guns_hallways_ai.hsc │ │ │ │ │ │ ├── m80_guns_hallways_narrative.hsc │ │ │ │ │ │ ├── m80_hallways.hsc │ │ │ │ │ │ ├── m80_hallways_ai.hsc │ │ │ │ │ │ ├── m80_hallways_one.hsc │ │ │ │ │ │ ├── m80_hallways_one_ai.hsc │ │ │ │ │ │ ├── m80_hallways_one_narrative.hsc │ │ │ │ │ │ ├── m80_hallways_two.hsc │ │ │ │ │ │ ├── m80_hallways_two_ai.hsc │ │ │ │ │ │ ├── m80_horseshoe.hsc │ │ │ │ │ │ ├── m80_horseshoe_ai.hsc │ │ │ │ │ │ ├── m80_horseshoe_audio.hsc │ │ │ │ │ │ ├── m80_horseshoe_fx.hsc │ │ │ │ │ │ ├── m80_horseshoe_narrative.hsc │ │ │ │ │ │ ├── m80_insertion.hsc │ │ │ │ │ │ ├── m80_lab.hsc │ │ │ │ │ │ ├── m80_lab_ai.hsc │ │ │ │ │ │ ├── m80_lab_audio.hsc │ │ │ │ │ │ ├── m80_lab_fx.hsc │ │ │ │ │ │ ├── m80_lab_narrative.hsc │ │ │ │ │ │ ├── m80_mission.hsc │ │ │ │ │ │ ├── m80_mission_shakes.hsc │ │ │ │ │ │ ├── m80_mission_shakes_fx.hsc │ │ │ │ │ │ ├── m80_narrative.hsc │ │ │ │ │ │ └── m80_objectives.hsc │ │ │ │ ├── m90_sacrifice │ │ │ │ │ ├── crates │ │ │ │ │ │ └── m90_trench_power_tower │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m90_trench_power_tower.hsc │ │ │ │ │ ├── device_machines │ │ │ │ │ │ ├── dm_ambient_pillars_eye │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_trench_ambient_pillars.hsc │ │ │ │ │ │ ├── dm_m90_power_tower │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m90_power_tower.hsc │ │ │ │ │ │ ├── dm_teleporttrain_001 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_teleporttrain_001.hsc │ │ │ │ │ │ ├── dm_teleporttrain_002 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_teleporttrain_002.hsc │ │ │ │ │ │ ├── dm_teleporttrain_003 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_teleporttrain_003.hsc │ │ │ │ │ │ ├── dm_teleporttrain_004 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_teleporttrain_004.hsc │ │ │ │ │ │ ├── dm_teleporttrain_005 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_teleporttrain_005.hsc │ │ │ │ │ │ ├── dm_teleporttrain_006 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_teleporttrain_006.hsc │ │ │ │ │ │ ├── dm_teleporttrain_007 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_teleporttrain_007.hsc │ │ │ │ │ │ ├── dm_teleporttrain_008 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_teleporttrain_008.hsc │ │ │ │ │ │ ├── dm_trench_prober │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_trench_prober.hsc │ │ │ │ │ │ ├── dm_trench_prober_b │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_trench_prober_b.hsc │ │ │ │ │ │ ├── dm_trench_prober_c │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_trench_prober_c.hsc │ │ │ │ │ │ ├── dm_trench_prober_d │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── dm_trench_prober_d.hsc │ │ │ │ │ │ └── m90_interior_train_med │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m90_interior_train_med.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── m90_arcade.hsc │ │ │ │ │ │ ├── m90_coldant.hsc │ │ │ │ │ │ ├── m90_dialogue.hsc │ │ │ │ │ │ ├── m90_jump.hsc │ │ │ │ │ │ ├── m90_narrative.hsc │ │ │ │ │ │ ├── m90_sacrifice_audio.hsc │ │ │ │ │ │ ├── m90_sacrifice_flight_eye.hsc │ │ │ │ │ │ ├── m90_sacrifice_fx.hsc │ │ │ │ │ │ ├── m90_sacrifice_insertion.hsc │ │ │ │ │ │ ├── m90_sacrifice_mission.hsc │ │ │ │ │ │ ├── m90_sacrifice_mission_flight.hsc │ │ │ │ │ │ ├── m90_streaming.hsc │ │ │ │ │ │ ├── m90_teleport.hsc │ │ │ │ │ │ └── m90_walls.hsc │ │ │ │ └── m95_epilogue │ │ │ │ │ └── scripts │ │ │ │ │ └── m95_epilogue.hsc │ │ │ └── temp │ │ │ │ ├── a-thcold │ │ │ │ └── tools_bvt_ai_test │ │ │ │ │ └── scripts │ │ │ │ │ ├── layer_objectives_testscripts.hsc │ │ │ │ │ ├── layer_pathfinding_testscripts.hsc │ │ │ │ │ └── tools_bvt_ai_test_variabletest.hsc │ │ │ │ └── derrickh │ │ │ │ └── fud_cine_vs │ │ │ │ └── scripts │ │ │ │ ├── fud_cine_vs_insertion.hsc │ │ │ │ └── fud_cine_vs_mission.hsc │ │ ├── globals │ │ │ ├── firefight_script.hsc │ │ │ ├── global_door.hsc │ │ │ ├── global_extras.hsc │ │ │ ├── global_firefight_vo_script.hsc │ │ │ ├── global_insertion.hsc │ │ │ ├── global_objectives.hsc │ │ │ ├── global_phantom.hsc │ │ │ ├── global_spops_dialog.hsc │ │ │ └── scripts │ │ │ │ ├── global_abilities.hsc │ │ │ │ ├── global_ai.hsc │ │ │ │ ├── global_audio.hsc │ │ │ │ ├── global_camera.hsc │ │ │ │ ├── global_checkpoints.hsc │ │ │ │ ├── global_cinematic.hsc │ │ │ │ ├── global_cortana.hsc │ │ │ │ ├── global_devicemachines.hsc │ │ │ │ ├── global_dialog.hsc │ │ │ │ ├── global_lighting.hsc │ │ │ │ ├── global_logic.hsc │ │ │ │ ├── global_narrative.hsc │ │ │ │ ├── global_objects.hsc │ │ │ │ ├── global_physics.hsc │ │ │ │ ├── global_players.hsc │ │ │ │ ├── global_screenshake.hsc │ │ │ │ ├── global_scripts.hsc │ │ │ │ └── global_zoneset.hsc │ │ ├── levels │ │ │ ├── design │ │ │ │ └── ai_gym │ │ │ │ │ └── scripts │ │ │ │ │ └── ai_gym_mission.hsc │ │ │ ├── firefight │ │ │ │ ├── ff81_courtyard │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff81_courtyard.hsc │ │ │ │ │ │ ├── ff81_courtyard_e2_m1.hsc │ │ │ │ │ │ ├── ff81_courtyard_e2_m1_audio.hsc │ │ │ │ │ │ ├── ff81_courtyard_e3_m5.hsc │ │ │ │ │ │ ├── ff81_courtyard_e3_m5_audio.hsc │ │ │ │ │ │ ├── ff81_courtyard_e5_m1.hsc │ │ │ │ │ │ ├── ff81_courtyard_e5_m1_audio.hsc │ │ │ │ │ │ └── ff81_courtyard_narrative.hsc │ │ │ │ ├── ff82_scurve │ │ │ │ │ ├── device_machines │ │ │ │ │ │ ├── dm_scurve_bridgepanel │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── door_scripts.hsc │ │ │ │ │ │ └── dm_scurve_controlpanel │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── door_scripts.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff82_scurve.hsc │ │ │ │ │ │ ├── ff82_scurve_e1_m5.hsc │ │ │ │ │ │ ├── ff82_scurve_e1_m5_audio.hsc │ │ │ │ │ │ ├── ff82_scurve_e2_m2.hsc │ │ │ │ │ │ ├── ff82_scurve_e2_m2_audio.hsc │ │ │ │ │ │ ├── ff82_scurve_e4_m4.hsc │ │ │ │ │ │ ├── ff82_scurve_e4_m4_audio.hsc │ │ │ │ │ │ ├── ff82_scurve_e5_m4.hsc │ │ │ │ │ │ ├── ff82_scurve_e5_m4_audio.hsc │ │ │ │ │ │ ├── ff82_scurve_narrative.hsc │ │ │ │ │ │ └── ff82_scurve_vo.hsc │ │ │ │ ├── ff84_temple │ │ │ │ │ ├── device_machines │ │ │ │ │ │ └── dm_temple_controlpanel │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── door_scripts.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff84_temple.hsc │ │ │ │ │ │ ├── ff84_temple_e1_m2_audio.hsc │ │ │ │ │ │ ├── ff84_temple_e1_m4.hsc │ │ │ │ │ │ ├── ff84_temple_e2_m5.hsc │ │ │ │ │ │ ├── ff84_temple_e2_m5_audio.hsc │ │ │ │ │ │ ├── ff84_temple_e2m5_narrative.hsc │ │ │ │ │ │ ├── ff84_temple_e5_m1.hsc │ │ │ │ │ │ ├── ff84_temple_e5_m1_audio.hsc │ │ │ │ │ │ ├── ff84_temple_e5_m2.hsc │ │ │ │ │ │ ├── ff84_temple_e5_m2_audio.hsc │ │ │ │ │ │ └── ff84_temple_narrative.hsc │ │ │ │ ├── ff86_sniperalley │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff86_sniperalley.hsc │ │ │ │ │ │ ├── ff86_sniperalley_audio.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e1_m4.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e1_m4_audio.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e2_m4.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e2_m4_audio.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e4_m1.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e4_m1_audio.hsc │ │ │ │ │ │ ├── ff86_sniperalley_narrative.hsc │ │ │ │ │ │ └── ff86_sniperalley_vo.hsc │ │ │ │ ├── ff87_chopperbowl │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff87_chopperbowl.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_e1_m1_audio.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_e3_m1.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_e3_m1_audio.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_e5m5.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_e5m5_audio.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_narrative.hsc │ │ │ │ │ │ └── ff87_chopperbowl_vo.hsc │ │ │ │ ├── ff90_fortsw │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff90_e2m3_fortsw_narrative.hsc │ │ │ │ │ │ ├── ff90_fortsw.hsc │ │ │ │ │ │ ├── ff90_fortsw_e1m3.hsc │ │ │ │ │ │ ├── ff90_fortsw_e1m3_audio.hsc │ │ │ │ │ │ ├── ff90_fortsw_e2m3.hsc │ │ │ │ │ │ ├── ff90_fortsw_e2m3_audio.hsc │ │ │ │ │ │ ├── ff90_fortsw_e4m3.hsc │ │ │ │ │ │ ├── ff90_fortsw_e4m3_audio.hsc │ │ │ │ │ │ ├── ff90_fortsw_narrative.hsc │ │ │ │ │ │ └── ff90_fortsw_vo.hsc │ │ │ │ ├── ff91_complex │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff91_complex.hsc │ │ │ │ │ │ ├── ff91_complex_e3_m2.hsc │ │ │ │ │ │ ├── ff91_complex_e3_m2_audio.hsc │ │ │ │ │ │ ├── ff91_complex_e4_m5.hsc │ │ │ │ │ │ ├── ff91_complex_e4_m5_audio.hsc │ │ │ │ │ │ ├── ff91_complex_e4_m5_narrative.hsc │ │ │ │ │ │ ├── ff91_complex_narrative.hsc │ │ │ │ │ │ └── ff91_complex_vo.hsc │ │ │ │ └── ff92_valhalla │ │ │ │ │ ├── device_machines │ │ │ │ │ └── dm_valhalla_controlpanel02 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── door_scripts.hsc │ │ │ │ │ └── scripts │ │ │ │ │ ├── ff92_valhalla.hsc │ │ │ │ │ ├── ff92_valhalla_audio.hsc │ │ │ │ │ ├── ff92_valhalla_e3_m3.hsc │ │ │ │ │ ├── ff92_valhalla_e3_m3_audio.hsc │ │ │ │ │ ├── ff92_valhalla_e3_m4.hsc │ │ │ │ │ ├── ff92_valhalla_e3_m4_audio.hsc │ │ │ │ │ ├── ff92_valhalla_e4_m2.hsc │ │ │ │ │ ├── ff92_valhalla_e4_m2_audio.hsc │ │ │ │ │ ├── ff92_valhalla_narrative.hsc │ │ │ │ │ └── ff92_valhalla_vo.hsc │ │ │ ├── multi │ │ │ │ ├── ca_warhouse │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ca_warhouse_audio.hsc │ │ │ │ └── wraparound │ │ │ │ │ └── scripts │ │ │ │ │ └── wraparound_audio.hsc │ │ │ └── ui │ │ │ │ └── mainmenu │ │ │ │ └── scripts │ │ │ │ └── mainmenu.hsc │ │ └── objects │ │ │ ├── props │ │ │ ├── covenant │ │ │ │ ├── cov_squad_drop_pod │ │ │ │ │ └── scripts │ │ │ │ │ │ └── cov_squad_drop_pod.hsc │ │ │ │ └── drop_pod_elite │ │ │ │ │ └── scripts │ │ │ │ │ └── cov_squad_drop_pod.hsc │ │ │ ├── forerunner │ │ │ │ ├── knight_taint │ │ │ │ │ └── scripts │ │ │ │ │ │ └── knight_taint.hsc │ │ │ │ └── shard_spawn │ │ │ │ │ └── scripts │ │ │ │ │ └── shard_spawn.hsc │ │ │ └── human │ │ │ │ └── pioneer │ │ │ │ └── housewares │ │ │ │ └── ebook_reader │ │ │ │ ├── ebook_reader_narrative_drop_m40 │ │ │ │ └── scripts │ │ │ │ │ └── ebook_reader_narrative_drop_m40.hsc │ │ │ │ ├── ebook_reader_narrative_drop_m41 │ │ │ │ └── scripts │ │ │ │ │ └── ebook_reader_narrative_drop_m41.hsc │ │ │ │ └── ebook_reader_narrative_drop_m80 │ │ │ │ └── scripts │ │ │ │ └── ebook_reader_narrative_drop_m80.hsc │ │ │ └── vehicles │ │ │ ├── covenant │ │ │ ├── storm_drop_pod_medium_four_doors │ │ │ │ └── scripts │ │ │ │ │ └── storm_drop_pod_medium_four_doors.hsc │ │ │ ├── storm_drop_pod_small │ │ │ │ └── scripts │ │ │ │ │ └── storm_drop_pod_small.hsc │ │ │ └── storm_lich │ │ │ │ └── scripts │ │ │ │ └── storm_lich.hsc │ │ │ └── forerunner │ │ │ └── turrets │ │ │ └── storm_anti_infantry_turret │ │ │ └── scripts │ │ │ └── storm_anti_infantry_turret.hsc │ ├── debug_menu_init.txt │ └── hs_doc.txt ├── Pre-Release 20190.12.09.05.0200.main │ ├── README.md │ └── data │ │ └── globals │ │ └── scripts │ │ ├── global_abilities.hsc │ │ ├── global_ai.hsc │ │ ├── global_audio.hsc │ │ ├── global_camera.hsc │ │ ├── global_checkpoints.hsc │ │ ├── global_cinematic.hsc │ │ ├── global_cortana.hsc │ │ ├── global_devicemachines.hsc │ │ ├── global_dialog.hsc │ │ ├── global_lighting.hsc │ │ ├── global_logic.hsc │ │ ├── global_narrative.hsc │ │ ├── global_objects.hsc │ │ ├── global_physics.hsc │ │ ├── global_players.hsc │ │ ├── global_screenshake.hsc │ │ ├── global_scripts.hsc │ │ └── global_zoneset.hsc ├── Pre-Release 20703.12.09.16.0400.main │ ├── README.md │ └── data │ │ └── globals │ │ └── scripts │ │ ├── global_abilities.hsc │ │ ├── global_ai.hsc │ │ ├── global_audio.hsc │ │ ├── global_camera.hsc │ │ ├── global_checkpoints.hsc │ │ ├── global_cinematic.hsc │ │ ├── global_cortana.hsc │ │ ├── global_devicemachines.hsc │ │ ├── global_dialog.hsc │ │ ├── global_lighting.hsc │ │ ├── global_logic.hsc │ │ ├── global_narrative.hsc │ │ ├── global_objects.hsc │ │ ├── global_physics.hsc │ │ ├── global_players.hsc │ │ ├── global_screenshake.hsc │ │ ├── global_scripts.hsc │ │ └── global_zoneset.hsc ├── Pre-Release 20744.12.09.18.0100.main │ ├── README.md │ └── data │ │ └── globals │ │ └── scripts │ │ ├── global_abilities.hsc │ │ ├── global_ai.hsc │ │ ├── global_audio.hsc │ │ ├── global_camera.hsc │ │ ├── global_checkpoints.hsc │ │ ├── global_cinematic.hsc │ │ ├── global_cortana.hsc │ │ ├── global_devicemachines.hsc │ │ ├── global_dialog.hsc │ │ ├── global_lighting.hsc │ │ ├── global_logic.hsc │ │ ├── global_narrative.hsc │ │ ├── global_objects.hsc │ │ ├── global_physics.hsc │ │ ├── global_players.hsc │ │ ├── global_screenshake.hsc │ │ ├── global_scripts.hsc │ │ └── global_zoneset.hsc ├── Pre-Release Jul 17 2012 │ ├── README.md │ └── data │ │ ├── globals │ │ └── scripts │ │ │ ├── global_abilities.hsc │ │ │ ├── global_ai.hsc │ │ │ ├── global_audio.hsc │ │ │ ├── global_camera.hsc │ │ │ ├── global_checkpoints.hsc │ │ │ ├── global_cinematic.hsc │ │ │ ├── global_cortana.hsc │ │ │ ├── global_devicemachines.hsc │ │ │ ├── global_dialog.hsc │ │ │ ├── global_lighting.hsc │ │ │ ├── global_logic.hsc │ │ │ ├── global_narrative.hsc │ │ │ ├── global_objects.hsc │ │ │ ├── global_physics.hsc │ │ │ ├── global_players.hsc │ │ │ ├── global_screenshake.hsc │ │ │ └── global_scripts.hsc │ │ └── objects │ │ └── props │ │ └── forerunner │ │ └── knight_taint │ │ └── scripts │ │ └── knight_taint.hsc ├── Retail 20810.12.09.22.1647.main │ ├── README.md │ ├── data │ │ ├── environments │ │ │ └── solo │ │ │ │ ├── m020 │ │ │ │ ├── device_machines │ │ │ │ │ ├── m20_bridge_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_bridge_door.hsc │ │ │ │ │ ├── m20_bridge_elevator │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_bridge_elevator.hsc │ │ │ │ │ ├── m20_cat_hex │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_hex.hsc │ │ │ │ │ ├── m20_cat_int_door_main │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_int_door_main.hsc │ │ │ │ │ ├── m20_cat_int_reg │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_int_reg.hsc │ │ │ │ │ ├── m20_cat_int_sideways │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_int_sideways.hsc │ │ │ │ │ ├── m20_cat_int_tall │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_int_tall.hsc │ │ │ │ │ ├── m20_cat_mushroom │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_mushroom.hsc │ │ │ │ │ ├── m20_fr_to_courtyard_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_fr_to_courtyard_door.hsc │ │ │ │ │ ├── m20_term_column │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_term_column.hsc │ │ │ │ │ ├── m20_term_lift │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_term_lift.hsc │ │ │ │ │ └── m20_to_term_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m20_to_term_door.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── m020_mission.hsc │ │ │ │ │ ├── m020_mission_guardpost.hsc │ │ │ │ │ ├── m20_ambient.hsc │ │ │ │ │ ├── m20_audio.hsc │ │ │ │ │ ├── m20_dialogue.hsc │ │ │ │ │ ├── m20_fx.hsc │ │ │ │ │ ├── m20_insertion.hsc │ │ │ │ │ ├── m20_narrative.hsc │ │ │ │ │ └── m20_streaming.hsc │ │ │ │ ├── m05_prologue │ │ │ │ └── scripts │ │ │ │ │ └── m05_prologue.hsc │ │ │ │ ├── m10_crash │ │ │ │ ├── crates │ │ │ │ │ ├── cryo_tube_02 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── cryo_tube_02.hsc │ │ │ │ │ ├── m10_maintenance │ │ │ │ │ │ └── m10_maintenance_rail_crate │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_maintenance_rail_crate.hsc │ │ │ │ │ ├── m10_maintenance_hall │ │ │ │ │ │ └── m10_maintenance_hall_wall │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_maintenance_hall_wall.hsc │ │ │ │ │ ├── m10_obs_window_main │ │ │ │ │ │ └── m10_obs_window_main │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_obs_window_main.hsc │ │ │ │ │ ├── m10_obs_window_side │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_obs_window_side.hsc │ │ │ │ │ └── m10_podchase │ │ │ │ │ │ ├── m10_podchase_debris │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_podchase_debris.hsc │ │ │ │ │ │ └── m10_podchase_fusioncoil │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m10_podchase_fusioncoil.hsc │ │ │ │ ├── device_controls │ │ │ │ │ ├── m10_control_panel_switch │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_control_panel_switch.hsc │ │ │ │ │ ├── m10_elevator_control │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_elevator_control.hsc │ │ │ │ │ ├── m10_fud_halogram_switch │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_fud_halogram_switch.hsc │ │ │ │ │ ├── m10_plinth_control │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_plinth_control.hsc │ │ │ │ │ └── m10_star_map_control │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m10_star_map_control.hsc │ │ │ │ ├── device_machines │ │ │ │ │ ├── m10_beacon01 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_beacon01.hsc │ │ │ │ │ ├── m10_beacon02 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_beacon02.hsc │ │ │ │ │ ├── m10_beacon_debris_phantom_killer │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_beac_debris_kill.hsc │ │ │ │ │ ├── m10_beacon_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_beacon_door.hsc │ │ │ │ │ ├── m10_beacon_launcher │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_beacon_launcher.hsc │ │ │ │ │ ├── m10_breaking_hall_02 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_dm_breaking_hall_02.hsc │ │ │ │ │ ├── m10_broken │ │ │ │ │ │ ├── m10_broken_block01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_broken_block01.hsc │ │ │ │ │ │ ├── m10_broken_ceiling01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_dm_breaking_hall_01_ceiling.hsc │ │ │ │ │ │ ├── m10_broken_hall01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_dm_breaking_hall_01.hsc │ │ │ │ │ │ ├── m10_broken_room01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_broken_room01.hsc │ │ │ │ │ │ ├── m10_broken_room02 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_broken_room02.hsc │ │ │ │ │ │ ├── m10_broken_room03 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_broken_room03.hsc │ │ │ │ │ │ └── m10_broken_room04 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_broken_room04.hsc │ │ │ │ │ ├── m10_cryo_tube │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_cryo_tube.hsc │ │ │ │ │ ├── m10_debris_ambient │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_debris_ambient.hsc │ │ │ │ │ ├── m10_door_double_elevator │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_door_double_elevator.hsc │ │ │ │ │ ├── m10_doors │ │ │ │ │ │ └── m10_vehiclebay_hall_door │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_vehiclebay_hall_door.hsc │ │ │ │ │ ├── m10_fud_halogram │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_fud_halogram.hsc │ │ │ │ │ ├── m10_ics_elevator_door01 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_ics_elevator_door01.hsc │ │ │ │ │ ├── m10_magaccelerator01 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_magaccelerator01.hsc │ │ │ │ │ ├── m10_maintenance │ │ │ │ │ │ ├── m10_maintenance_ramp_far │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_maintenance_ramp_far.hsc │ │ │ │ │ │ ├── m10_maintenance_ramp_near │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_maintenance_ramp_near.hsc │ │ │ │ │ │ └── m10_maintenance_warthog_rack │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_maintenance_warthog_rack.hsc │ │ │ │ │ ├── m10_maintenance_hall │ │ │ │ │ │ ├── m10_maintenance_hall_block01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_maintenance_hall_block01.hsc │ │ │ │ │ │ └── m10_maintenance_hall_block02 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_maintenance_hall_block02.hsc │ │ │ │ │ ├── m10_observatory_covenant_fleet │ │ │ │ │ │ ├── m10_obs_fleet_background_ships │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_obs_fleet_background_ships.hsc │ │ │ │ │ │ ├── m10_obs_fleet_crash_ship │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_obs_fleet_crash_ship.hsc │ │ │ │ │ │ ├── m10_obs_fleet_debris │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_obs_fleet_debris.hsc │ │ │ │ │ │ └── m10_obs_fleet_drop_pod_cruiser │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_obs_fleet_drop_pod_cruiser.hsc │ │ │ │ │ ├── m10_observatory_covenant_fleet_cheap │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_obs_fleet_crash_ship_cheap.hsc │ │ │ │ │ ├── m10_observatory_windows │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_observatory_windows.hsc │ │ │ │ │ ├── m10_phantom_lander_03 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_obs_phantom_lander_03.hsc │ │ │ │ │ ├── m10_podchase │ │ │ │ │ │ └── events │ │ │ │ │ │ │ └── 02 │ │ │ │ │ │ │ ├── m10_podchase_event02_obstacle │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_podchase_event02_obstacle.hsc │ │ │ │ │ │ │ ├── m10_podchase_event02_platform_a01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_podchase_e02_platform_a01.hsc │ │ │ │ │ │ │ ├── m10_podchase_event02_platform_b01 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_podchase_e02_platform_b01.hsc │ │ │ │ │ │ │ ├── m10_podchase_event02_platform_b02 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_podchase_e02_platform_b02.hsc │ │ │ │ │ │ │ ├── m10_podchase_event02_platform_c02 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── m10_podchase_e02_platform_c02.hsc │ │ │ │ │ │ │ └── m10_podchase_event02_platform_c03 │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_podchase_e02_platform_c03.hsc │ │ │ │ │ ├── m10_temp_phantom_tube │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_temp_phantom_tube.hsc │ │ │ │ │ ├── m10_unsc_door_main_airlock │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_unsc_door_main_airlock.hsc │ │ │ │ │ ├── m10_unsc_door_main_large_fud │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_unsc_door_main_large_fud.hsc │ │ │ │ │ ├── m10_unsc_door_main_small_fud │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_unsc_door_main_small_fud.hsc │ │ │ │ │ ├── m10_weaponrack_floor01 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_weaponrack_floor01.hsc │ │ │ │ │ ├── m10_weaponrack_wall01_single_horiz │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_weprack_wall01_single_horiz.hsc │ │ │ │ │ ├── m10_weaponrack_wall01_single_vert │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_weprack_wall01_single_vert.hsc │ │ │ │ │ ├── m10_weaponrack_wall01_small │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m10_weaponrack_wall01_small.hsc │ │ │ │ │ └── m10_weaponrack_wall01_wide │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m10_weaponrack_wall01_wide.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── fx_00_cryo_room.hsc │ │ │ │ │ ├── fx_08_elevator.hsc │ │ │ │ │ ├── fx_12_observatory.hsc │ │ │ │ │ ├── fx_30_beacons.hsc │ │ │ │ │ ├── fx_30_beacons_02.hsc │ │ │ │ │ ├── m10_beacon.hsc │ │ │ │ │ ├── m10_cortana_plinth.hsc │ │ │ │ │ ├── m10_crash_audio.hsc │ │ │ │ │ ├── m10_crash_dialog.hsc │ │ │ │ │ ├── m10_crash_droppod_ics.hsc │ │ │ │ │ ├── m10_crash_elevator_ics.hsc │ │ │ │ │ ├── m10_crash_end.hsc │ │ │ │ │ ├── m10_crash_fx.hsc │ │ │ │ │ ├── m10_crash_fx_je.hsc │ │ │ │ │ ├── m10_crash_fx_jvz.hsc │ │ │ │ │ ├── m10_crash_gameplay.hsc │ │ │ │ │ ├── m10_crash_insertion.hsc │ │ │ │ │ ├── m10_crash_mission.hsc │ │ │ │ │ ├── m10_cryo.hsc │ │ │ │ │ ├── m10_end_airlock.hsc │ │ │ │ │ ├── m10_end_brokenfloor.hsc │ │ │ │ │ ├── m10_end_brokenfloor_ai.hsc │ │ │ │ │ ├── m10_end_brokenfloor_destruction.hsc │ │ │ │ │ ├── m10_end_brokenfloor_entry.hsc │ │ │ │ │ ├── m10_end_brokenfloor_hall.hsc │ │ │ │ │ ├── m10_end_maintenance.hsc │ │ │ │ │ ├── m10_end_maintenance_ai.hsc │ │ │ │ │ ├── m10_end_maintenance_destruction.hsc │ │ │ │ │ ├── m10_end_maintenance_hall.hsc │ │ │ │ │ ├── m10_end_maintenance_hall_ai.hsc │ │ │ │ │ ├── m10_flank.hsc │ │ │ │ │ ├── m10_flank_ai.hsc │ │ │ │ │ ├── m10_lab.hsc │ │ │ │ │ ├── m10_narrative.hsc │ │ │ │ │ ├── m10_objectives.hsc │ │ │ │ │ ├── m10_observatory.hsc │ │ │ │ │ ├── m10_observatory_covenant_fleet.hsc │ │ │ │ │ ├── m10_observatory_phantom_lander.hsc │ │ │ │ │ └── m10_spacesuck_fx.hsc │ │ │ │ ├── m30_cryptum │ │ │ │ ├── device_machines │ │ │ │ │ ├── donut_large_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── donut_large_door.hsc │ │ │ │ │ ├── escape_collapse_1 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── escape_collapse_1.hsc │ │ │ │ │ ├── escape_collapse_2 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── escape_collapse_2.hsc │ │ │ │ │ ├── escape_collapse_3 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── escape_collapse_3.hsc │ │ │ │ │ ├── escape_collapse_4 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── escape_collapse_4.hsc │ │ │ │ │ ├── escape_collapse_5 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── escape_collapse_5.hsc │ │ │ │ │ ├── escape_collapse_7 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── escape_collapse_7.hsc │ │ │ │ │ ├── escape_collapse_8 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── escape_collapse_8.hsc │ │ │ │ │ ├── forerunner_bishop_tower │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── forerunner_bishop_tower.hsc │ │ │ │ │ ├── forerunner_forts_powercore_01 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── forerunner_forts_powercore_01.hsc │ │ │ │ │ ├── forerunner_forts_powercore_02 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── forerunner_forts_powercore_02.hsc │ │ │ │ │ ├── forerunner_large_tunnel_door_in │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── forerunner_large_tunnel_door_in.hsc │ │ │ │ │ ├── forerunner_pylon_elevator_pad_01 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── forerunner_elevator_01.hsc │ │ │ │ │ ├── forerunner_small_tunnel_door_in │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── forerunner_small_tunnel_door_in.hsc │ │ │ │ │ ├── m30_donut_elevator │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m30_donut_elevator.hsc │ │ │ │ │ ├── m30_donut_grinder │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m30_donut_grinder.hsc │ │ │ │ │ ├── observation_portal_01 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── observation_portal_01.hsc │ │ │ │ │ ├── observation_portal_02 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── observation_portal_02.hsc │ │ │ │ │ ├── observation_portal_03 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── observation_portal_03.hsc │ │ │ │ │ ├── plyon_curved_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── pylon_curved_door.hsc │ │ │ │ │ ├── pylon_beam_shaft │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── pylon_beam_shaft.hsc │ │ │ │ │ ├── pylon_power_core_eye │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── pylon_power_core_eye.hsc │ │ │ │ │ └── pylon_teleporter │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── pylon_teleporter.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── m30_cryptum_audio.hsc │ │ │ │ │ ├── m30_cryptum_donut.hsc │ │ │ │ │ ├── m30_cryptum_escape.hsc │ │ │ │ │ ├── m30_cryptum_exterior_1.hsc │ │ │ │ │ ├── m30_cryptum_exterior_2.hsc │ │ │ │ │ ├── m30_cryptum_forerunners.hsc │ │ │ │ │ ├── m30_cryptum_forts_1.hsc │ │ │ │ │ ├── m30_cryptum_forts_2.hsc │ │ │ │ │ ├── m30_cryptum_fx.hsc │ │ │ │ │ ├── m30_cryptum_insertion.hsc │ │ │ │ │ ├── m30_cryptum_mission.hsc │ │ │ │ │ ├── m30_dialogue.hsc │ │ │ │ │ ├── m30_narrative.hsc │ │ │ │ │ └── m30_streaming.hsc │ │ │ │ ├── m40_invasion │ │ │ │ ├── device_machine │ │ │ │ │ ├── desert_weapon_rack │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── desert_weapon_rack.hsc │ │ │ │ │ ├── fore_door_large │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── fore_door_large.hsc │ │ │ │ │ └── fore_door_small │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fore_door_small.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── m40_dialog.hsc │ │ │ │ │ ├── m40_invasion_audio.hsc │ │ │ │ │ ├── m40_invasion_citadel.hsc │ │ │ │ │ ├── m40_invasion_citadel_ext.hsc │ │ │ │ │ ├── m40_invasion_citadel_int.hsc │ │ │ │ │ ├── m40_invasion_epic.hsc │ │ │ │ │ ├── m40_invasion_fodder.hsc │ │ │ │ │ ├── m40_invasion_fx.hsc │ │ │ │ │ ├── m40_invasion_infinity.hsc │ │ │ │ │ ├── m40_invasion_insertion.hsc │ │ │ │ │ ├── m40_invasion_jackal.hsc │ │ │ │ │ ├── m40_invasion_library.hsc │ │ │ │ │ ├── m40_invasion_mission.hsc │ │ │ │ │ ├── m40_invasion_powercave.hsc │ │ │ │ │ ├── m40_invasion_prechopper.hsc │ │ │ │ │ ├── m40_invasion_target_designator.hsc │ │ │ │ │ └── m40_narrative.hsc │ │ │ │ ├── m60_rescue │ │ │ │ ├── device_machine │ │ │ │ │ ├── infinity_airlock_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── infinity_airlock_door.hsc │ │ │ │ │ ├── infinity_elevator │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── infinity_elevator.hsc │ │ │ │ │ ├── infinity_elevator_door_hallway │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── infinity_elevator_door_hallway.hsc │ │ │ │ │ ├── infinity_rock_fall │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── infinity_rock_fall.hsc │ │ │ │ │ └── infinity_tank_lift │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── infinity_tank_lift.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── m60_dialog.hsc │ │ │ │ │ ├── m60_e4all.hsc │ │ │ │ │ ├── m60_narrative.hsc │ │ │ │ │ ├── m60_rescue_audio.hsc │ │ │ │ │ ├── m60_rescue_fx.hsc │ │ │ │ │ ├── m60_rescue_insertion.hsc │ │ │ │ │ ├── m60_rescue_marsh.hsc │ │ │ │ │ ├── m60_rescue_mission.hsc │ │ │ │ │ ├── m60_rescue_mission_ch.hsc │ │ │ │ │ ├── m60_rescue_mission_tt.hsc │ │ │ │ │ └── m60_streaming.hsc │ │ │ │ ├── m70_liftoff │ │ │ │ ├── device_machines │ │ │ │ │ ├── fr_bridge001 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m70_fr_bridge001.hsc │ │ │ │ │ ├── fr_bridge002 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m70_fr_bridge002.hsc │ │ │ │ │ ├── fr_bridgecenter │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m70_fr_bridgecenter.hsc │ │ │ │ │ ├── fr_bridgestart │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m70_fr_bridge_start.hsc │ │ │ │ │ ├── m70_interior_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m70_interior_door.hsc │ │ │ │ │ ├── m70_spire01_gondola │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m70_spire01_gondola.hsc │ │ │ │ │ ├── m70_spire01_tower_bridge │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m70_spire01_tower_bridge.hsc │ │ │ │ │ ├── m70_spire01_tower_shield │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m70_spire01_tower_shield.hsc │ │ │ │ │ └── m70_spire2_core003 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m70_spire2_core003.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── m70_audio.hsc │ │ │ │ │ ├── m70_dialog.hsc │ │ │ │ │ ├── m70_didact.hsc │ │ │ │ │ ├── m70_flight.hsc │ │ │ │ │ ├── m70_flight_ai.hsc │ │ │ │ │ ├── m70_flight_audio.hsc │ │ │ │ │ ├── m70_flight_fx.hsc │ │ │ │ │ ├── m70_infinity.hsc │ │ │ │ │ ├── m70_infinity_ai.hsc │ │ │ │ │ ├── m70_infinity_audio.hsc │ │ │ │ │ ├── m70_infinity_fx.hsc │ │ │ │ │ ├── m70_insertion.hsc │ │ │ │ │ ├── m70_lich.hsc │ │ │ │ │ ├── m70_mission.hsc │ │ │ │ │ ├── m70_narrative.hsc │ │ │ │ │ ├── m70_objectives.hsc │ │ │ │ │ ├── m70_spire.hsc │ │ │ │ │ ├── m70_spire_01.hsc │ │ │ │ │ ├── m70_spire_01_ai.hsc │ │ │ │ │ ├── m70_spire_01_audio.hsc │ │ │ │ │ ├── m70_spire_01_fx.hsc │ │ │ │ │ ├── m70_spire_02.hsc │ │ │ │ │ ├── m70_spire_02_ai.hsc │ │ │ │ │ ├── m70_spire_02_audio.hsc │ │ │ │ │ ├── m70_spire_02_fx.hsc │ │ │ │ │ ├── m70_spire_03.hsc │ │ │ │ │ ├── m70_spire_03_ai.hsc │ │ │ │ │ ├── m70_spire_03_audio.hsc │ │ │ │ │ └── m70_spire_03_fx.hsc │ │ │ │ ├── m80_delta │ │ │ │ ├── device_machines │ │ │ │ │ ├── m80_airlock_door_02 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m80_airlock_door_02.hsc │ │ │ │ │ ├── m80_arch_door_01b │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m80_arch_door_01b.hsc │ │ │ │ │ ├── m80_large_door_01b │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m80_large_door_01b.hsc │ │ │ │ │ ├── m80_medium_door_01b │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m80_medium_door_01b.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m80_airlock_door_01b.hsc │ │ │ │ ├── scenery │ │ │ │ │ └── m80_location_marker │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m80_location_marker.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── m80_airlocks.hsc │ │ │ │ │ ├── m80_airlocks_one.hsc │ │ │ │ │ ├── m80_airlocks_one_ai.hsc │ │ │ │ │ ├── m80_airlocks_two.hsc │ │ │ │ │ ├── m80_airlocks_two_ai.hsc │ │ │ │ │ ├── m80_atrium.hsc │ │ │ │ │ ├── m80_atrium_ai.hsc │ │ │ │ │ ├── m80_atrium_audio.hsc │ │ │ │ │ ├── m80_atrium_fx.hsc │ │ │ │ │ ├── m80_atrium_narrative.hsc │ │ │ │ │ ├── m80_atrium_return.hsc │ │ │ │ │ ├── m80_atrium_return_lookout.hsc │ │ │ │ │ ├── m80_audio.hsc │ │ │ │ │ ├── m80_crash.hsc │ │ │ │ │ ├── m80_crash_audio.hsc │ │ │ │ │ ├── m80_crash_fx.hsc │ │ │ │ │ ├── m80_crash_narrative.hsc │ │ │ │ │ ├── m80_dialog.hsc │ │ │ │ │ ├── m80_elevator.hsc │ │ │ │ │ ├── m80_fx.hsc │ │ │ │ │ ├── m80_guns.hsc │ │ │ │ │ ├── m80_guns_ai.hsc │ │ │ │ │ ├── m80_guns_hallways.hsc │ │ │ │ │ ├── m80_guns_hallways_ai.hsc │ │ │ │ │ ├── m80_guns_hallways_narrative.hsc │ │ │ │ │ ├── m80_hallways.hsc │ │ │ │ │ ├── m80_hallways_ai.hsc │ │ │ │ │ ├── m80_hallways_one.hsc │ │ │ │ │ ├── m80_hallways_one_ai.hsc │ │ │ │ │ ├── m80_hallways_one_narrative.hsc │ │ │ │ │ ├── m80_hallways_two.hsc │ │ │ │ │ ├── m80_hallways_two_ai.hsc │ │ │ │ │ ├── m80_horseshoe.hsc │ │ │ │ │ ├── m80_horseshoe_ai.hsc │ │ │ │ │ ├── m80_horseshoe_audio.hsc │ │ │ │ │ ├── m80_horseshoe_fx.hsc │ │ │ │ │ ├── m80_horseshoe_narrative.hsc │ │ │ │ │ ├── m80_insertion.hsc │ │ │ │ │ ├── m80_lab.hsc │ │ │ │ │ ├── m80_lab_ai.hsc │ │ │ │ │ ├── m80_lab_audio.hsc │ │ │ │ │ ├── m80_lab_fx.hsc │ │ │ │ │ ├── m80_lab_narrative.hsc │ │ │ │ │ ├── m80_mission.hsc │ │ │ │ │ ├── m80_mission_shakes.hsc │ │ │ │ │ ├── m80_mission_shakes_fx.hsc │ │ │ │ │ ├── m80_narrative.hsc │ │ │ │ │ └── m80_objectives.hsc │ │ │ │ ├── m90_sacrifice │ │ │ │ ├── crates │ │ │ │ │ └── m90_trench_power_tower │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m90_trench_power_tower.hsc │ │ │ │ ├── device_machines │ │ │ │ │ ├── dm_ambient_pillars_eye │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_trench_ambient_pillars.hsc │ │ │ │ │ ├── dm_m90_power_tower │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m90_power_tower.hsc │ │ │ │ │ ├── dm_teleporttrain_001 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_teleporttrain_001.hsc │ │ │ │ │ ├── dm_teleporttrain_002 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_teleporttrain_002.hsc │ │ │ │ │ ├── dm_teleporttrain_003 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_teleporttrain_003.hsc │ │ │ │ │ ├── dm_teleporttrain_004 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_teleporttrain_004.hsc │ │ │ │ │ ├── dm_teleporttrain_005 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_teleporttrain_005.hsc │ │ │ │ │ ├── dm_teleporttrain_006 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_teleporttrain_006.hsc │ │ │ │ │ ├── dm_teleporttrain_007 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_teleporttrain_007.hsc │ │ │ │ │ ├── dm_teleporttrain_008 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_teleporttrain_008.hsc │ │ │ │ │ ├── dm_trench_prober │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_trench_prober.hsc │ │ │ │ │ ├── dm_trench_prober_b │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_trench_prober_b.hsc │ │ │ │ │ ├── dm_trench_prober_c │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_trench_prober_c.hsc │ │ │ │ │ ├── dm_trench_prober_d │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── dm_trench_prober_d.hsc │ │ │ │ │ └── m90_interior_train_med │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m90_interior_train_med.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── m90_arcade.hsc │ │ │ │ │ ├── m90_coldant.hsc │ │ │ │ │ ├── m90_dialogue.hsc │ │ │ │ │ ├── m90_jump.hsc │ │ │ │ │ ├── m90_narrative.hsc │ │ │ │ │ ├── m90_sacrifice_audio.hsc │ │ │ │ │ ├── m90_sacrifice_flight_eye.hsc │ │ │ │ │ ├── m90_sacrifice_fx.hsc │ │ │ │ │ ├── m90_sacrifice_insertion.hsc │ │ │ │ │ ├── m90_sacrifice_mission.hsc │ │ │ │ │ ├── m90_sacrifice_mission_flight.hsc │ │ │ │ │ ├── m90_streaming.hsc │ │ │ │ │ ├── m90_teleport.hsc │ │ │ │ │ └── m90_walls.hsc │ │ │ │ └── m95_epilogue │ │ │ │ └── scripts │ │ │ │ └── m95_epilogue.hsc │ │ ├── globals │ │ │ ├── firefight_script.hsc │ │ │ ├── global_door.hsc │ │ │ ├── global_extras.hsc │ │ │ ├── global_firefight_vo_script.hsc │ │ │ ├── global_insertion.hsc │ │ │ ├── global_objectives.hsc │ │ │ ├── global_phantom.hsc │ │ │ ├── global_spops_dialog.hsc │ │ │ └── scripts │ │ │ │ ├── global_abilities.hsc │ │ │ │ ├── global_ai.hsc │ │ │ │ ├── global_audio.hsc │ │ │ │ ├── global_camera.hsc │ │ │ │ ├── global_checkpoints.hsc │ │ │ │ ├── global_cinematic.hsc │ │ │ │ ├── global_cortana.hsc │ │ │ │ ├── global_devicemachines.hsc │ │ │ │ ├── global_dialog.hsc │ │ │ │ ├── global_lighting.hsc │ │ │ │ ├── global_logic.hsc │ │ │ │ ├── global_narrative.hsc │ │ │ │ ├── global_objects.hsc │ │ │ │ ├── global_physics.hsc │ │ │ │ ├── global_players.hsc │ │ │ │ ├── global_screenshake.hsc │ │ │ │ ├── global_scripts.hsc │ │ │ │ └── global_zoneset.hsc │ │ ├── levels │ │ │ ├── firefight │ │ │ │ ├── ff81_courtyard │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff81_courtyard.hsc │ │ │ │ │ │ ├── ff81_courtyard_e2_m1.hsc │ │ │ │ │ │ ├── ff81_courtyard_e2_m1_audio.hsc │ │ │ │ │ │ ├── ff81_courtyard_e3_m5.hsc │ │ │ │ │ │ ├── ff81_courtyard_e3_m5_audio.hsc │ │ │ │ │ │ ├── ff81_courtyard_e5_m1.hsc │ │ │ │ │ │ ├── ff81_courtyard_e5_m1_audio.hsc │ │ │ │ │ │ └── ff81_courtyard_narrative.hsc │ │ │ │ ├── ff82_scurve │ │ │ │ │ ├── device_machines │ │ │ │ │ │ ├── dm_scurve_bridgepanel │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ │ └── door_scripts.hsc │ │ │ │ │ │ └── dm_scurve_controlpanel │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── door_scripts.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff82_scurve.hsc │ │ │ │ │ │ ├── ff82_scurve_e1_m5.hsc │ │ │ │ │ │ ├── ff82_scurve_e1_m5_audio.hsc │ │ │ │ │ │ ├── ff82_scurve_e2_m2.hsc │ │ │ │ │ │ ├── ff82_scurve_e2_m2_audio.hsc │ │ │ │ │ │ ├── ff82_scurve_e4_m4.hsc │ │ │ │ │ │ ├── ff82_scurve_e4_m4_audio.hsc │ │ │ │ │ │ ├── ff82_scurve_e5_m4.hsc │ │ │ │ │ │ ├── ff82_scurve_e5_m4_audio.hsc │ │ │ │ │ │ ├── ff82_scurve_narrative.hsc │ │ │ │ │ │ └── ff82_scurve_vo.hsc │ │ │ │ ├── ff84_temple │ │ │ │ │ ├── device_machines │ │ │ │ │ │ └── dm_temple_controlpanel │ │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── door_scripts.hsc │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff84_temple.hsc │ │ │ │ │ │ ├── ff84_temple_e1_m2_audio.hsc │ │ │ │ │ │ ├── ff84_temple_e1_m4.hsc │ │ │ │ │ │ ├── ff84_temple_e2_m5.hsc │ │ │ │ │ │ ├── ff84_temple_e2_m5_audio.hsc │ │ │ │ │ │ ├── ff84_temple_e2m5_narrative.hsc │ │ │ │ │ │ ├── ff84_temple_e5_m1.hsc │ │ │ │ │ │ ├── ff84_temple_e5_m1_audio.hsc │ │ │ │ │ │ ├── ff84_temple_e5_m2.hsc │ │ │ │ │ │ ├── ff84_temple_e5_m2_audio.hsc │ │ │ │ │ │ └── ff84_temple_narrative.hsc │ │ │ │ ├── ff86_sniperalley │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff86_sniperalley.hsc │ │ │ │ │ │ ├── ff86_sniperalley_audio.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e1_m4.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e1_m4_audio.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e2_m4.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e2_m4_audio.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e4_m1.hsc │ │ │ │ │ │ ├── ff86_sniperalley_e4_m1_audio.hsc │ │ │ │ │ │ ├── ff86_sniperalley_narrative.hsc │ │ │ │ │ │ └── ff86_sniperalley_vo.hsc │ │ │ │ ├── ff87_chopperbowl │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff87_chopperbowl.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_e1_m1_audio.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_e3_m1.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_e3_m1_audio.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_e5m5.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_e5m5_audio.hsc │ │ │ │ │ │ ├── ff87_chopperbowl_narrative.hsc │ │ │ │ │ │ └── ff87_chopperbowl_vo.hsc │ │ │ │ ├── ff90_fortsw │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff90_e2m3_fortsw_narrative.hsc │ │ │ │ │ │ ├── ff90_fortsw.hsc │ │ │ │ │ │ ├── ff90_fortsw_e1m3.hsc │ │ │ │ │ │ ├── ff90_fortsw_e1m3_audio.hsc │ │ │ │ │ │ ├── ff90_fortsw_e2m3.hsc │ │ │ │ │ │ ├── ff90_fortsw_e2m3_audio.hsc │ │ │ │ │ │ ├── ff90_fortsw_e4m3.hsc │ │ │ │ │ │ ├── ff90_fortsw_e4m3_audio.hsc │ │ │ │ │ │ ├── ff90_fortsw_narrative.hsc │ │ │ │ │ │ └── ff90_fortsw_vo.hsc │ │ │ │ ├── ff91_complex │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── ff91_complex.hsc │ │ │ │ │ │ ├── ff91_complex_e3_m2.hsc │ │ │ │ │ │ ├── ff91_complex_e3_m2_audio.hsc │ │ │ │ │ │ ├── ff91_complex_e4_m5.hsc │ │ │ │ │ │ ├── ff91_complex_e4_m5_audio.hsc │ │ │ │ │ │ ├── ff91_complex_e4_m5_narrative.hsc │ │ │ │ │ │ ├── ff91_complex_narrative.hsc │ │ │ │ │ │ └── ff91_complex_vo.hsc │ │ │ │ └── ff92_valhalla │ │ │ │ │ ├── device_machines │ │ │ │ │ └── dm_valhalla_controlpanel02 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── door_scripts.hsc │ │ │ │ │ └── scripts │ │ │ │ │ ├── ff92_valhalla.hsc │ │ │ │ │ ├── ff92_valhalla_audio.hsc │ │ │ │ │ ├── ff92_valhalla_e3_m3.hsc │ │ │ │ │ ├── ff92_valhalla_e3_m3_audio.hsc │ │ │ │ │ ├── ff92_valhalla_e3_m4.hsc │ │ │ │ │ ├── ff92_valhalla_e3_m4_audio.hsc │ │ │ │ │ ├── ff92_valhalla_e4_m2.hsc │ │ │ │ │ ├── ff92_valhalla_e4_m2_audio.hsc │ │ │ │ │ ├── ff92_valhalla_narrative.hsc │ │ │ │ │ └── ff92_valhalla_vo.hsc │ │ │ ├── multi │ │ │ │ ├── ca_warhouse │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ca_warhouse_audio.hsc │ │ │ │ └── wraparound │ │ │ │ │ └── scripts │ │ │ │ │ └── wraparound_audio.hsc │ │ │ └── ui │ │ │ │ └── mainmenu │ │ │ │ └── scripts │ │ │ │ └── mainmenu.hsc │ │ └── objects │ │ │ ├── props │ │ │ ├── covenant │ │ │ │ ├── cov_squad_drop_pod │ │ │ │ │ └── scripts │ │ │ │ │ │ └── cov_squad_drop_pod.hsc │ │ │ │ └── drop_pod_elite │ │ │ │ │ └── scripts │ │ │ │ │ └── cov_squad_drop_pod.hsc │ │ │ ├── forerunner │ │ │ │ ├── knight_taint │ │ │ │ │ └── scripts │ │ │ │ │ │ └── knight_taint.hsc │ │ │ │ └── shard_spawn │ │ │ │ │ └── scripts │ │ │ │ │ └── shard_spawn.hsc │ │ │ └── human │ │ │ │ └── pioneer │ │ │ │ └── housewares │ │ │ │ └── ebook_reader │ │ │ │ ├── ebook_reader_narrative_drop_m40 │ │ │ │ └── scripts │ │ │ │ │ └── ebook_reader_narrative_drop_m40.hsc │ │ │ │ ├── ebook_reader_narrative_drop_m41 │ │ │ │ └── scripts │ │ │ │ │ └── ebook_reader_narrative_drop_m41.hsc │ │ │ │ └── ebook_reader_narrative_drop_m80 │ │ │ │ └── scripts │ │ │ │ └── ebook_reader_narrative_drop_m80.hsc │ │ │ └── vehicles │ │ │ ├── covenant │ │ │ ├── storm_drop_pod_medium_four_doors │ │ │ │ └── scripts │ │ │ │ │ └── storm_drop_pod_medium_four_doors.hsc │ │ │ ├── storm_drop_pod_small │ │ │ │ └── scripts │ │ │ │ │ └── storm_drop_pod_small.hsc │ │ │ └── storm_lich │ │ │ │ └── scripts │ │ │ │ └── storm_lich.hsc │ │ │ └── forerunner │ │ │ └── turrets │ │ │ └── storm_anti_infantry_turret │ │ │ └── scripts │ │ │ └── storm_anti_infantry_turret.hsc │ └── title storage │ │ ├── 00100 │ │ ├── game_set_021.bin │ │ ├── h4_infinityslayer_4v4_132.bin │ │ ├── h4_slay_leg_br_132.bin │ │ ├── h4_slayer_pg_4v4_132.bin │ │ ├── h4_slayer_team_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── abandon_leg_br_050.bin │ │ │ ├── abandon_ts_050.bin │ │ │ ├── adrift_ts_050.bin │ │ │ ├── deadlycrossing_050.bin │ │ │ ├── dispatch_ts_050.bin │ │ │ ├── dispatchctf_050.bin │ │ │ ├── forge_hitchhiker_050.bin │ │ │ ├── forge_panic_attack_050.bin │ │ │ ├── forge_rubble_050.bin │ │ │ ├── forge_scythe_050.bin │ │ │ ├── forge_select_050.bin │ │ │ ├── forge_wildfire_050.bin │ │ │ ├── harvest_050.bin │ │ │ ├── haven_leg_br_050.bin │ │ │ ├── haven_ts_050.bin │ │ │ ├── island_opticon_050.bin │ │ │ ├── onyx_lgnd_050.bin │ │ │ ├── opus_ts_050.bin │ │ │ ├── pg_abandon_050.bin │ │ │ ├── pg_haven_050.bin │ │ │ ├── pg_onyx_050.bin │ │ │ ├── pg_orion_050.bin │ │ │ ├── pg_pitfall_050.bin │ │ │ ├── pg_shutout_050.bin │ │ │ ├── pg_simplex_050.bin │ │ │ ├── pg_skyline_050.bin │ │ │ ├── pg_vertigo_050.bin │ │ │ ├── pitfall_050.bin │ │ │ ├── port_050.bin │ │ │ ├── rattler_050.bin │ │ │ ├── ravine_epicenter_050.bin │ │ │ ├── ravine_opus_050.bin │ │ │ ├── ravine_republic_050.bin │ │ │ ├── ravine_shutout_050.bin │ │ │ ├── ravine_simplexctf_050.bin │ │ │ ├── ravine_wanderluster_050.bin │ │ │ ├── refresh_blood_cavern_050.bin │ │ │ ├── refresh_haven_050.bin │ │ │ ├── refresh_tower_050.bin │ │ │ ├── refresh_warhouse_050.bin │ │ │ ├── scythe_ts_050.bin │ │ │ ├── shutout_leg_br_050.bin │ │ │ ├── shutout_ts_050.bin │ │ │ ├── simplexctf_ts_050.bin │ │ │ ├── skyline_leg_br_050.bin │ │ │ ├── solace_ts_050.bin │ │ │ ├── spiderweb_050.bin │ │ │ └── vertigo_050.bin │ │ ├── 00101 │ │ ├── game_set_021.bin │ │ ├── h4_ctf_8v8_15s_132.bin │ │ ├── h4_ctf_8v8_3_35s_132.bin │ │ ├── h4_ctf_neutral_5_132.bin │ │ ├── h4_infinityslayer_8v8_132.bin │ │ ├── h4_koth_8v8_132.bin │ │ ├── h4_regicide_8v8_132.bin │ │ ├── h4_slayer_pro_8v8_132.bin │ │ ├── h4_snipers_8v8_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── excavation_050.bin │ │ │ ├── exile_neutral_ctf_050.bin │ │ │ ├── longbow_neutral_ctf_050.bin │ │ │ ├── panic_station_050.bin │ │ │ ├── ravine_settler_050.bin │ │ │ ├── refresh_blood_crashbtb_050.bin │ │ │ ├── refresh_canyonbtb_050.bin │ │ │ ├── refresh_cliffside_050.bin │ │ │ ├── refresh_gore_valleybtb_050.bin │ │ │ ├── refresh_gore_valleyctf_050.bin │ │ │ ├── refresh_redoubtbtb_050.bin │ │ │ ├── refresh_valhallabtb_050.bin │ │ │ ├── refresh_valhallactf_050.bin │ │ │ ├── shatter_050.bin │ │ │ ├── valhalla_neutral_ctf_050.bin │ │ │ └── wreckage_050.bin │ │ ├── 00104 │ │ ├── game_set_021.bin │ │ ├── h4_flood_10_132.bin │ │ ├── h4_flood_10_hivemind_132.bin │ │ ├── h4_flood_10_ls_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── erosion_black_site_050.bin │ │ │ ├── erosion_procedure_050.bin │ │ │ ├── erosion_repository_050.bin │ │ │ ├── erosion_substance_050.bin │ │ │ ├── erosion_temple_050.bin │ │ │ ├── highrise_050.bin │ │ │ ├── impact_constellation_050.bin │ │ │ ├── impact_the_4th_kind_050.bin │ │ │ ├── island_drillsite_050.bin │ │ │ ├── island_morgan_bay_050.bin │ │ │ ├── island_payload_050.bin │ │ │ ├── island_plaza_050.bin │ │ │ ├── island_prora_050.bin │ │ │ ├── island_repression_050.bin │ │ │ ├── island_villa_del_pena_050.bin │ │ │ ├── port_050.bin │ │ │ ├── ravine_malice_050.bin │ │ │ ├── ravine_serenity_050.bin │ │ │ ├── ravine_until_now_050.bin │ │ │ ├── refresh_blood_cavern_050.bin │ │ │ ├── refresh_cliffside_050.bin │ │ │ ├── refresh_tower_050.bin │ │ │ ├── refresh_warhouse_050.bin │ │ │ ├── spiderweb_050.bin │ │ │ └── wraparound_050.bin │ │ ├── 00105 │ │ ├── game_set_021.bin │ │ ├── h4_ctf_5v5_15s_132.bin │ │ ├── h4_ctf_5v5_35s_132.bin │ │ ├── h4_ctf_5v5_3_35s_132.bin │ │ ├── h4_ctf_legendary_132.bin │ │ ├── h4_ctf_neutral_5_132.bin │ │ ├── h4_infinity_ctf_5v5_15s_132.bin │ │ ├── h4_infinity_ctf_5v5_35s_132.bin │ │ ├── h4_infinity_ctf_5v5_3_35s_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── basin_050.bin │ │ │ ├── deadlycrossing_050.bin │ │ │ ├── dispatchctf_050.bin │ │ │ ├── exile_neutral_ctf_050.bin │ │ │ ├── harvest_050.bin │ │ │ ├── highrise_050.bin │ │ │ ├── monolith_neutral_ctf_050.bin │ │ │ ├── pitfall_050.bin │ │ │ ├── pitfall_neutral_ctf_050.bin │ │ │ ├── pitfall_ordagain_050.bin │ │ │ ├── rattler_050.bin │ │ │ ├── ravine_settler_ctf_050.bin │ │ │ ├── ravine_simplexctf_050.bin │ │ │ ├── refresh_blood_crashctf_050.bin │ │ │ ├── refresh_cliffside_050.bin │ │ │ ├── refresh_portctf_050.bin │ │ │ ├── refresh_tower_050.bin │ │ │ ├── refresh_valhallactf_050.bin │ │ │ ├── refresh_warhouse_050.bin │ │ │ ├── skyline_neutral_ctf_050.bin │ │ │ ├── spiderweb_050.bin │ │ │ ├── valhalla_neutral_ctf_050.bin │ │ │ └── wreckage_050.bin │ │ ├── 00113 │ │ ├── game_set_021.bin │ │ ├── h4_4run_snipers_4v4_132.bin │ │ ├── h4_covy_snipers_4v4_132.bin │ │ ├── h4_ctf_sniper_132.bin │ │ ├── h4_shottysniper_4v4_132.bin │ │ ├── h4_snipers_4v4_132.bin │ │ ├── h4_snipers_snapshot_4v4_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── dispatchctf_050.bin │ │ │ ├── harvest_050.bin │ │ │ ├── opticon_snipers_050.bin │ │ │ ├── pitfall_snipers_050.bin │ │ │ ├── ragnarok_snipers_050.bin │ │ │ ├── ravine_settler_ctf_050.bin │ │ │ ├── ravine_simplexctf_050.bin │ │ │ ├── refresh_blood_crashctf_050.bin │ │ │ ├── refresh_cliffside_050.bin │ │ │ ├── refresh_tower_050.bin │ │ │ ├── refresh_valhallactf_050.bin │ │ │ ├── refresh_warhouse_050.bin │ │ │ ├── sniper_abandon_050.bin │ │ │ ├── sniper_complex_050.bin │ │ │ ├── sniper_exile_050.bin │ │ │ ├── sniper_harvest_050.bin │ │ │ ├── sniper_haven_050.bin │ │ │ ├── sniper_longbow_050.bin │ │ │ ├── sniper_meltdown_050.bin │ │ │ ├── sniper_shutout_050.bin │ │ │ ├── sniper_solace_050.bin │ │ │ ├── sniper_vortex_050.bin │ │ │ ├── the_ark_snipers_050.bin │ │ │ └── vertigo_050.bin │ │ ├── 00115 │ │ ├── game_set_021.bin │ │ ├── h4_swat_4run_132.bin │ │ ├── h4_swat_4v4_132.bin │ │ ├── h4_swat_covy_132.bin │ │ ├── h4_swat_ctf_132.bin │ │ ├── h4_swat_magnum_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── cliffside_050.bin │ │ │ ├── deadlycrossing_050.bin │ │ │ ├── dispatchctf_050.bin │ │ │ ├── erosion_black_site_050.bin │ │ │ ├── excavation_050.bin │ │ │ ├── harvest_050.bin │ │ │ ├── highrise_050.bin │ │ │ ├── panic_station_050.bin │ │ │ ├── pitfall_050.bin │ │ │ ├── rattler_050.bin │ │ │ ├── ravine_plaza_050.bin │ │ │ ├── ravine_settler_ctf_050.bin │ │ │ ├── ravine_shutout_050.bin │ │ │ ├── ravine_simplexctf_050.bin │ │ │ ├── refresh_blood_cavern_050.bin │ │ │ ├── refresh_blood_crashctf_050.bin │ │ │ ├── refresh_cliffside_050.bin │ │ │ ├── refresh_haven_050.bin │ │ │ ├── refresh_portctf_050.bin │ │ │ ├── refresh_tower_050.bin │ │ │ ├── refresh_warhouse_050.bin │ │ │ ├── spiderweb_050.bin │ │ │ ├── vertigo_050.bin │ │ │ └── wreckage_050.bin │ │ ├── 00117 │ │ ├── game_set_021.bin │ │ ├── h4_goal_grif_agla_132.bin │ │ ├── h4_goal_grif_field_132.bin │ │ ├── h4_grifball_4v4-new_132.bin │ │ ├── h4_grifball_dash_4v4_132.bin │ │ ├── h4_grifball_pro_4v4_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── aquaduct_050.bin │ │ │ ├── cauldron_050.bin │ │ │ ├── emerald_isle_050.bin │ │ │ ├── grif_animum_050.bin │ │ │ ├── grif_diamond_050.bin │ │ │ ├── grif_evil_lair_050.bin │ │ │ ├── grif_green_army_050.bin │ │ │ ├── grif_laurus_050.bin │ │ │ ├── grif_niveus_050.bin │ │ │ ├── grif_quantum_050.bin │ │ │ ├── grif_v_court_050.bin │ │ │ ├── hangar_050.bin │ │ │ ├── nakuru_field_050.bin │ │ │ ├── new_lab_050.bin │ │ │ ├── power_grid_050.bin │ │ │ ├── primordial_050.bin │ │ │ ├── successor_050.bin │ │ │ ├── termitarium_050.bin │ │ │ ├── thin_ice_050.bin │ │ │ └── what_the_grif_050.bin │ │ ├── 00121 │ │ ├── game_set_021.bin │ │ ├── h4_ctf_2v2_132.bin │ │ ├── h4_ctf_neutral_5_132.bin │ │ ├── h4_infinityslayer_2v2_132.bin │ │ ├── h4_koth_2v2_132.bin │ │ ├── h4_oddball_2v2_132.bin │ │ ├── h4_quickdraw_2v2_132.bin │ │ ├── h4_slay_leg_br_dubs_132.bin │ │ ├── h4_slayer_pro_2v2_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── abandon_dubs_050.bin │ │ │ ├── abandon_lgnd_050.bin │ │ │ ├── ark_dubs_050.bin │ │ │ ├── ark_lgnd_050.bin │ │ │ ├── erosion_cryptic_050.bin │ │ │ ├── fallout_dubs_050.bin │ │ │ ├── graphite_dubs_050.bin │ │ │ ├── graphite_lgnd_050.bin │ │ │ ├── haven_dubs_050.bin │ │ │ ├── haven_lgnd_050.bin │ │ │ ├── impact_honeycomb_050.bin │ │ │ ├── island_salem_050.bin │ │ │ ├── island_templar_050.bin │ │ │ ├── onyx_lgnd_050.bin │ │ │ ├── pitfall_dubs_050.bin │ │ │ ├── pitfall_lgnd_050.bin │ │ │ ├── rail_dubs_050.bin │ │ │ ├── rail_lgnd_050.bin │ │ │ ├── ravine_aegiz_050.bin │ │ │ ├── simplex_dubs_050.bin │ │ │ └── skyline_lgnd_050.bin │ │ ├── 00122 │ │ ├── game_set_021.bin │ │ ├── h4_dominion_4v4_132.bin │ │ ├── h4_extraction_5v5_1site_30s_132.bin │ │ ├── h4_extraction_5v5_1site_45s_132.bin │ │ ├── h4_extraction_5v5_2site_30s_132.bin │ │ ├── h4_extraction_5v5_2site_45s_132.bin │ │ ├── h4_extraction_pg_5v5_1site_30s_132.bin │ │ ├── h4_goal_4v4_132.bin │ │ ├── h4_koth_5v5_132.bin │ │ ├── h4_oddball_4v4_132.bin │ │ ├── h4_regicide_4v4_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── adrift_rico_050.bin │ │ │ ├── basin_050.bin │ │ │ ├── cliffside_050.bin │ │ │ ├── deadlycrossing_050.bin │ │ │ ├── dispatch_rico_050.bin │ │ │ ├── dispatchctf_050.bin │ │ │ ├── dom_graphite_050.bin │ │ │ ├── dom_hekau_050.bin │ │ │ ├── dom_inheritor_050.bin │ │ │ ├── dom_onyx_050.bin │ │ │ ├── dom_plaza_050.bin │ │ │ ├── dom_procedure_050.bin │ │ │ ├── dom_serenity_050.bin │ │ │ ├── dom_station_9_050.bin │ │ │ ├── dom_the_ark_050.bin │ │ │ ├── forge_scythe_050.bin │ │ │ ├── forge_station9_050.bin │ │ │ ├── harvest_050.bin │ │ │ ├── haven_rico_050.bin │ │ │ ├── highrise_050.bin │ │ │ ├── island_opticon_050.bin │ │ │ ├── monolith_rico_050.bin │ │ │ ├── onyx_lgnd_050.bin │ │ │ ├── onyx_rico_050.bin │ │ │ ├── pg_abandon_050.bin │ │ │ ├── pg_haven_050.bin │ │ │ ├── pg_onyx_050.bin │ │ │ ├── pg_orion_050.bin │ │ │ ├── pg_pitfall_050.bin │ │ │ ├── pg_shutout_050.bin │ │ │ ├── pg_simplex_050.bin │ │ │ ├── pg_skyline_050.bin │ │ │ ├── pg_vertigo_050.bin │ │ │ ├── pitfall_050.bin │ │ │ ├── pitfall_koth_050.bin │ │ │ ├── pitfall_ordagain_050.bin │ │ │ ├── pitfall_rico_050.bin │ │ │ ├── port_050.bin │ │ │ ├── rattler_050.bin │ │ │ ├── ravine_edifice_050.bin │ │ │ ├── ravine_opus_050.bin │ │ │ ├── ravine_republic_050.bin │ │ │ ├── ravine_serenity_050.bin │ │ │ ├── ravine_settler_050.bin │ │ │ ├── ravine_shutout_050.bin │ │ │ ├── ravine_simplexctf_050.bin │ │ │ ├── ravine_simplexctf_rico_050.bin │ │ │ ├── ravine_wanderluster_050.bin │ │ │ ├── refresh_blood_cavern_050.bin │ │ │ ├── refresh_haven_050.bin │ │ │ ├── refresh_tower_050.bin │ │ │ ├── refresh_valhallactf_050.bin │ │ │ ├── refresh_warhouse_050.bin │ │ │ ├── rico_butter_050.bin │ │ │ ├── rico_hekau_050.bin │ │ │ ├── rico_inheritor_050.bin │ │ │ ├── skyline_rico_050.bin │ │ │ ├── solace_rico_050.bin │ │ │ ├── spiderweb_050.bin │ │ │ ├── vertigo_050.bin │ │ │ ├── vertigo_ordagain_050.bin │ │ │ └── wreckage_050.bin │ │ ├── 00126 │ │ ├── game_set_021.bin │ │ ├── h4_binaryslayer_5v5_132.bin │ │ ├── h4_ctf_husky_132.bin │ │ ├── h4_ctf_instagib_4v4_132.bin │ │ ├── h4_fiesta_5v5_132.bin │ │ ├── h4_goal_fast_4v4_132.bin │ │ ├── h4_goal_shotty_4v4_132.bin │ │ ├── h4_koth_clang_132.bin │ │ ├── h4_mini_slayer_4v4_132.bin │ │ ├── h4_paintball_4v4_132.bin │ │ ├── h4_rockets_5v5_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── abandon_ts_050.bin │ │ │ ├── adrift_rico_050.bin │ │ │ ├── adrift_ts_050.bin │ │ │ ├── basin_050.bin │ │ │ ├── blood_cavern_050.bin │ │ │ ├── cliffside_050.bin │ │ │ ├── cliffside_napoleon_050.bin │ │ │ ├── deadlycrossing_050.bin │ │ │ ├── dispatch_rico_050.bin │ │ │ ├── forge_relay_050.bin │ │ │ ├── forge_scythe_050.bin │ │ │ ├── harvest_050.bin │ │ │ ├── haven_rico_050.bin │ │ │ ├── haven_ts_050.bin │ │ │ ├── highrise_050.bin │ │ │ ├── lightning_adrift_050.bin │ │ │ ├── lightning_haven_050.bin │ │ │ ├── longbow_shortbow_050.bin │ │ │ ├── meta_raid_050.bin │ │ │ ├── mini_rail_050.bin │ │ │ ├── monolith_rico_050.bin │ │ │ ├── onyx_lgnd_050.bin │ │ │ ├── onyx_rico_050.bin │ │ │ ├── paintball_050.bin │ │ │ ├── pitfall_050.bin │ │ │ ├── pitfall_rico_050.bin │ │ │ ├── port_050.bin │ │ │ ├── rattler_050.bin │ │ │ ├── ravine_opus_050.bin │ │ │ ├── ravine_shutout_050.bin │ │ │ ├── ravine_simplex_050.bin │ │ │ ├── ravine_simplexctf_050.bin │ │ │ ├── ravine_simplexctf_rico_050.bin │ │ │ ├── refresh_blood_cavern_050.bin │ │ │ ├── refresh_haven_050.bin │ │ │ ├── refresh_tower_050.bin │ │ │ ├── refresh_warhouse_050.bin │ │ │ ├── rico_butter_050.bin │ │ │ ├── rico_hekau_050.bin │ │ │ ├── rico_inheritor_050.bin │ │ │ ├── skyline_rico_050.bin │ │ │ ├── solace_rico_050.bin │ │ │ ├── spiderweb_050.bin │ │ │ ├── tower_050.bin │ │ │ ├── valhalla_050.bin │ │ │ ├── vertigo_050.bin │ │ │ ├── vertigo_ordagain_050.bin │ │ │ ├── warhouse_050.bin │ │ │ └── wraparound_050.bin │ │ ├── 00128 │ │ ├── game_set_021.bin │ │ ├── h4_infinityrumble_8ffa_132.bin │ │ ├── h4_koth_gc_132.bin │ │ ├── h4_oddball_gc_132.bin │ │ ├── h4_quickdraw_12ffa_132.bin │ │ ├── h4_regicide_6ffa_132.bin │ │ ├── h4_rumble_pro_8ffa_132.bin │ │ ├── h4_rumbleprobr_gc_132.bin │ │ ├── h4_swords_ffa_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── abandon_gc_050.bin │ │ │ ├── deadlycrossing_050.bin │ │ │ ├── erosion_black_site_050.bin │ │ │ ├── forge_scythe_050.bin │ │ │ ├── haven_gc_050.bin │ │ │ ├── island_opticon_050.bin │ │ │ ├── landfall_gc_050.bin │ │ │ ├── onyx_lgnd_050.bin │ │ │ ├── pitfall_050.bin │ │ │ ├── pitfall_ordagain_050.bin │ │ │ ├── port_050.bin │ │ │ ├── rattler_050.bin │ │ │ ├── ravine_opus_050.bin │ │ │ ├── ravine_republic_050.bin │ │ │ ├── ravine_serenity_050.bin │ │ │ ├── ravine_simplexctf_050.bin │ │ │ ├── ravine_wanderluster_050.bin │ │ │ ├── refresh_blood_cavern_050.bin │ │ │ ├── refresh_haven_050.bin │ │ │ ├── refresh_tower_050.bin │ │ │ ├── refresh_warhouse_050.bin │ │ │ ├── skyline_gc_050.bin │ │ │ ├── vertigo_050.bin │ │ │ └── vertigo_ordagain_050.bin │ │ ├── 00132 │ │ ├── e10_m1_breach_intel_132.bin │ │ ├── e10_m2_cavern_kill_132.bin │ │ ├── e10_m3_hillside_blitzkrieg_132.bin │ │ ├── e10_m4_caverns_outlast_132.bin │ │ ├── e10_m5_breach_unlock_132.bin │ │ ├── e1_m1_chopperbowl_veh_destroy_132.bin │ │ ├── e1_m3_fortsw_shutdown_132.bin │ │ ├── e1_m4_sniperalley_destroy_132.bin │ │ ├── e1_m4_temple_escape_132.bin │ │ ├── e1_m5_scurve_destroy_132.bin │ │ ├── e2_m1_cathedral_132.bin │ │ ├── e2_m2_scurve_rescue_132.bin │ │ ├── e2_m3_forts_defend_132.bin │ │ ├── e2_m4_sniperalley_run_132.bin │ │ ├── e2_m5_temple_retake_132.bin │ │ ├── e3_m1_chopperbowl_swarm_132.bin │ │ ├── e3_m2_complex_destroy_132.bin │ │ ├── e3_m3_valhalla_132.bin │ │ ├── e3_m4_valhalla_132.bin │ │ ├── e3_m5_cathedral_132.bin │ │ ├── e4_m1_sniperalley_grab_132.bin │ │ ├── e4_m2_valhalla_132.bin │ │ ├── e4_m3_fortsw_activate_132.bin │ │ ├── e4_m4_scurve_capture_132.bin │ │ ├── e4_m5_complex_holdout_132.bin │ │ ├── e5_m1_cathedral_defend_132.bin │ │ ├── e5_m1_temple_shutdown_132.bin │ │ ├── e5_m2_temple_recover_132.bin │ │ ├── e5_m4_scurve_defend_132.bin │ │ ├── e5_m5_chopperbowl_outnumbered_132.bin │ │ ├── e6_m1_factory_132.bin │ │ ├── e6_m2_mezzanine_infiltrate_132.bin │ │ ├── e6_m3_caverns_recon_132.bin │ │ ├── e6_m4_vortex_132.bin │ │ ├── e6_m5_breach_destroy_132.bin │ │ ├── e7_m1_hillside_abort_132.bin │ │ ├── e7_m2_engine_recovery_132.bin │ │ ├── e7_m3_engine_havok_132.bin │ │ ├── e7_m4_engine_ventcore_132.bin │ │ ├── e7_m5_engine_roadtrip_132.bin │ │ ├── e8_m1_hillside_retake_132.bin │ │ ├── e8_m2_vortex_artillery_132.bin │ │ ├── e8_m3_caverns_rescue_132.bin │ │ ├── e8_m4_factory_132.bin │ │ ├── e8_m5_mezzanine_secure_132.bin │ │ ├── e9_m1_vortex_traces_132.bin │ │ ├── e9_m2_mezzanine_break_132.bin │ │ ├── e9_m3_hillside_132.bin │ │ ├── e9_m4_factory_132.bin │ │ ├── e9_m5_factory_132.bin │ │ └── game_set_021.bin │ │ ├── 00145 │ │ ├── game_set_021.bin │ │ ├── h4_ctf_5v5_3_35s_132.bin │ │ ├── h4_ctf_neutral_5_132.bin │ │ ├── h4_dominion_8v8_132.bin │ │ ├── h4_heavies_132.bin │ │ ├── h4_koth_8v8_132.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ └── map_variants │ │ │ ├── daybreak_heavy_050.bin │ │ │ ├── dom_exile_remix_050.bin │ │ │ ├── dom_longbow_remix_050.bin │ │ │ ├── dom_meltdown_remix_050.bin │ │ │ ├── dom_ragnarok_050.bin │ │ │ ├── dom_settler_050.bin │ │ │ ├── dom_shatter_remix_050.bin │ │ │ ├── exile_heavy_050.bin │ │ │ ├── harvest_heavy_050.bin │ │ │ ├── longbow_heavy_050.bin │ │ │ ├── meltdown_heavy_050.bin │ │ │ ├── outcast_heavy_050.bin │ │ │ ├── perdition_heavy_050.bin │ │ │ ├── ragnarok_heavy_050.bin │ │ │ ├── shatter_heavy_050.bin │ │ │ ├── vortex_heavy_050.bin │ │ │ └── wreckage_heavy_050.bin │ │ ├── 00200 │ │ ├── game_set_021.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00201 │ │ ├── game_set_021.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00202 │ │ ├── game_set_021.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00203 │ │ ├── game_set_021.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00204 │ │ ├── game_set_021.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00207 │ │ ├── game_set_021.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00213 │ │ ├── game_set_021.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00220 │ │ ├── game_set_021.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00223 │ │ ├── game_set_021.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── chs │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── cht │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── de │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── dk │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── dlc │ │ ├── ca_basin_large.jpg │ │ ├── ca_basin_lobby.jpg │ │ ├── ca_basin_sm.jpg │ │ ├── ca_creeper_lobby.jpg │ │ ├── ca_creeper_sm.jpg │ │ ├── ca_deadlycrossing_large.jpg │ │ ├── ca_deadlycrossing_sm.jpg │ │ ├── ca_dropoff_lobby.jpg │ │ ├── ca_dropoff_sm.jpg │ │ ├── ca_highrise_large.jpg │ │ ├── ca_highrise_lobby.jpg │ │ ├── ca_highrise_sm.jpg │ │ ├── ca_port_large.jpg │ │ ├── ca_port_lobby.jpg │ │ ├── ca_port_sm.jpg │ │ ├── ca_rattler_large.jpg │ │ ├── ca_rattler_sm.jpg │ │ ├── ca_spiderweb_large.jpg │ │ ├── ca_spiderweb_lobby.jpg │ │ ├── ca_spiderweb_sm.jpg │ │ ├── dlc01_engine_large.jpg │ │ ├── dlc01_engine_lobby.jpg │ │ ├── dlc01_engine_sm.jpg │ │ ├── dlc01_factory_large.jpg │ │ ├── dlc01_factory_lobby.jpg │ │ ├── dlc01_factory_sm.jpg │ │ ├── dlc_dejewel_large.jpg │ │ ├── dlc_dejewel_lobby.jpg │ │ ├── dlc_dejewel_sm.jpg │ │ ├── dlc_dejunkyard_large.jpg │ │ ├── dlc_dejunkyard_lobby.jpg │ │ ├── dlc_dejunkyard_sm.jpg │ │ ├── dlc_forge_island_large.jpg │ │ ├── dlc_forge_island_lobby.jpg │ │ ├── dlc_forge_island_sm.jpg │ │ ├── ff151_mezzanine_large.jpg │ │ ├── ff151_mezzanine_lobby.jpg │ │ ├── ff151_mezzanine_sm.jpg │ │ ├── ff152_vortex_large.jpg │ │ ├── ff152_vortex_lobby.jpg │ │ ├── ff152_vortex_sm.jpg │ │ ├── ff153_caverns_large.jpg │ │ ├── ff153_caverns_lobby.jpg │ │ ├── ff153_caverns_sm.jpg │ │ ├── ff154_hillside_large.jpg │ │ ├── ff154_hillside_lobby.jpg │ │ ├── ff154_hillside_sm.jpg │ │ ├── ff155_breach_large.jpg │ │ ├── ff155_breach_lobby.jpg │ │ ├── ff155_breach_sm.jpg │ │ ├── map1_large.jpg │ │ ├── map1_sm.jpg │ │ ├── map2_large.jpg │ │ ├── map2_sm.jpg │ │ ├── map3_large.jpg │ │ ├── map3_sm.jpg │ │ ├── map4_large.jpg │ │ ├── map4_lobby.jpg │ │ ├── map4_sm.jpg │ │ ├── map5_large.jpg │ │ ├── map5_lobby.jpg │ │ ├── map5_sm.jpg │ │ ├── map6_large.jpg │ │ ├── map6_lobby.jpg │ │ ├── map6_sm.jpg │ │ ├── map7_large.jpg │ │ ├── map7_lobby.jpg │ │ ├── map7_sm.jpg │ │ ├── map8_large.jpg │ │ ├── map8_lobby.jpg │ │ ├── map8_sm.jpg │ │ ├── map9_large.jpg │ │ ├── map9_lobby.jpg │ │ ├── map9_sm.jpg │ │ ├── zd_02_grind_large.jpg │ │ ├── zd_02_grind_lobby.jpg │ │ └── zd_02_grind_sm.jpg │ │ ├── dlc_map_manifest.bin │ │ ├── dynamic_matchmaking_nightmap.jpg │ │ ├── en │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ ├── rsa_manifest.bin │ │ ├── user_nag_00001.bin │ │ ├── user_nag_image_00001.jpg │ │ └── user_nag_image_00002.jpg │ │ ├── fi │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── fr │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── it │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── jpn │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── kor │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── matchmaking_hopper_037.bin │ │ ├── mx │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── network_configuration_10227.bin │ │ ├── network_configuration_10228.bin │ │ ├── network_configuration_10230.bin │ │ ├── network_configuration_10231.bin │ │ ├── network_configuration_10232.bin │ │ ├── network_configuration_10233.bin │ │ ├── network_configuration_10234.bin │ │ ├── network_configuration_10235.bin │ │ ├── network_configuration_10236.bin │ │ ├── nl │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── no │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── offer_metadata_002.bin │ │ ├── offer_metadata_003.bin │ │ ├── offer_metadata_004.bin │ │ ├── pl │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── pt │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ ├── ru │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin │ │ └── sp │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_010.bin │ │ └── rsa_manifest.bin ├── Retail TU2 21122.12.11.21.0101.main │ ├── README.md │ └── data │ │ └── globals │ │ └── scripts │ │ ├── global_abilities.hsc │ │ ├── global_ai.hsc │ │ ├── global_audio.hsc │ │ ├── global_camera.hsc │ │ ├── global_checkpoints.hsc │ │ ├── global_cinematic.hsc │ │ ├── global_cortana.hsc │ │ ├── global_devicemachines.hsc │ │ ├── global_dialog.hsc │ │ ├── global_lighting.hsc │ │ ├── global_logic.hsc │ │ ├── global_narrative.hsc │ │ ├── global_objects.hsc │ │ ├── global_physics.hsc │ │ ├── global_players.hsc │ │ ├── global_screenshake.hsc │ │ ├── global_scripts.hsc │ │ ├── global_zoneset.hsc │ │ ├── spops_ai.hsc │ │ ├── spops_ai_spawn.hsc │ │ ├── spops_audio.hsc │ │ ├── spops_blips.hsc │ │ ├── spops_global.hsc │ │ └── spops_narrative.hsc ├── Retail TU3 21165.12.12.12.0112.main │ ├── README.md │ └── data │ │ ├── environments │ │ └── solo │ │ │ ├── m020 │ │ │ └── device_machines │ │ │ │ ├── m20_fr_to_courtyard_door │ │ │ │ └── scripts │ │ │ │ │ └── m20_fr_to_courtyard_door.hsc │ │ │ │ └── m20_to_term_door │ │ │ │ └── scripts │ │ │ │ └── m20_to_term_door.hsc │ │ │ └── m10_crash │ │ │ └── device_machines │ │ │ ├── m10_observatory_covenant_fleet │ │ │ └── m10_obs_fleet_crash_ship │ │ │ │ └── scripts │ │ │ │ └── m10_obs_fleet_crash_ship.hsc │ │ │ └── m10_observatory_windows │ │ │ └── scripts │ │ │ └── m10_observatory_windows.hsc │ │ ├── globals │ │ ├── global_door.hsc │ │ ├── global_extras.hsc │ │ ├── global_firefight_vo_script.hsc │ │ ├── global_spops_dialog.hsc │ │ └── scripts │ │ │ ├── global_abilities.hsc │ │ │ ├── global_ai.hsc │ │ │ ├── global_audio.hsc │ │ │ ├── global_camera.hsc │ │ │ ├── global_checkpoints.hsc │ │ │ ├── global_cinematic.hsc │ │ │ ├── global_cortana.hsc │ │ │ ├── global_devicemachines.hsc │ │ │ ├── global_dialog.hsc │ │ │ ├── global_lighting.hsc │ │ │ ├── global_logic.hsc │ │ │ ├── global_narrative.hsc │ │ │ ├── global_objects.hsc │ │ │ ├── global_physics.hsc │ │ │ ├── global_players.hsc │ │ │ ├── global_screenshake.hsc │ │ │ ├── global_scripts.hsc │ │ │ ├── global_zoneset.hsc │ │ │ ├── spops_ai.hsc │ │ │ ├── spops_audio.hsc │ │ │ ├── spops_blips.hsc │ │ │ ├── spops_global.hsc │ │ │ └── spops_narrative.hsc │ │ ├── levels │ │ ├── dlc │ │ │ ├── ff151_mezzanine │ │ │ │ └── scripts │ │ │ │ │ ├── ff151_mezzanine.hsc │ │ │ │ │ ├── ff151_mezzanine_e6m2_audio.hsc │ │ │ │ │ ├── ff151_mezzanine_e6m2_mission.hsc │ │ │ │ │ ├── ff151_mezzanine_e6m2_narrative.hsc │ │ │ │ │ ├── ff151_mezzanine_e8m5_audio.hsc │ │ │ │ │ ├── ff151_mezzanine_e8m5_mission.hsc │ │ │ │ │ ├── ff151_mezzanine_e8m5_narrative.hsc │ │ │ │ │ ├── ff151_mezzanine_e9m2_audio.hsc │ │ │ │ │ ├── ff151_mezzanine_e9m2_mission.hsc │ │ │ │ │ └── ff151_mezzanine_e9m2_narrative.hsc │ │ │ ├── ff152_vortex │ │ │ │ ├── crates │ │ │ │ │ └── forerunner_spherebase │ │ │ │ │ │ └── forerunner_spherebase │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── forerunner_spherebase.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── ff152_vortex.hsc │ │ │ │ │ ├── ff152_vortex_e6_m4.hsc │ │ │ │ │ ├── ff152_vortex_e6_m4_narrative.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_ai.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_artillery.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_audio.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_dialog.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_narrative.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_rendezvous.hsc │ │ │ │ │ ├── ff152_vortex_e9_m1.hsc │ │ │ │ │ ├── ff152_vortex_e9_m1_audio.hsc │ │ │ │ │ ├── ff152_vortex_e9_m1_narrative.hsc │ │ │ │ │ └── ff154_vortex_e6_m4_audio.hsc │ │ │ ├── ff153_caverns │ │ │ │ ├── device_machines │ │ │ │ │ └── dm_caverns_towercore_beam_001 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── dm_caverns_towercore_beam_001.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── ff151_caverns_e10m4_audio.hsc │ │ │ │ │ ├── ff151_caverns_e10m4_mission.hsc │ │ │ │ │ ├── ff151_caverns_e10m4_narrative.hsc │ │ │ │ │ ├── ff153_caverns.hsc │ │ │ │ │ ├── ff153_caverns_e10_m2.hsc │ │ │ │ │ ├── ff153_caverns_e10_m2_narrative.hsc │ │ │ │ │ ├── ff153_caverns_e6_m3_audio.hsc │ │ │ │ │ ├── ff153_caverns_e6_m3_narrative.hsc │ │ │ │ │ ├── ff153_caverns_e6_m3_recon.hsc │ │ │ │ │ ├── ff153_caverns_e8_m3_audio.hsc │ │ │ │ │ ├── ff153_caverns_e8_m3_narrative.hsc │ │ │ │ │ ├── ff153_caverns_e8m3_mission.hsc │ │ │ │ │ └── ff155_caverns_e10_m2_audio.hsc │ │ │ ├── ff154_hillside │ │ │ │ ├── device_machines │ │ │ │ │ ├── dm_hillside_portal_switch │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── door_scripts.hsc │ │ │ │ │ └── dm_hillside_sandbox_changer │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── dm_hillside_sandbox_changer.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── e7_m1.hsc │ │ │ │ │ ├── e7_m1_ai.hsc │ │ │ │ │ ├── e7_m1_ai_areas.hsc │ │ │ │ │ ├── e7_m1_ai_areas_auto.hsc │ │ │ │ │ ├── e7_m1_audio.hsc │ │ │ │ │ ├── e7_m1_barriers.hsc │ │ │ │ │ ├── e7_m1_barriers_auto.hsc │ │ │ │ │ ├── e7_m1_changers.hsc │ │ │ │ │ ├── e7_m1_dialog.hsc │ │ │ │ │ ├── e7_m1_narrative.hsc │ │ │ │ │ ├── ff153_hillside_e10_m3_blitzkrieg.hsc │ │ │ │ │ ├── ff154_hillside.hsc │ │ │ │ │ ├── ff154_hillside_e10_m3_narrative.hsc │ │ │ │ │ ├── ff154_hillside_e8_m1_audio.hsc │ │ │ │ │ ├── ff154_hillside_e8_m1_narrative.hsc │ │ │ │ │ ├── ff154_hillside_e8_m1_retake.hsc │ │ │ │ │ ├── ff154_hillside_e9_m3.hsc │ │ │ │ │ ├── ff154_hillside_e9_m3_audio.hsc │ │ │ │ │ ├── ff154_hillside_e9_m3_narrative.hsc │ │ │ │ │ └── ff155_hillside_e10_m3_audio.hsc │ │ │ ├── ff155_breach │ │ │ │ └── scripts │ │ │ │ │ ├── ff155_breach.hsc │ │ │ │ │ ├── ff155_breach_e10_m1.hsc │ │ │ │ │ ├── ff155_breach_e10_m1_audio.hsc │ │ │ │ │ ├── ff155_breach_e10_m1_narrative.hsc │ │ │ │ │ ├── ff155_breach_e10_m5.hsc │ │ │ │ │ ├── ff155_breach_e10_m5_audio.hsc │ │ │ │ │ ├── ff155_breach_e10_m5_fx.hsc │ │ │ │ │ ├── ff155_breach_e10_m5_narrative.hsc │ │ │ │ │ ├── ff155_breach_e6_m5.hsc │ │ │ │ │ ├── ff155_breach_e6_m5_audio.hsc │ │ │ │ │ └── ff155_breach_e6_m5_narrative.hsc │ │ │ ├── scripts │ │ │ │ ├── spops15_vo_globals.hsc │ │ │ │ ├── spops_global_script_dlc.hsc │ │ │ │ ├── spops_mission.hsc │ │ │ │ ├── spops_vehicle.hsc │ │ │ │ ├── spops_vehicle_pelican.hsc │ │ │ │ └── spops_vehicle_phantom.hsc │ │ │ └── shared │ │ │ │ └── crates │ │ │ │ ├── cov │ │ │ │ ├── cov_barrier_spops2 │ │ │ │ │ └── scripts │ │ │ │ │ │ └── cov_barrier_spops2.hsc │ │ │ │ └── spops_cov_watchtower │ │ │ │ │ └── scripts │ │ │ │ │ └── spops_cov_watchtower.hsc │ │ │ │ └── unsc │ │ │ │ └── unsc_radio_rvb_spops │ │ │ │ └── scripts │ │ │ │ └── unsc_radio_rvb_spops.hsc │ │ └── firefight │ │ │ ├── dlc01_engine │ │ │ ├── device_machine │ │ │ │ └── engine_door_dm_01 │ │ │ │ │ └── scripts │ │ │ │ │ └── engine_door_dm_01.hsc │ │ │ └── scripts │ │ │ │ ├── dlc01_engine.hsc │ │ │ │ ├── dlc01_engine_e7_m2_audio.hsc │ │ │ │ ├── dlc01_engine_e7_m2_narrative.hsc │ │ │ │ ├── dlc01_engine_e7_m3_narrative.hsc │ │ │ │ ├── dlc01_engine_e7_m4.hsc │ │ │ │ ├── dlc01_engine_e7_m4_narrative.hsc │ │ │ │ ├── dlc01_engine_e7_m5.hsc │ │ │ │ ├── dlc01_engine_e7_m5_narrative.hsc │ │ │ │ ├── dlc01_engine_e7m2.hsc │ │ │ │ ├── dlc01_engine_e7m3.hsc │ │ │ │ └── dlc01_engine_vo.hsc │ │ │ ├── dlc01_factory │ │ │ ├── device_machines │ │ │ │ └── dm_factory_requiem_map │ │ │ │ │ └── scripts │ │ │ │ │ └── dm_factory_requiem_map.hsc │ │ │ └── scripts │ │ │ │ ├── dlc01_factory.hsc │ │ │ │ ├── dlc01_factory_audio.hsc │ │ │ │ ├── dlc01_factory_e6_m1.hsc │ │ │ │ ├── dlc01_factory_e6_m1_narrative.hsc │ │ │ │ ├── dlc01_factory_e8_m4.hsc │ │ │ │ ├── dlc01_factory_e8_m4_narrative.hsc │ │ │ │ ├── dlc01_factory_e9_m4.hsc │ │ │ │ ├── dlc01_factory_e9_m4_narrative.hsc │ │ │ │ ├── dlc01_factory_e9_m5.hsc │ │ │ │ ├── dlc01_factory_e9_m5_narrative.hsc │ │ │ │ ├── dlc01_factory_vo.hsc │ │ │ │ └── perf_tests.hsc │ │ │ ├── ff82_scurve │ │ │ └── device_machines │ │ │ │ └── dm_scurve_bridgepanel │ │ │ │ └── scripts │ │ │ │ └── door_scripts.hsc │ │ │ └── ff92_valhalla │ │ │ └── device_machines │ │ │ └── dm_valhalla_controlpanel02 │ │ │ └── scripts │ │ │ └── door_scripts.hsc │ │ └── objects │ │ ├── props │ │ ├── covenant │ │ │ └── cov_squad_drop_pod │ │ │ │ └── scripts │ │ │ │ └── cov_squad_drop_pod.hsc │ │ └── forerunner │ │ │ ├── knight_taint │ │ │ └── scripts │ │ │ │ └── knight_taint.hsc │ │ │ └── shard_spawn │ │ │ └── scripts │ │ │ └── shard_spawn.hsc │ │ └── vehicles │ │ ├── covenant │ │ ├── storm_drop_pod_medium_four_doors │ │ │ └── scripts │ │ │ │ └── storm_drop_pod_medium_four_doors.hsc │ │ ├── storm_drop_pod_small │ │ │ └── scripts │ │ │ │ └── storm_drop_pod_small.hsc │ │ └── storm_lich │ │ │ └── scripts │ │ │ └── storm_lich.hsc │ │ └── forerunner │ │ └── turrets │ │ └── storm_anti_infantry_turret │ │ └── scripts │ │ └── storm_anti_infantry_turret.hsc ├── Retail TU4 21339.13.02.05.0117.main │ ├── README.md │ └── data │ │ ├── globals │ │ └── scripts │ │ │ ├── global_abilities.hsc │ │ │ ├── global_ai.hsc │ │ │ ├── global_audio.hsc │ │ │ ├── global_camera.hsc │ │ │ ├── global_checkpoints.hsc │ │ │ ├── global_cinematic.hsc │ │ │ ├── global_cortana.hsc │ │ │ ├── global_devicemachines.hsc │ │ │ ├── global_dialog.hsc │ │ │ ├── global_lighting.hsc │ │ │ ├── global_logic.hsc │ │ │ ├── global_narrative.hsc │ │ │ ├── global_objects.hsc │ │ │ ├── global_physics.hsc │ │ │ ├── global_players.hsc │ │ │ ├── global_screenshake.hsc │ │ │ ├── global_scripts.hsc │ │ │ ├── global_zoneset.hsc │ │ │ ├── spops_ai.hsc │ │ │ ├── spops_audio.hsc │ │ │ ├── spops_blips.hsc │ │ │ ├── spops_global.hsc │ │ │ └── spops_narrative.hsc │ │ └── levels │ │ └── dlc │ │ └── ca_port │ │ └── objects │ │ └── ca_port_transport │ │ └── scripts │ │ └── ca_port_transport.hsc ├── Retail TU5 21391.13.03.13.1711.main │ ├── README.md │ └── data │ │ └── globals │ │ └── scripts │ │ ├── global_abilities.hsc │ │ ├── global_ai.hsc │ │ ├── global_audio.hsc │ │ ├── global_camera.hsc │ │ ├── global_checkpoints.hsc │ │ ├── global_cinematic.hsc │ │ ├── global_cortana.hsc │ │ ├── global_devicemachines.hsc │ │ ├── global_dialog.hsc │ │ ├── global_lighting.hsc │ │ ├── global_logic.hsc │ │ ├── global_narrative.hsc │ │ ├── global_objects.hsc │ │ ├── global_physics.hsc │ │ ├── global_players.hsc │ │ ├── global_screenshake.hsc │ │ ├── global_scripts.hsc │ │ ├── global_zoneset.hsc │ │ ├── spops_ai.hsc │ │ ├── spops_audio.hsc │ │ ├── spops_blips.hsc │ │ ├── spops_global.hsc │ │ └── spops_narrative.hsc └── Tag Nov 13 2013 │ ├── README.md │ ├── data │ ├── environments │ │ ├── cinematics │ │ │ └── cin_unit_test │ │ │ │ └── scripts │ │ │ │ ├── cin_unit_test_insertion.hsc │ │ │ │ └── cin_unit_test_mission.hsc │ │ ├── solo │ │ │ ├── m020 │ │ │ │ ├── device_machines │ │ │ │ │ ├── m20_bridge_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_bridge_door.hsc │ │ │ │ │ ├── m20_bridge_elevator │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_bridge_elevator.hsc │ │ │ │ │ ├── m20_cat_hex │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_hex.hsc │ │ │ │ │ ├── m20_cat_int_door_main │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_int_door_main.hsc │ │ │ │ │ ├── m20_cat_int_reg │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_int_reg.hsc │ │ │ │ │ ├── m20_cat_int_sideways │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_int_sideways.hsc │ │ │ │ │ ├── m20_cat_int_tall │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_int_tall.hsc │ │ │ │ │ ├── m20_cat_mushroom │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_cat_mushroom.hsc │ │ │ │ │ ├── m20_fr_to_courtyard_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_fr_to_courtyard_door.hsc │ │ │ │ │ ├── m20_term_column │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_term_column.hsc │ │ │ │ │ ├── m20_term_lift │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_term_lift.hsc │ │ │ │ │ ├── m20_to_term_door │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── m20_to_term_door.hsc │ │ │ │ │ └── m20_to_term_doorb │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── m20_to_term_doorb.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── m020_mission.hsc │ │ │ │ │ ├── m020_mission_guardpost.hsc │ │ │ │ │ ├── m20_ambient.hsc │ │ │ │ │ ├── m20_audio.hsc │ │ │ │ │ ├── m20_dialogue.hsc │ │ │ │ │ ├── m20_fx.hsc │ │ │ │ │ ├── m20_insertion.hsc │ │ │ │ │ ├── m20_narrative.hsc │ │ │ │ │ └── m20_streaming.hsc │ │ │ ├── m05_prologue │ │ │ │ └── scripts │ │ │ │ │ └── m05_prologue.hsc │ │ │ ├── m10_crash │ │ │ │ └── scripts │ │ │ │ │ ├── fx_00_cryo_room.hsc │ │ │ │ │ ├── fx_08_elevator.hsc │ │ │ │ │ ├── fx_12_observatory.hsc │ │ │ │ │ ├── fx_30_beacons.hsc │ │ │ │ │ ├── fx_30_beacons_02.hsc │ │ │ │ │ ├── m10_beacon.hsc │ │ │ │ │ ├── m10_cortana_plinth.hsc │ │ │ │ │ ├── m10_crash_audio.hsc │ │ │ │ │ ├── m10_crash_dialog.hsc │ │ │ │ │ ├── m10_crash_droppod_ics.hsc │ │ │ │ │ ├── m10_crash_elevator_ics.hsc │ │ │ │ │ ├── m10_crash_end.hsc │ │ │ │ │ ├── m10_crash_fx.hsc │ │ │ │ │ ├── m10_crash_fx_je.hsc │ │ │ │ │ ├── m10_crash_fx_jvz.hsc │ │ │ │ │ ├── m10_crash_gameplay.hsc │ │ │ │ │ ├── m10_crash_insertion.hsc │ │ │ │ │ ├── m10_crash_mission.hsc │ │ │ │ │ ├── m10_cryo.hsc │ │ │ │ │ ├── m10_end_airlock.hsc │ │ │ │ │ ├── m10_end_brokenfloor.hsc │ │ │ │ │ ├── m10_end_brokenfloor_ai.hsc │ │ │ │ │ ├── m10_end_brokenfloor_destruction.hsc │ │ │ │ │ ├── m10_end_brokenfloor_entry.hsc │ │ │ │ │ ├── m10_end_brokenfloor_hall.hsc │ │ │ │ │ ├── m10_end_maintenance.hsc │ │ │ │ │ ├── m10_end_maintenance_ai.hsc │ │ │ │ │ ├── m10_end_maintenance_destruction.hsc │ │ │ │ │ ├── m10_end_maintenance_hall.hsc │ │ │ │ │ ├── m10_end_maintenance_hall_ai.hsc │ │ │ │ │ ├── m10_flank.hsc │ │ │ │ │ ├── m10_flank_ai.hsc │ │ │ │ │ ├── m10_lab.hsc │ │ │ │ │ ├── m10_narrative.hsc │ │ │ │ │ ├── m10_objectives.hsc │ │ │ │ │ ├── m10_observatory.hsc │ │ │ │ │ ├── m10_observatory_covenant_fleet.hsc │ │ │ │ │ ├── m10_observatory_phantom_lander.hsc │ │ │ │ │ └── m10_spacesuck_fx.hsc │ │ │ ├── m30_cryptum │ │ │ │ └── scripts │ │ │ │ │ ├── m30_cryptum_audio.hsc │ │ │ │ │ ├── m30_cryptum_donut.hsc │ │ │ │ │ ├── m30_cryptum_escape.hsc │ │ │ │ │ ├── m30_cryptum_exterior_1.hsc │ │ │ │ │ ├── m30_cryptum_exterior_2.hsc │ │ │ │ │ ├── m30_cryptum_forerunners.hsc │ │ │ │ │ ├── m30_cryptum_forts_1.hsc │ │ │ │ │ ├── m30_cryptum_forts_2.hsc │ │ │ │ │ ├── m30_cryptum_fx.hsc │ │ │ │ │ ├── m30_cryptum_insertion.hsc │ │ │ │ │ ├── m30_cryptum_mission.hsc │ │ │ │ │ ├── m30_dialogue.hsc │ │ │ │ │ ├── m30_narrative.hsc │ │ │ │ │ └── m30_streaming.hsc │ │ │ ├── m40_invasion │ │ │ │ └── scripts │ │ │ │ │ ├── m40_dialog.hsc │ │ │ │ │ ├── m40_invasion_audio.hsc │ │ │ │ │ ├── m40_invasion_citadel.hsc │ │ │ │ │ ├── m40_invasion_citadel_ext.hsc │ │ │ │ │ ├── m40_invasion_citadel_int.hsc │ │ │ │ │ ├── m40_invasion_epic.hsc │ │ │ │ │ ├── m40_invasion_fodder.hsc │ │ │ │ │ ├── m40_invasion_fx.hsc │ │ │ │ │ ├── m40_invasion_infinity.hsc │ │ │ │ │ ├── m40_invasion_insertion.hsc │ │ │ │ │ ├── m40_invasion_jackal.hsc │ │ │ │ │ ├── m40_invasion_library.hsc │ │ │ │ │ ├── m40_invasion_mission.hsc │ │ │ │ │ ├── m40_invasion_powercave.hsc │ │ │ │ │ ├── m40_invasion_prechopper.hsc │ │ │ │ │ ├── m40_invasion_target_designator.hsc │ │ │ │ │ └── m40_narrative.hsc │ │ │ ├── m60_rescue │ │ │ │ ├── m60_e3 │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── m60_e3_audio.hsc │ │ │ │ │ │ ├── m60_e3_design.hsc │ │ │ │ │ │ ├── m60_e3_dialog.hsc │ │ │ │ │ │ ├── m60_e3_mission.hsc │ │ │ │ │ │ └── m60_e3_narrative.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── m60_dialog.hsc │ │ │ │ │ ├── m60_e4all.hsc │ │ │ │ │ ├── m60_narrative.hsc │ │ │ │ │ ├── m60_rescue_audio.hsc │ │ │ │ │ ├── m60_rescue_fx.hsc │ │ │ │ │ ├── m60_rescue_insertion.hsc │ │ │ │ │ ├── m60_rescue_marsh.hsc │ │ │ │ │ ├── m60_rescue_mission.hsc │ │ │ │ │ ├── m60_rescue_mission_ch.hsc │ │ │ │ │ ├── m60_rescue_mission_tt.hsc │ │ │ │ │ └── m60_streaming.hsc │ │ │ ├── m70_liftoff │ │ │ │ └── scripts │ │ │ │ │ ├── m70_audio.hsc │ │ │ │ │ ├── m70_dialog.hsc │ │ │ │ │ ├── m70_didact.hsc │ │ │ │ │ ├── m70_flight.hsc │ │ │ │ │ ├── m70_flight_ai.hsc │ │ │ │ │ ├── m70_flight_audio.hsc │ │ │ │ │ ├── m70_flight_fx.hsc │ │ │ │ │ ├── m70_infinity.hsc │ │ │ │ │ ├── m70_infinity_ai.hsc │ │ │ │ │ ├── m70_infinity_audio.hsc │ │ │ │ │ ├── m70_infinity_fx.hsc │ │ │ │ │ ├── m70_insertion.hsc │ │ │ │ │ ├── m70_lich.hsc │ │ │ │ │ ├── m70_mission.hsc │ │ │ │ │ ├── m70_narrative.hsc │ │ │ │ │ ├── m70_objectives.hsc │ │ │ │ │ ├── m70_spire.hsc │ │ │ │ │ ├── m70_spire_01.hsc │ │ │ │ │ ├── m70_spire_01_ai.hsc │ │ │ │ │ ├── m70_spire_01_audio.hsc │ │ │ │ │ ├── m70_spire_01_fx.hsc │ │ │ │ │ ├── m70_spire_02.hsc │ │ │ │ │ ├── m70_spire_02_ai.hsc │ │ │ │ │ ├── m70_spire_02_audio.hsc │ │ │ │ │ ├── m70_spire_02_fx.hsc │ │ │ │ │ ├── m70_spire_03.hsc │ │ │ │ │ ├── m70_spire_03_ai.hsc │ │ │ │ │ ├── m70_spire_03_audio.hsc │ │ │ │ │ └── m70_spire_03_fx.hsc │ │ │ ├── m80_delta │ │ │ │ └── scripts │ │ │ │ │ ├── m80_airlocks.hsc │ │ │ │ │ ├── m80_airlocks_one.hsc │ │ │ │ │ ├── m80_airlocks_one_ai.hsc │ │ │ │ │ ├── m80_airlocks_two.hsc │ │ │ │ │ ├── m80_airlocks_two_ai.hsc │ │ │ │ │ ├── m80_atrium.hsc │ │ │ │ │ ├── m80_atrium_ai.hsc │ │ │ │ │ ├── m80_atrium_audio.hsc │ │ │ │ │ ├── m80_atrium_fx.hsc │ │ │ │ │ ├── m80_atrium_narrative.hsc │ │ │ │ │ ├── m80_atrium_return.hsc │ │ │ │ │ ├── m80_atrium_return_lookout.hsc │ │ │ │ │ ├── m80_audio.hsc │ │ │ │ │ ├── m80_crash.hsc │ │ │ │ │ ├── m80_crash_audio.hsc │ │ │ │ │ ├── m80_crash_fx.hsc │ │ │ │ │ ├── m80_crash_narrative.hsc │ │ │ │ │ ├── m80_dialog.hsc │ │ │ │ │ ├── m80_elevator.hsc │ │ │ │ │ ├── m80_fx.hsc │ │ │ │ │ ├── m80_guns.hsc │ │ │ │ │ ├── m80_guns_ai.hsc │ │ │ │ │ ├── m80_guns_hallways.hsc │ │ │ │ │ ├── m80_guns_hallways_ai.hsc │ │ │ │ │ ├── m80_guns_hallways_narrative.hsc │ │ │ │ │ ├── m80_hallways.hsc │ │ │ │ │ ├── m80_hallways_ai.hsc │ │ │ │ │ ├── m80_hallways_one.hsc │ │ │ │ │ ├── m80_hallways_one_ai.hsc │ │ │ │ │ ├── m80_hallways_one_narrative.hsc │ │ │ │ │ ├── m80_hallways_two.hsc │ │ │ │ │ ├── m80_hallways_two_ai.hsc │ │ │ │ │ ├── m80_horseshoe.hsc │ │ │ │ │ ├── m80_horseshoe_ai.hsc │ │ │ │ │ ├── m80_horseshoe_audio.hsc │ │ │ │ │ ├── m80_horseshoe_fx.hsc │ │ │ │ │ ├── m80_horseshoe_narrative.hsc │ │ │ │ │ ├── m80_insertion.hsc │ │ │ │ │ ├── m80_lab.hsc │ │ │ │ │ ├── m80_lab_ai.hsc │ │ │ │ │ ├── m80_lab_audio.hsc │ │ │ │ │ ├── m80_lab_fx.hsc │ │ │ │ │ ├── m80_lab_narrative.hsc │ │ │ │ │ ├── m80_mission.hsc │ │ │ │ │ ├── m80_mission_shakes.hsc │ │ │ │ │ ├── m80_mission_shakes_fx.hsc │ │ │ │ │ ├── m80_narrative.hsc │ │ │ │ │ └── m80_objectives.hsc │ │ │ ├── m90_sacrifice │ │ │ │ └── scripts │ │ │ │ │ ├── m90_arcade.hsc │ │ │ │ │ ├── m90_coldant.hsc │ │ │ │ │ ├── m90_dialogue.hsc │ │ │ │ │ ├── m90_jump.hsc │ │ │ │ │ ├── m90_narrative.hsc │ │ │ │ │ ├── m90_sacrifice_audio.hsc │ │ │ │ │ ├── m90_sacrifice_flight_eye.hsc │ │ │ │ │ ├── m90_sacrifice_fx.hsc │ │ │ │ │ ├── m90_sacrifice_insertion.hsc │ │ │ │ │ ├── m90_sacrifice_mission.hsc │ │ │ │ │ ├── m90_sacrifice_mission_flight.hsc │ │ │ │ │ ├── m90_streaming.hsc │ │ │ │ │ ├── m90_teleport.hsc │ │ │ │ │ └── m90_walls.hsc │ │ │ └── m95_epilogue │ │ │ │ └── scripts │ │ │ │ └── m95_epilogue.hsc │ │ └── temp │ │ │ ├── a-jogues │ │ │ ├── o_h_second_it │ │ │ │ └── backup │ │ │ │ │ └── obj_empty │ │ │ │ │ └── scripts │ │ │ │ │ ├── obj_empty_mission.hsc │ │ │ │ │ ├── phantom_encounter.hsc │ │ │ │ │ └── scriptest_mission.hsc │ │ │ └── objective_heaven │ │ │ │ └── obj_empty │ │ │ │ └── scripts │ │ │ │ └── obj_empty_mission.hsc │ │ │ ├── a-mabisc │ │ │ └── droppod_hop │ │ │ │ └── scripts │ │ │ │ └── droppodhop.hsc │ │ │ ├── a-rkehoe │ │ │ └── test_map_rkehoe │ │ │ │ └── scripts │ │ │ │ └── test_map_rkehoe_testscripts.hsc │ │ │ ├── a-thcold │ │ │ └── tools_bvt_ai_test │ │ │ │ └── scripts │ │ │ │ ├── layer_objectives_testscripts.hsc │ │ │ │ ├── layer_pathfinding_testscripts.hsc │ │ │ │ └── tools_bvt_ai_test_variabletest.hsc │ │ │ ├── brlayton │ │ │ ├── firing_range │ │ │ │ └── scripts │ │ │ │ │ └── firing_range.hsc │ │ │ ├── vehicle_firing_range │ │ │ │ └── scripts │ │ │ │ │ └── vehicle_vehicle_firing_range.hsc │ │ │ └── vehicle_firing_range_cov │ │ │ │ └── scripts │ │ │ │ └── vehicle__firing_range_cov.hsc │ │ │ ├── cinedesign_test │ │ │ └── scripts │ │ │ │ └── cinedesign_test.hsc │ │ │ ├── derrickh │ │ │ └── fud_cine_vs │ │ │ │ └── scripts │ │ │ │ ├── fud_cine_vs_insertion.hsc │ │ │ │ └── fud_cine_vs_mission.hsc │ │ │ ├── jbehr │ │ │ └── forts_ai_test │ │ │ │ └── scripts │ │ │ │ └── forts_ai_test_mission.hsc │ │ │ ├── joelg │ │ │ └── firing_range │ │ │ │ └── scripts │ │ │ │ └── firing_range.hsc │ │ │ ├── jsnyder │ │ │ ├── jesse_playground │ │ │ │ └── scripts │ │ │ │ │ └── jesse_playground_missions.hsc │ │ │ ├── pawn_v_grunt │ │ │ │ └── scripts │ │ │ │ │ └── pawn_v_grunt.hsc │ │ │ └── thespian_test │ │ │ │ └── scripts │ │ │ │ └── ivo.hsc │ │ │ ├── mfindley │ │ │ └── qbr_knightjungle │ │ │ │ └── qbr_knightjungle │ │ │ │ └── scripts │ │ │ │ └── qbr_knightjungle_mission.hsc │ │ │ ├── ralmaden │ │ │ ├── arcade_covenant │ │ │ │ └── scripts │ │ │ │ │ ├── arcade_covenant_mission.hsc │ │ │ │ │ └── design_arcade_covenant.hsc │ │ │ └── arcade_forerunner │ │ │ │ └── scripts │ │ │ │ ├── arcade_forerunner_mission.hsc │ │ │ │ └── m90_arcade.hsc │ │ │ └── v-tidiaz │ │ │ ├── qbr_tort │ │ │ └── scripts │ │ │ │ └── qbr_mission.hsc │ │ │ └── tortoise_trial │ │ │ └── scripts │ │ │ └── tortoise_trial_mission.hsc │ ├── globals │ │ ├── firefight_script.hsc │ │ ├── global_door.hsc │ │ ├── global_extras.hsc │ │ ├── global_firefight_vo_script.hsc │ │ ├── global_insertion.hsc │ │ ├── global_objectives.hsc │ │ ├── global_pelican.hsc │ │ ├── global_phantom.hsc │ │ ├── global_spops_dialog.hsc │ │ └── scripts │ │ │ ├── global_abilities.hsc │ │ │ ├── global_ai.hsc │ │ │ ├── global_audio.hsc │ │ │ ├── global_camera.hsc │ │ │ ├── global_checkpoints.hsc │ │ │ ├── global_cinematic.hsc │ │ │ ├── global_cortana.hsc │ │ │ ├── global_devicemachines.hsc │ │ │ ├── global_dialog.hsc │ │ │ ├── global_lighting.hsc │ │ │ ├── global_logic.hsc │ │ │ ├── global_narrative.hsc │ │ │ └── global_objects.hsc │ ├── levels │ │ ├── design │ │ │ └── ai_gym │ │ │ │ └── scripts │ │ │ │ └── ai_gym_mission.hsc │ │ ├── dev │ │ │ ├── big_map │ │ │ │ └── scripts │ │ │ │ │ ├── big_map.hsc │ │ │ │ │ └── pelican_bay_mission.hsc │ │ │ ├── encounter_tutorials │ │ │ │ └── scripts │ │ │ │ │ └── encounter_tutorials_mission.hsc │ │ │ └── the_knightclub │ │ │ │ └── scripts │ │ │ │ └── the_bishopclub_mission.hsc │ │ ├── dlc │ │ │ ├── ff151_mezzanine │ │ │ │ └── scripts │ │ │ │ │ ├── ff151_mezzanine.hsc │ │ │ │ │ ├── ff151_mezzanine_e6m2_mission.hsc │ │ │ │ │ ├── ff151_mezzanine_e6m2_narrative.hsc │ │ │ │ │ ├── ff151_mezzanine_e8m5_mission.hsc │ │ │ │ │ ├── ff151_mezzanine_e8m5_narrative.hsc │ │ │ │ │ ├── ff151_mezzanine_e9m2_mission.hsc │ │ │ │ │ └── ff151_mezzanine_e9m2_narrative.hsc │ │ │ ├── ff152_vortex │ │ │ │ └── scripts │ │ │ │ │ ├── ff152_vortex.hsc │ │ │ │ │ ├── ff152_vortex_e6_m4.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_ai.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_artillery.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_audio.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_dialog.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_narrative.hsc │ │ │ │ │ ├── ff152_vortex_e8_m2_rendezvous.hsc │ │ │ │ │ └── ff152_vortex_e9_m1.hsc │ │ │ ├── ff153_caverns │ │ │ │ ├── device_machines │ │ │ │ │ └── dm_caverns_towercore_beam_001 │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── dm_caverns_towercore_beam_001.hsc │ │ │ │ └── scripts │ │ │ │ │ ├── ff151_caverns_e10m4_mission.hsc │ │ │ │ │ ├── ff151_caverns_e10m4_narrative.hsc │ │ │ │ │ ├── ff153_caverns.hsc │ │ │ │ │ ├── ff153_caverns_e10_m2.hsc │ │ │ │ │ ├── ff153_caverns_e6_m3_recon.hsc │ │ │ │ │ └── ff153_caverns_e8m3_mission.hsc │ │ │ ├── ff154_hillside │ │ │ │ └── scripts │ │ │ │ │ ├── ff153_hillside_e10_m3_blitzkrieg.hsc │ │ │ │ │ ├── ff154_hillside.hsc │ │ │ │ │ ├── ff154_hillside_e7_m1.hsc │ │ │ │ │ ├── ff154_hillside_e7_m1_ai.hsc │ │ │ │ │ ├── ff154_hillside_e7_m1_ai_areas.hsc │ │ │ │ │ ├── ff154_hillside_e7_m1_audio.hsc │ │ │ │ │ ├── ff154_hillside_e7_m1_dialog.hsc │ │ │ │ │ ├── ff154_hillside_e7_m1_narrative.hsc │ │ │ │ │ ├── ff154_hillside_e8_m1_retake.hsc │ │ │ │ │ └── ff154_hillside_e9_m3.hsc │ │ │ ├── ff155_breach │ │ │ │ └── scripts │ │ │ │ │ ├── ff155_breach.hsc │ │ │ │ │ ├── ff155_breach_e10_m1.hsc │ │ │ │ │ ├── ff155_breach_e10_m5.hsc │ │ │ │ │ └── ff155_breach_e6_m5.hsc │ │ │ └── scripts │ │ │ │ ├── ff_template.hsc │ │ │ │ ├── spops_ai.hsc │ │ │ │ ├── spops_global_script_dlc.hsc │ │ │ │ └── spops_mission.hsc │ │ ├── firefight │ │ │ ├── ff81_courtyard │ │ │ │ └── scripts │ │ │ │ │ ├── ff81_courtyard.hsc │ │ │ │ │ ├── ff81_courtyard_e2_m1.hsc │ │ │ │ │ ├── ff81_courtyard_e2_m1_audio.hsc │ │ │ │ │ ├── ff81_courtyard_e3_m5.hsc │ │ │ │ │ ├── ff81_courtyard_e3_m5_audio.hsc │ │ │ │ │ ├── ff81_courtyard_e5_m1.hsc │ │ │ │ │ ├── ff81_courtyard_e5_m1_audio.hsc │ │ │ │ │ └── ff81_courtyard_narrative.hsc │ │ │ ├── ff82_scurve │ │ │ │ └── scripts │ │ │ │ │ ├── ff82_scurve.hsc │ │ │ │ │ ├── ff82_scurve_e1_m5.hsc │ │ │ │ │ ├── ff82_scurve_e1_m5_audio.hsc │ │ │ │ │ ├── ff82_scurve_e2_m2.hsc │ │ │ │ │ ├── ff82_scurve_e2_m2_audio.hsc │ │ │ │ │ ├── ff82_scurve_e4_m4.hsc │ │ │ │ │ ├── ff82_scurve_e4_m4_audio.hsc │ │ │ │ │ ├── ff82_scurve_e5_m4.hsc │ │ │ │ │ ├── ff82_scurve_e5_m4_audio.hsc │ │ │ │ │ ├── ff82_scurve_narrative.hsc │ │ │ │ │ └── ff82_scurve_vo.hsc │ │ │ ├── ff84_temple │ │ │ │ └── scripts │ │ │ │ │ ├── ff84_temple.hsc │ │ │ │ │ ├── ff84_temple_e1_m2_audio.hsc │ │ │ │ │ ├── ff84_temple_e1_m4.hsc │ │ │ │ │ ├── ff84_temple_e2_m5.hsc │ │ │ │ │ ├── ff84_temple_e2_m5_audio.hsc │ │ │ │ │ ├── ff84_temple_e2m5_narrative.hsc │ │ │ │ │ ├── ff84_temple_e5_m1.hsc │ │ │ │ │ ├── ff84_temple_e5_m1_audio.hsc │ │ │ │ │ ├── ff84_temple_e5_m2.hsc │ │ │ │ │ ├── ff84_temple_e5_m2_audio.hsc │ │ │ │ │ └── ff84_temple_narrative.hsc │ │ │ ├── ff85_island │ │ │ │ └── scripts │ │ │ │ │ └── ff85_island.hsc │ │ │ ├── ff86_sniperalley │ │ │ │ └── scripts │ │ │ │ │ ├── ff86_sniperalley.hsc │ │ │ │ │ ├── ff86_sniperalley_audio.hsc │ │ │ │ │ ├── ff86_sniperalley_e1_m4.hsc │ │ │ │ │ ├── ff86_sniperalley_e1_m4_audio.hsc │ │ │ │ │ ├── ff86_sniperalley_e2_m4.hsc │ │ │ │ │ ├── ff86_sniperalley_e2_m4_audio.hsc │ │ │ │ │ ├── ff86_sniperalley_e4_m1.hsc │ │ │ │ │ ├── ff86_sniperalley_e4_m1_audio.hsc │ │ │ │ │ ├── ff86_sniperalley_narrative.hsc │ │ │ │ │ └── ff86_sniperalley_vo.hsc │ │ │ ├── ff87_chopperbowl │ │ │ │ └── scripts │ │ │ │ │ ├── ff87_chopperbowl.hsc │ │ │ │ │ ├── ff87_chopperbowl_e1_m1_audio.hsc │ │ │ │ │ ├── ff87_chopperbowl_e3_m1.hsc │ │ │ │ │ ├── ff87_chopperbowl_e3_m1_audio.hsc │ │ │ │ │ ├── ff87_chopperbowl_e5m5.hsc │ │ │ │ │ ├── ff87_chopperbowl_e5m5_audio.hsc │ │ │ │ │ ├── ff87_chopperbowl_narrative.hsc │ │ │ │ │ └── ff87_chopperbowl_vo.hsc │ │ │ ├── ff88_horseshoe │ │ │ │ └── scripts │ │ │ │ │ └── ff88_horseshoe.hsc │ │ │ ├── ff90_fortsw │ │ │ │ └── scripts │ │ │ │ │ ├── ff90_e2m3_fortsw_narrative.hsc │ │ │ │ │ ├── ff90_fortsw.hsc │ │ │ │ │ ├── ff90_fortsw_e1m3.hsc │ │ │ │ │ ├── ff90_fortsw_e1m3_audio.hsc │ │ │ │ │ ├── ff90_fortsw_e2m3.hsc │ │ │ │ │ ├── ff90_fortsw_e2m3_audio.hsc │ │ │ │ │ ├── ff90_fortsw_e4m3.hsc │ │ │ │ │ ├── ff90_fortsw_e4m3_audio.hsc │ │ │ │ │ ├── ff90_fortsw_narrative.hsc │ │ │ │ │ └── ff90_fortsw_vo.hsc │ │ │ ├── ff91_complex │ │ │ │ └── scripts │ │ │ │ │ ├── ff91_complex.hsc │ │ │ │ │ ├── ff91_complex_e3_m2.hsc │ │ │ │ │ ├── ff91_complex_e3_m2_audio.hsc │ │ │ │ │ ├── ff91_complex_e4_m5.hsc │ │ │ │ │ ├── ff91_complex_e4_m5_audio.hsc │ │ │ │ │ ├── ff91_complex_e4_m5_narrative.hsc │ │ │ │ │ ├── ff91_complex_narrative.hsc │ │ │ │ │ └── ff91_complex_vo.hsc │ │ │ └── ff92_valhalla │ │ │ │ └── scripts │ │ │ │ ├── ff92_valhalla.hsc │ │ │ │ ├── ff92_valhalla_audio.hsc │ │ │ │ ├── ff92_valhalla_e3_m3.hsc │ │ │ │ ├── ff92_valhalla_e3_m3_audio.hsc │ │ │ │ ├── ff92_valhalla_e3_m4.hsc │ │ │ │ ├── ff92_valhalla_e3_m4_audio.hsc │ │ │ │ ├── ff92_valhalla_e4_m2.hsc │ │ │ │ ├── ff92_valhalla_e4_m2_audio.hsc │ │ │ │ ├── ff92_valhalla_narrative.hsc │ │ │ │ └── ff92_valhalla_vo.hsc │ │ ├── multi │ │ │ ├── ca_warhouse │ │ │ │ └── scripts │ │ │ │ │ └── ca_warhouse_audio.hsc │ │ │ └── wraparound │ │ │ │ └── scripts │ │ │ │ └── wraparound_audio.hsc │ │ ├── reference │ │ │ └── lighting_reference │ │ │ │ └── scripts │ │ │ │ ├── animation_testbed.hsc │ │ │ │ ├── drop_pod_test.hsc │ │ │ │ ├── drop_test.hsc │ │ │ │ ├── lighting_reference_cortana.hsc │ │ │ │ ├── lighting_reference_flood_morph.hsc │ │ │ │ ├── lighting_reference_flood_morph_.hsc │ │ │ │ ├── lighting_reference_francb.hsc │ │ │ │ ├── lighting_reference_gatehouse.hsc │ │ │ │ ├── lighting_reference_steve.hsc │ │ │ │ └── lighting_reference_timwil.hsc │ │ ├── temp │ │ │ ├── brendanw │ │ │ │ └── bel_air │ │ │ │ │ └── scripts │ │ │ │ │ ├── _ai_objective_fragments.hsc │ │ │ │ │ ├── _ai_performance_fragments.hsc │ │ │ │ │ ├── someeruditeandeducatedfellow.hsc │ │ │ │ │ └── unit_tests.hsc │ │ │ ├── gregsn │ │ │ │ └── elevator_of_death │ │ │ │ │ └── scripts │ │ │ │ │ └── elevator_of_death_missions.hsc │ │ │ ├── hsider │ │ │ │ └── obj_playground │ │ │ │ │ └── scripts │ │ │ │ │ └── playground_scripts.hsc │ │ │ ├── kypearso │ │ │ │ └── playground │ │ │ │ │ └── devicemachines │ │ │ │ │ └── farriswheel │ │ │ │ │ └── scripts │ │ │ │ │ └── farriswheel.hsc │ │ │ ├── ralmaden │ │ │ │ └── scalefish │ │ │ │ │ └── scripts │ │ │ │ │ └── scalefish_mission.hsc │ │ │ ├── tom │ │ │ │ └── scripts │ │ │ │ │ └── scripts.hsc │ │ │ └── v-willc │ │ │ │ └── scripts │ │ │ │ ├── ai_gym_mission.hsc │ │ │ │ └── fx_test_level_mission.hsc │ │ ├── test │ │ │ └── fx_testscenarios │ │ │ │ └── pelican_bay_stripped │ │ │ │ └── scripts │ │ │ │ └── fx_test_level.hsc │ │ └── ui │ │ │ └── mainmenu │ │ │ └── scripts │ │ │ └── mainmenu.hsc │ └── objects │ │ ├── props │ │ └── human │ │ │ └── pioneer │ │ │ └── housewares │ │ │ └── ebook_reader │ │ │ ├── ebook_reader_narrative_drop_m10 │ │ │ └── scripts │ │ │ │ └── ebook_reader_narrative_drop_m10.hsc │ │ │ ├── ebook_reader_narrative_drop_m40 │ │ │ └── scripts │ │ │ │ └── ebook_reader_narrative_drop_m40.hsc │ │ │ ├── ebook_reader_narrative_drop_m41 │ │ │ └── scripts │ │ │ │ └── ebook_reader_narrative_drop_m41.hsc │ │ │ ├── ebook_reader_narrative_drop_m60 │ │ │ └── scripts │ │ │ │ └── ebook_reader_narrative_drop_m60.hsc │ │ │ ├── ebook_reader_narrative_drop_m80 │ │ │ └── scripts │ │ │ │ └── ebook_reader_narrative_drop_m80.hsc │ │ │ ├── narrative_drop_m20_cath_ext │ │ │ └── scripts │ │ │ │ └── narrative_drop_m20_cath_ext.hsc │ │ │ └── narrative_drop_m30_forerunner │ │ │ └── scripts │ │ │ └── narrative_drop_m30_forerunner.hsc │ │ └── terminals │ │ └── temp_narrative_drops │ │ └── scripts │ │ └── terminal_narrative_drop_example.hsc │ └── hs_doc.txt ├── Halo 5 Forge ├── 05887.16.06.20.0001-7.main │ ├── AppxManifest.xml │ ├── DSDeployMeta │ │ └── DeploymentMeta.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── bat │ │ └── BugDatastoreMaintenenceTask_05887_16_06_20_0001-7_6647936.bat │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_interactive_generator.lua │ │ │ │ ├── fo_tutorial_launcher.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ └── ms_grav_lift_a.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ └── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── version.txt │ └── xboxservices.config ├── 07193.16.08.15.2011-0.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_script_ui.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── colosseum_megalazer_control.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_towers_capsule.lua │ │ │ │ ├── dest_towers_elevator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dest_towers_sandworm.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_interactive_generator.lua │ │ │ │ ├── fo_tutorial_launcher.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── pistons_door1_control.lua │ │ │ │ ├── pistons_door2_control.lua │ │ │ │ ├── pistons_door3_control.lua │ │ │ │ ├── pistons_door4_control.lua │ │ │ │ └── voxel.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── fo01_terrain_alpine │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ │ ├── fo02_glacier │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo02_glacier.lua │ │ │ │ ├── fo03_space │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo03_space.lua │ │ │ │ ├── fo04_ocean │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo04_ocean.lua │ │ │ │ ├── ng20_sa_towers │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ │ ├── ng23_ss_skew │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng25_ss_pistons │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ ├── ng42r_acropolis_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── highrise_remix.lua │ │ │ │ ├── ng43_midship │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43_midship_script.lua │ │ │ │ ├── ng43r_midship_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ │ ├── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ │ └── ng93_haven │ │ │ │ │ └── scripts │ │ │ │ │ └── ng93_haven.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── datamine │ │ └── CellEventsSchema │ │ │ ├── Cpp │ │ │ ├── eCellCategory_ai.bond │ │ │ ├── eCellCategory_composer.bond │ │ │ ├── eCellCategory_damage.bond │ │ │ ├── eCellCategory_forge.bond │ │ │ ├── eCellCategory_haloscript.bond │ │ │ ├── eCellCategory_legacyLog.bond │ │ │ ├── eCellCategory_levels.bond │ │ │ ├── eCellCategory_match.bond │ │ │ ├── eCellCategory_netlifecycle.bond │ │ │ ├── eCellCategory_netsimulation.bond │ │ │ ├── eCellCategory_netvoice.bond │ │ │ ├── eCellCategory_networking.bond │ │ │ ├── eCellCategory_performance.bond │ │ │ ├── eCellCategory_physics.bond │ │ │ ├── eCellCategory_player.bond │ │ │ ├── eCellCategory_render.bond │ │ │ ├── eCellCategory_requisition.bond │ │ │ ├── eCellCategory_sandbox.bond │ │ │ ├── eCellCategory_services.bond │ │ │ ├── eCellCategory_sound.bond │ │ │ ├── eCellCategory_system.bond │ │ │ ├── eCellCategory_ui.bond │ │ │ └── eCellCategory_unit.bond │ │ │ └── CustomBond │ │ │ └── GameEvents.bond │ ├── version.txt │ └── xboxservices.config ├── 07475.16.09.01.0000-1.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_script_ui.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── colosseum_megalazer_control.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_towers_capsule.lua │ │ │ │ ├── dest_towers_elevator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dest_towers_sandworm.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_interactive_generator.lua │ │ │ │ ├── fo_tutorial_launcher.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── pistons_door1_control.lua │ │ │ │ ├── pistons_door2_control.lua │ │ │ │ ├── pistons_door3_control.lua │ │ │ │ ├── pistons_door4_control.lua │ │ │ │ └── voxel.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── fo01_terrain_alpine │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ │ ├── fo02_glacier │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo02_glacier.lua │ │ │ │ ├── fo03_space │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo03_space.lua │ │ │ │ ├── fo04_ocean │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo04_ocean.lua │ │ │ │ ├── ng20_sa_towers │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ │ ├── ng23_ss_skew │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng25_ss_pistons │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ ├── ng42r_acropolis_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── highrise_remix.lua │ │ │ │ ├── ng43_midship │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43_midship_script.lua │ │ │ │ ├── ng43r_midship_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ │ ├── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ │ └── ng93_haven │ │ │ │ │ └── scripts │ │ │ │ │ └── ng93_haven.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── datamine │ │ └── CellEventsSchema │ │ │ ├── Cpp │ │ │ ├── eCellCategory_ai.bond │ │ │ ├── eCellCategory_composer.bond │ │ │ ├── eCellCategory_damage.bond │ │ │ ├── eCellCategory_forge.bond │ │ │ ├── eCellCategory_haloscript.bond │ │ │ ├── eCellCategory_legacyLog.bond │ │ │ ├── eCellCategory_levels.bond │ │ │ ├── eCellCategory_match.bond │ │ │ ├── eCellCategory_netlifecycle.bond │ │ │ ├── eCellCategory_netsimulation.bond │ │ │ ├── eCellCategory_netvoice.bond │ │ │ ├── eCellCategory_networking.bond │ │ │ ├── eCellCategory_performance.bond │ │ │ ├── eCellCategory_physics.bond │ │ │ ├── eCellCategory_player.bond │ │ │ ├── eCellCategory_render.bond │ │ │ ├── eCellCategory_requisition.bond │ │ │ ├── eCellCategory_sandbox.bond │ │ │ ├── eCellCategory_services.bond │ │ │ ├── eCellCategory_sound.bond │ │ │ ├── eCellCategory_system.bond │ │ │ ├── eCellCategory_ui.bond │ │ │ └── eCellCategory_unit.bond │ │ │ └── CustomBond │ │ │ └── GameEvents.bond │ ├── version.txt │ └── xboxservices.config ├── 08018.16.10.08.0607-0.rtx1609 │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_script_ui.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── colosseum_megalazer_control.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_towers_capsule.lua │ │ │ │ ├── dest_towers_elevator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dest_towers_sandworm.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_interactive_generator.lua │ │ │ │ ├── fo_tutorial_launcher.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── pistons_door1_control.lua │ │ │ │ ├── pistons_door2_control.lua │ │ │ │ ├── pistons_door3_control.lua │ │ │ │ ├── pistons_door4_control.lua │ │ │ │ └── voxel.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── fo01_terrain_alpine │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ │ ├── fo02_glacier │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo02_glacier.lua │ │ │ │ ├── fo03_space │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo03_space.lua │ │ │ │ ├── fo04_ocean │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo04_ocean.lua │ │ │ │ ├── ng20_sa_towers │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ │ ├── ng23_ss_skew │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng25_ss_pistons │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ ├── ng42r_acropolis_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── highrise_remix.lua │ │ │ │ ├── ng43_midship │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43_midship_script.lua │ │ │ │ ├── ng43r_midship_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ │ ├── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ │ └── ng93_haven │ │ │ │ │ └── scripts │ │ │ │ │ └── ng93_haven.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── datamine │ │ └── CellEventsSchema │ │ │ ├── Cpp │ │ │ ├── eCellCategory_ai.bond │ │ │ ├── eCellCategory_composer.bond │ │ │ ├── eCellCategory_damage.bond │ │ │ ├── eCellCategory_forge.bond │ │ │ ├── eCellCategory_haloscript.bond │ │ │ ├── eCellCategory_legacyLog.bond │ │ │ ├── eCellCategory_levels.bond │ │ │ ├── eCellCategory_match.bond │ │ │ ├── eCellCategory_netlifecycle.bond │ │ │ ├── eCellCategory_netsimulation.bond │ │ │ ├── eCellCategory_netvoice.bond │ │ │ ├── eCellCategory_networking.bond │ │ │ ├── eCellCategory_performance.bond │ │ │ ├── eCellCategory_physics.bond │ │ │ ├── eCellCategory_player.bond │ │ │ ├── eCellCategory_render.bond │ │ │ ├── eCellCategory_requisition.bond │ │ │ ├── eCellCategory_sandbox.bond │ │ │ ├── eCellCategory_services.bond │ │ │ ├── eCellCategory_sound.bond │ │ │ ├── eCellCategory_system.bond │ │ │ ├── eCellCategory_ui.bond │ │ │ └── eCellCategory_unit.bond │ │ │ └── CustomBond │ │ │ └── GameEvents.bond │ ├── version.txt │ └── xboxservices.config ├── 08590.16.11.25.1415-4.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── bat │ │ └── BugDatastoreMaintenenceTask_08590_16_11_25_1415-4_7687217.bat │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_script_ui.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── colosseum_megalazer_control.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_towers_capsule.lua │ │ │ │ ├── dest_towers_elevator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dest_towers_sandworm.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_interactive_generator.lua │ │ │ │ ├── fo_tutorial_launcher.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── pistons_door1_control.lua │ │ │ │ ├── pistons_door2_control.lua │ │ │ │ ├── pistons_door3_control.lua │ │ │ │ ├── pistons_door4_control.lua │ │ │ │ └── voxel.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── fo01_terrain_alpine │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ │ ├── fo02_glacier │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo02_glacier.lua │ │ │ │ ├── fo03_space │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo03_space.lua │ │ │ │ ├── fo04_ocean │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo04_ocean.lua │ │ │ │ ├── fo05_desert │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo05_desert.lua │ │ │ │ ├── fo06_deepsea │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo06_deepsea.lua │ │ │ │ ├── ng20_sa_towers │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ │ ├── ng23_ss_skew │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng25_ss_pistons │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ ├── ng42r_acropolis_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── highrise_remix.lua │ │ │ │ ├── ng43_midship │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43_midship_script.lua │ │ │ │ ├── ng43r_midship_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ │ ├── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ │ └── ng93_haven │ │ │ │ │ └── scripts │ │ │ │ │ └── ng93_haven.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── datamine │ │ └── CellEventsSchema │ │ │ ├── Cpp │ │ │ ├── eCellCategory_ai.bond │ │ │ ├── eCellCategory_composer.bond │ │ │ ├── eCellCategory_damage.bond │ │ │ ├── eCellCategory_forge.bond │ │ │ ├── eCellCategory_haloscript.bond │ │ │ ├── eCellCategory_legacyLog.bond │ │ │ ├── eCellCategory_levels.bond │ │ │ ├── eCellCategory_match.bond │ │ │ ├── eCellCategory_netlifecycle.bond │ │ │ ├── eCellCategory_netsimulation.bond │ │ │ ├── eCellCategory_netvoice.bond │ │ │ ├── eCellCategory_networking.bond │ │ │ ├── eCellCategory_performance.bond │ │ │ ├── eCellCategory_physics.bond │ │ │ ├── eCellCategory_player.bond │ │ │ ├── eCellCategory_render.bond │ │ │ ├── eCellCategory_requisition.bond │ │ │ ├── eCellCategory_sandbox.bond │ │ │ ├── eCellCategory_services.bond │ │ │ ├── eCellCategory_sound.bond │ │ │ ├── eCellCategory_system.bond │ │ │ ├── eCellCategory_ui.bond │ │ │ └── eCellCategory_unit.bond │ │ │ └── CustomBond │ │ │ └── GameEvents.bond │ ├── version.txt │ └── xboxservices.config ├── 09353.17.02.16.0957-2.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── bat │ │ └── BugDatastoreMaintenenceTask_09353_17_02_16_0957-2_8310120.bat │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_script_ui.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── colosseum_megalazer_control.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_towers_capsule.lua │ │ │ │ ├── dest_towers_elevator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dest_towers_sandworm.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_interactive_generator.lua │ │ │ │ ├── fo_tutorial_launcher.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── pistons_door1_control.lua │ │ │ │ ├── pistons_door2_control.lua │ │ │ │ ├── pistons_door3_control.lua │ │ │ │ ├── pistons_door4_control.lua │ │ │ │ └── voxel.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── fo01_terrain_alpine │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ │ ├── fo02_glacier │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo02_glacier.lua │ │ │ │ ├── fo03_space │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo03_space.lua │ │ │ │ ├── fo04_ocean │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo04_ocean.lua │ │ │ │ ├── fo05_desert │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo05_desert.lua │ │ │ │ ├── fo06_deepsea │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo06_deepsea.lua │ │ │ │ ├── ng20_sa_towers │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ │ ├── ng23_ss_skew │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng25_ss_pistons │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ ├── ng42r_acropolis_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── highrise_remix.lua │ │ │ │ ├── ng43_midship │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43_midship_script.lua │ │ │ │ ├── ng43r_midship_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ │ ├── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ │ └── ng93_haven │ │ │ │ │ └── scripts │ │ │ │ │ └── ng93_haven.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── datamine │ │ └── CellEventsSchema │ │ │ ├── Cpp │ │ │ ├── eCellCategory_ai.bond │ │ │ ├── eCellCategory_composer.bond │ │ │ ├── eCellCategory_damage.bond │ │ │ ├── eCellCategory_forge.bond │ │ │ ├── eCellCategory_haloscript.bond │ │ │ ├── eCellCategory_legacyLog.bond │ │ │ ├── eCellCategory_levels.bond │ │ │ ├── eCellCategory_match.bond │ │ │ ├── eCellCategory_netlifecycle.bond │ │ │ ├── eCellCategory_netsimulation.bond │ │ │ ├── eCellCategory_netvoice.bond │ │ │ ├── eCellCategory_networking.bond │ │ │ ├── eCellCategory_performance.bond │ │ │ ├── eCellCategory_physics.bond │ │ │ ├── eCellCategory_player.bond │ │ │ ├── eCellCategory_render.bond │ │ │ ├── eCellCategory_requisition.bond │ │ │ ├── eCellCategory_sandbox.bond │ │ │ ├── eCellCategory_services.bond │ │ │ ├── eCellCategory_sound.bond │ │ │ ├── eCellCategory_system.bond │ │ │ ├── eCellCategory_ui.bond │ │ │ └── eCellCategory_unit.bond │ │ │ └── CustomBond │ │ │ └── GameEvents.bond │ ├── version.txt │ └── xboxservices.config ├── 10353.17.06.08.0000-1.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_script_ui.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── colosseum_megalazer_control.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_towers_capsule.lua │ │ │ │ ├── dest_towers_elevator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dest_towers_sandworm.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_tutorial_launcher.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── pistons_door1_control.lua │ │ │ │ ├── pistons_door2_control.lua │ │ │ │ ├── pistons_door3_control.lua │ │ │ │ ├── pistons_door4_control.lua │ │ │ │ └── voxel.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── fo01_terrain_alpine │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ │ ├── fo02_glacier │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo02_glacier.lua │ │ │ │ ├── fo03_space │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo03_space.lua │ │ │ │ ├── fo04_ocean │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo04_ocean.lua │ │ │ │ ├── fo05_desert │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo05_desert.lua │ │ │ │ ├── fo06_deepsea │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo06_deepsea.lua │ │ │ │ ├── ng20_sa_towers │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ │ ├── ng23_ss_skew │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng25_ss_pistons │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ ├── ng42r_acropolis_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── highrise_remix.lua │ │ │ │ ├── ng43_midship │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43_midship_script.lua │ │ │ │ ├── ng43r_midship_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ │ ├── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ │ └── ng93_haven │ │ │ │ │ └── scripts │ │ │ │ │ └── ng93_haven.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── datamine │ │ └── CellEventsSchema │ │ │ ├── Cpp │ │ │ ├── eCellCategory_ai.bond │ │ │ ├── eCellCategory_composer.bond │ │ │ ├── eCellCategory_damage.bond │ │ │ ├── eCellCategory_forge.bond │ │ │ ├── eCellCategory_haloscript.bond │ │ │ ├── eCellCategory_legacyLog.bond │ │ │ ├── eCellCategory_levels.bond │ │ │ ├── eCellCategory_match.bond │ │ │ ├── eCellCategory_netlifecycle.bond │ │ │ ├── eCellCategory_netsimulation.bond │ │ │ ├── eCellCategory_netvoice.bond │ │ │ ├── eCellCategory_networking.bond │ │ │ ├── eCellCategory_performance.bond │ │ │ ├── eCellCategory_physics.bond │ │ │ ├── eCellCategory_player.bond │ │ │ ├── eCellCategory_render.bond │ │ │ ├── eCellCategory_requisition.bond │ │ │ ├── eCellCategory_sandbox.bond │ │ │ ├── eCellCategory_services.bond │ │ │ ├── eCellCategory_sound.bond │ │ │ ├── eCellCategory_system.bond │ │ │ ├── eCellCategory_ui.bond │ │ │ └── eCellCategory_unit.bond │ │ │ └── CustomBond │ │ │ └── GameEvents.bond │ ├── version.txt │ └── xboxservices.config ├── 11587.17.10.27.0000-1.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_script_ui.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── colosseum_megalazer_control.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_towers_capsule.lua │ │ │ │ ├── dest_towers_elevator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dest_towers_sandworm.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_tutorial_launcher.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── pistons_door1_control.lua │ │ │ │ ├── pistons_door2_control.lua │ │ │ │ ├── pistons_door3_control.lua │ │ │ │ ├── pistons_door4_control.lua │ │ │ │ └── voxel.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── fo01_terrain_alpine │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ │ ├── fo02_glacier │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo02_glacier.lua │ │ │ │ ├── fo03_space │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo03_space.lua │ │ │ │ ├── fo04_ocean │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo04_ocean.lua │ │ │ │ ├── fo05_desert │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo05_desert.lua │ │ │ │ ├── fo06_deepsea │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo06_deepsea.lua │ │ │ │ ├── ng20_sa_towers │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ │ ├── ng23_ss_skew │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng25_ss_pistons │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ ├── ng42r_acropolis_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── highrise_remix.lua │ │ │ │ ├── ng43_midship │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43_midship_script.lua │ │ │ │ ├── ng43r_midship_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ │ ├── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ │ └── ng93_haven │ │ │ │ │ └── scripts │ │ │ │ │ └── ng93_haven.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── datamine │ │ └── CellEventsSchema │ │ │ ├── Cpp │ │ │ ├── eCellCategory_ai.bond │ │ │ ├── eCellCategory_composer.bond │ │ │ ├── eCellCategory_damage.bond │ │ │ ├── eCellCategory_forge.bond │ │ │ ├── eCellCategory_haloscript.bond │ │ │ ├── eCellCategory_legacyLog.bond │ │ │ ├── eCellCategory_levels.bond │ │ │ ├── eCellCategory_match.bond │ │ │ ├── eCellCategory_netlifecycle.bond │ │ │ ├── eCellCategory_netsimulation.bond │ │ │ ├── eCellCategory_netvoice.bond │ │ │ ├── eCellCategory_networking.bond │ │ │ ├── eCellCategory_performance.bond │ │ │ ├── eCellCategory_physics.bond │ │ │ ├── eCellCategory_player.bond │ │ │ ├── eCellCategory_render.bond │ │ │ ├── eCellCategory_requisition.bond │ │ │ ├── eCellCategory_sandbox.bond │ │ │ ├── eCellCategory_services.bond │ │ │ ├── eCellCategory_sound.bond │ │ │ ├── eCellCategory_system.bond │ │ │ ├── eCellCategory_ui.bond │ │ │ └── eCellCategory_unit.bond │ │ │ └── CustomBond │ │ │ └── GameEvents.bond │ ├── version.txt │ └── xboxservices.config ├── 12021.17.12.11.0926-1.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_script_ui.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── colosseum_megalazer_control.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_towers_capsule.lua │ │ │ │ ├── dest_towers_elevator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dest_towers_sandworm.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_tutorial_launcher.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── pistons_door1_control.lua │ │ │ │ ├── pistons_door2_control.lua │ │ │ │ ├── pistons_door3_control.lua │ │ │ │ ├── pistons_door4_control.lua │ │ │ │ └── voxel.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── fo01_terrain_alpine │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ │ ├── fo02_glacier │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo02_glacier.lua │ │ │ │ ├── fo03_space │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo03_space.lua │ │ │ │ ├── fo04_ocean │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo04_ocean.lua │ │ │ │ ├── fo05_desert │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo05_desert.lua │ │ │ │ ├── fo06_deepsea │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo06_deepsea.lua │ │ │ │ ├── ng20_sa_towers │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ │ ├── ng23_ss_skew │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng25_ss_pistons │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ ├── ng42r_acropolis_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── highrise_remix.lua │ │ │ │ ├── ng43_midship │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43_midship_script.lua │ │ │ │ ├── ng43r_midship_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ │ ├── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ │ └── ng93_haven │ │ │ │ │ └── scripts │ │ │ │ │ └── ng93_haven.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── datamine │ │ └── CellEventsSchema │ │ │ ├── Cpp │ │ │ ├── eCellCategory_ai.bond │ │ │ ├── eCellCategory_composer.bond │ │ │ ├── eCellCategory_damage.bond │ │ │ ├── eCellCategory_forge.bond │ │ │ ├── eCellCategory_haloscript.bond │ │ │ ├── eCellCategory_legacyLog.bond │ │ │ ├── eCellCategory_levels.bond │ │ │ ├── eCellCategory_match.bond │ │ │ ├── eCellCategory_netlifecycle.bond │ │ │ ├── eCellCategory_netsimulation.bond │ │ │ ├── eCellCategory_netvoice.bond │ │ │ ├── eCellCategory_networking.bond │ │ │ ├── eCellCategory_performance.bond │ │ │ ├── eCellCategory_physics.bond │ │ │ ├── eCellCategory_player.bond │ │ │ ├── eCellCategory_render.bond │ │ │ ├── eCellCategory_requisition.bond │ │ │ ├── eCellCategory_sandbox.bond │ │ │ ├── eCellCategory_services.bond │ │ │ ├── eCellCategory_sound.bond │ │ │ ├── eCellCategory_system.bond │ │ │ ├── eCellCategory_ui.bond │ │ │ └── eCellCategory_unit.bond │ │ │ └── CustomBond │ │ │ └── GameEvents.bond │ ├── version.txt │ └── xboxservices.config └── 12719.18.03.06.0000-1.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── data │ ├── globals │ │ ├── arcade_defaultevents.lua │ │ ├── arcade_defaultmedalevents.lua │ │ ├── campaign_defaultevents.lua │ │ └── scripts │ │ │ ├── global_abilities.lua │ │ │ ├── global_ai.lua │ │ │ ├── global_audio.lua │ │ │ ├── global_camera.lua │ │ │ ├── global_checkpoints.lua │ │ │ ├── global_cinematic.lua │ │ │ ├── global_collectibles.lua │ │ │ ├── global_data_cache.lua │ │ │ ├── global_debug.lua │ │ │ ├── global_devicemachines.lua │ │ │ ├── global_dialog.lua │ │ │ ├── global_effects.lua │ │ │ ├── global_goals.lua │ │ │ ├── global_lighting.lua │ │ │ ├── global_loading.lua │ │ │ ├── global_logic.lua │ │ │ ├── global_missions.lua │ │ │ ├── global_musketeers.lua │ │ │ ├── global_narrative.lua │ │ │ ├── global_object_events.lua │ │ │ ├── global_objects.lua │ │ │ ├── global_physics.lua │ │ │ ├── global_players.lua │ │ │ ├── global_prototype.lua │ │ │ ├── global_randomized_bank.lua │ │ │ ├── global_script_ui.lua │ │ │ ├── global_scripts.lua │ │ │ ├── global_table.lua │ │ │ ├── global_tutorial_table.lua │ │ │ ├── global_tutorials.lua │ │ │ ├── global_unique_bg_chatter.lua │ │ │ ├── global_zoneset.lua │ │ │ └── prototypes │ │ │ ├── coliseum_killroy_001.lua │ │ │ ├── colosseum_megalazer_control.lua │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ ├── dest_highrise_generator.lua │ │ │ ├── dest_towers_capsule.lua │ │ │ ├── dest_towers_elevator.lua │ │ │ ├── dest_towers_hatch.lua │ │ │ ├── dest_towers_platform.lua │ │ │ ├── dest_towers_sandworm.lua │ │ │ ├── dm_piston_large.lua │ │ │ ├── dm_piston_medium.lua │ │ │ ├── dm_piston_small.lua │ │ │ ├── dm_piston_tiny.lua │ │ │ ├── dm_skew_ramp_001.lua │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ ├── fo_fore_grav_lift.lua │ │ │ ├── fo_fore_man_cannon.lua │ │ │ ├── fo_fore_teleporter.lua │ │ │ ├── fo_interactive_capacitor.lua │ │ │ ├── fo_tutorial_launcher.lua │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ ├── fo_unsc_teleporter.lua │ │ │ ├── ms_grav_lift_a.lua │ │ │ ├── pistons_door1_control.lua │ │ │ ├── pistons_door2_control.lua │ │ │ ├── pistons_door3_control.lua │ │ │ ├── pistons_door4_control.lua │ │ │ └── voxel.lua │ ├── levels │ │ ├── multi │ │ │ ├── fo01_terrain_alpine │ │ │ │ └── scripts │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ ├── fo02_glacier │ │ │ │ └── scripts │ │ │ │ │ └── fo02_glacier.lua │ │ │ ├── fo03_space │ │ │ │ └── scripts │ │ │ │ │ └── fo03_space.lua │ │ │ ├── fo04_ocean │ │ │ │ └── scripts │ │ │ │ │ └── fo04_ocean.lua │ │ │ ├── fo05_desert │ │ │ │ └── scripts │ │ │ │ │ └── fo05_desert.lua │ │ │ ├── fo06_deepsea │ │ │ │ └── scripts │ │ │ │ │ └── fo06_deepsea.lua │ │ │ ├── ng20_sa_towers │ │ │ │ └── scripts │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ └── scripts │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ ├── ng23_ss_skew │ │ │ │ └── scripts │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ └── scripts │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ ├── ng25_ss_pistons │ │ │ │ └── scripts │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ └── scripts │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ ├── ng42_acropolis │ │ │ │ └── scripts │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ ├── ng42r_acropolis_remix │ │ │ │ └── scripts │ │ │ │ │ └── highrise_remix.lua │ │ │ ├── ng43_midship │ │ │ │ └── scripts │ │ │ │ │ └── ng43_midship_script.lua │ │ │ ├── ng43r_midship_remix │ │ │ │ └── scripts │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ ├── ng50_ss_coliseum │ │ │ │ └── scripts │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ └── scripts │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ └── ng93_haven │ │ │ │ └── scripts │ │ │ │ └── ng93_haven.lua │ │ └── ui │ │ │ ├── mainmenu │ │ │ └── scripts │ │ │ │ └── mainmenu_startup.lua │ │ │ └── spartan_render │ │ │ └── scripts │ │ │ └── spartan_render.lua │ └── multiplayer │ │ └── lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── runevents.lua │ │ ├── serializeevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua │ ├── datamine │ └── CellEventsSchema │ │ ├── Cpp │ │ ├── eCellCategory_ai.bond │ │ ├── eCellCategory_composer.bond │ │ ├── eCellCategory_damage.bond │ │ ├── eCellCategory_forge.bond │ │ ├── eCellCategory_haloscript.bond │ │ ├── eCellCategory_legacyLog.bond │ │ ├── eCellCategory_levels.bond │ │ ├── eCellCategory_match.bond │ │ ├── eCellCategory_netlifecycle.bond │ │ ├── eCellCategory_netsimulation.bond │ │ ├── eCellCategory_netvoice.bond │ │ ├── eCellCategory_networking.bond │ │ ├── eCellCategory_performance.bond │ │ ├── eCellCategory_physics.bond │ │ ├── eCellCategory_player.bond │ │ ├── eCellCategory_render.bond │ │ ├── eCellCategory_requisition.bond │ │ ├── eCellCategory_sandbox.bond │ │ ├── eCellCategory_services.bond │ │ ├── eCellCategory_sound.bond │ │ ├── eCellCategory_system.bond │ │ ├── eCellCategory_ui.bond │ │ └── eCellCategory_unit.bond │ │ └── CustomBond │ │ └── GameEvents.bond │ ├── version.txt │ └── xboxservices.config ├── Halo 5 Guardians Local Server ├── 96053.17.10.22.2300-1.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ ├── global_phantom.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_script_ui.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── arc_vista_rocket.lua │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── colosseum_megalazer_control.lua │ │ │ │ ├── cov_drop_pod.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_forp_fusioncoil.lua │ │ │ │ ├── dest_highrise_capacitor.lua │ │ │ │ ├── dest_highrise_capacitor2.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_shoulderbashwall.lua │ │ │ │ ├── dest_towers_capsule.lua │ │ │ │ ├── dest_towers_elevator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dest_towers_sandworm.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_interactive_generator.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ ├── grunt_mech.lua │ │ │ │ ├── knight_taint.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── osiris_cov_squad_drop_pod.lua │ │ │ │ ├── pistons_door1_control.lua │ │ │ │ ├── pistons_door2_control.lua │ │ │ │ ├── pistons_door3_control.lua │ │ │ │ ├── pistons_door4_control.lua │ │ │ │ ├── powercore_a_dm.lua │ │ │ │ ├── slipspace_portal.lua │ │ │ │ ├── slipspace_portal_guardian.lua │ │ │ │ ├── storm_anti_infantry_turret.lua │ │ │ │ ├── terminal_vehicles_dm.lua │ │ │ │ ├── unsc_droppod_mover.lua │ │ │ │ └── voxel.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── fo01_terrain_alpine │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ │ ├── fo02_glacier │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo02_glacier.lua │ │ │ │ ├── fo03_space │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo03_space.lua │ │ │ │ ├── fo04_ocean │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo04_ocean.lua │ │ │ │ ├── fo05_desert │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo05_desert.lua │ │ │ │ ├── fo06_deepsea │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo06_deepsea.lua │ │ │ │ ├── ng101_wz_arc │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng101_wz_arc.lua │ │ │ │ ├── ng20_sa_towers │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ │ ├── ng23_ss_skew │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng25_ss_pistons │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ ├── ng42r_acropolis_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── highrise_remix.lua │ │ │ │ ├── ng43_midship │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43_midship_script.lua │ │ │ │ ├── ng43r_midship_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ │ ├── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ │ └── ng93_haven │ │ │ │ │ └── scripts │ │ │ │ │ └── ng93_haven.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── datamine │ │ └── CellEventsSchema │ │ │ ├── Cpp │ │ │ ├── eCellCategory_ai.bond │ │ │ ├── eCellCategory_composer.bond │ │ │ ├── eCellCategory_damage.bond │ │ │ ├── eCellCategory_forge.bond │ │ │ ├── eCellCategory_haloscript.bond │ │ │ ├── eCellCategory_legacyLog.bond │ │ │ ├── eCellCategory_levels.bond │ │ │ ├── eCellCategory_match.bond │ │ │ ├── eCellCategory_netlifecycle.bond │ │ │ ├── eCellCategory_netsimulation.bond │ │ │ ├── eCellCategory_netvoice.bond │ │ │ ├── eCellCategory_networking.bond │ │ │ ├── eCellCategory_performance.bond │ │ │ ├── eCellCategory_physics.bond │ │ │ ├── eCellCategory_player.bond │ │ │ ├── eCellCategory_render.bond │ │ │ ├── eCellCategory_requisition.bond │ │ │ ├── eCellCategory_sandbox.bond │ │ │ ├── eCellCategory_services.bond │ │ │ ├── eCellCategory_sound.bond │ │ │ ├── eCellCategory_system.bond │ │ │ ├── eCellCategory_ui.bond │ │ │ └── eCellCategory_unit.bond │ │ │ └── CustomBond │ │ │ └── GameEvents.bond │ └── version.txt ├── 96490.17.12.07.2354-1.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── data │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ ├── global_phantom.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_script_ui.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── arc_vista_rocket.lua │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── colosseum_megalazer_control.lua │ │ │ │ ├── cov_drop_pod.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_forp_fusioncoil.lua │ │ │ │ ├── dest_highrise_capacitor.lua │ │ │ │ ├── dest_highrise_capacitor2.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_shoulderbashwall.lua │ │ │ │ ├── dest_towers_capsule.lua │ │ │ │ ├── dest_towers_elevator.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dest_towers_platform.lua │ │ │ │ ├── dest_towers_sandworm.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_medium.lua │ │ │ │ ├── dm_piston_small.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_fore_teleporter.lua │ │ │ │ ├── fo_interactive_capacitor.lua │ │ │ │ ├── fo_interactive_generator.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── fo_unsc_teleporter.lua │ │ │ │ ├── grunt_mech.lua │ │ │ │ ├── knight_taint.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── osiris_cov_squad_drop_pod.lua │ │ │ │ ├── pistons_door1_control.lua │ │ │ │ ├── pistons_door2_control.lua │ │ │ │ ├── pistons_door3_control.lua │ │ │ │ ├── pistons_door4_control.lua │ │ │ │ ├── powercore_a_dm.lua │ │ │ │ ├── slipspace_portal.lua │ │ │ │ ├── slipspace_portal_guardian.lua │ │ │ │ ├── storm_anti_infantry_turret.lua │ │ │ │ ├── terminal_vehicles_dm.lua │ │ │ │ ├── unsc_droppod_mover.lua │ │ │ │ └── voxel.lua │ │ ├── levels │ │ │ ├── multi │ │ │ │ ├── fo01_terrain_alpine │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ │ ├── fo02_glacier │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo02_glacier.lua │ │ │ │ ├── fo03_space │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo03_space.lua │ │ │ │ ├── fo04_ocean │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo04_ocean.lua │ │ │ │ ├── fo05_desert │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo05_desert.lua │ │ │ │ ├── fo06_deepsea │ │ │ │ │ └── scripts │ │ │ │ │ │ └── fo06_deepsea.lua │ │ │ │ ├── ng101_wz_arc │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng101_wz_arc.lua │ │ │ │ ├── ng20_sa_towers │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ │ ├── ng23_ss_skew │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ │ ├── ng25_ss_pistons │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ ├── ng42r_acropolis_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── highrise_remix.lua │ │ │ │ ├── ng43_midship │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43_midship_script.lua │ │ │ │ ├── ng43r_midship_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ │ ├── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ │ └── ng93_haven │ │ │ │ │ └── scripts │ │ │ │ │ └── ng93_haven.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ ├── datamine │ │ └── CellEventsSchema │ │ │ ├── Cpp │ │ │ ├── eCellCategory_ai.bond │ │ │ ├── eCellCategory_composer.bond │ │ │ ├── eCellCategory_damage.bond │ │ │ ├── eCellCategory_forge.bond │ │ │ ├── eCellCategory_haloscript.bond │ │ │ ├── eCellCategory_legacyLog.bond │ │ │ ├── eCellCategory_levels.bond │ │ │ ├── eCellCategory_match.bond │ │ │ ├── eCellCategory_netlifecycle.bond │ │ │ ├── eCellCategory_netsimulation.bond │ │ │ ├── eCellCategory_netvoice.bond │ │ │ ├── eCellCategory_networking.bond │ │ │ ├── eCellCategory_performance.bond │ │ │ ├── eCellCategory_physics.bond │ │ │ ├── eCellCategory_player.bond │ │ │ ├── eCellCategory_render.bond │ │ │ ├── eCellCategory_requisition.bond │ │ │ ├── eCellCategory_sandbox.bond │ │ │ ├── eCellCategory_services.bond │ │ │ ├── eCellCategory_sound.bond │ │ │ ├── eCellCategory_system.bond │ │ │ ├── eCellCategory_ui.bond │ │ │ └── eCellCategory_unit.bond │ │ │ └── CustomBond │ │ │ └── GameEvents.bond │ └── version.txt └── 97230.18.02.27.2300-1.main │ ├── AppxManifest.xml │ ├── Networkmanifest.xml │ ├── README.md │ ├── data │ ├── globals │ │ ├── arcade_defaultevents.lua │ │ ├── arcade_defaultmedalevents.lua │ │ ├── campaign_defaultevents.lua │ │ ├── global_phantom.lua │ │ └── scripts │ │ │ ├── global_abilities.lua │ │ │ ├── global_ai.lua │ │ │ ├── global_audio.lua │ │ │ ├── global_camera.lua │ │ │ ├── global_checkpoints.lua │ │ │ ├── global_cinematic.lua │ │ │ ├── global_collectibles.lua │ │ │ ├── global_data_cache.lua │ │ │ ├── global_debug.lua │ │ │ ├── global_devicemachines.lua │ │ │ ├── global_dialog.lua │ │ │ ├── global_effects.lua │ │ │ ├── global_goals.lua │ │ │ ├── global_lighting.lua │ │ │ ├── global_loading.lua │ │ │ ├── global_logic.lua │ │ │ ├── global_missions.lua │ │ │ ├── global_musketeers.lua │ │ │ ├── global_narrative.lua │ │ │ ├── global_object_events.lua │ │ │ ├── global_objects.lua │ │ │ ├── global_physics.lua │ │ │ ├── global_players.lua │ │ │ ├── global_prototype.lua │ │ │ ├── global_randomized_bank.lua │ │ │ ├── global_script_ui.lua │ │ │ ├── global_scripts.lua │ │ │ ├── global_table.lua │ │ │ ├── global_tutorial_table.lua │ │ │ ├── global_tutorials.lua │ │ │ ├── global_unique_bg_chatter.lua │ │ │ ├── global_zoneset.lua │ │ │ └── prototypes │ │ │ ├── arc_vista_rocket.lua │ │ │ ├── coliseum_killroy_001.lua │ │ │ ├── colosseum_megalazer_control.lua │ │ │ ├── cov_drop_pod.lua │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ ├── dest_forp_fusioncoil.lua │ │ │ ├── dest_highrise_capacitor.lua │ │ │ ├── dest_highrise_capacitor2.lua │ │ │ ├── dest_highrise_generator.lua │ │ │ ├── dest_shoulderbashwall.lua │ │ │ ├── dest_towers_capsule.lua │ │ │ ├── dest_towers_elevator.lua │ │ │ ├── dest_towers_hatch.lua │ │ │ ├── dest_towers_platform.lua │ │ │ ├── dest_towers_sandworm.lua │ │ │ ├── dm_piston_large.lua │ │ │ ├── dm_piston_medium.lua │ │ │ ├── dm_piston_small.lua │ │ │ ├── dm_piston_tiny.lua │ │ │ ├── dm_skew_ramp_001.lua │ │ │ ├── fo_for_fusioncoil_med.lua │ │ │ ├── fo_fore_grav_lift.lua │ │ │ ├── fo_fore_man_cannon.lua │ │ │ ├── fo_fore_teleporter.lua │ │ │ ├── fo_interactive_capacitor.lua │ │ │ ├── fo_interactive_generator.lua │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ ├── fo_unsc_teleporter.lua │ │ │ ├── grunt_mech.lua │ │ │ ├── knight_taint.lua │ │ │ ├── ms_grav_lift_a.lua │ │ │ ├── osiris_cov_squad_drop_pod.lua │ │ │ ├── pistons_door1_control.lua │ │ │ ├── pistons_door2_control.lua │ │ │ ├── pistons_door3_control.lua │ │ │ ├── pistons_door4_control.lua │ │ │ ├── powercore_a_dm.lua │ │ │ ├── slipspace_portal.lua │ │ │ ├── slipspace_portal_guardian.lua │ │ │ ├── storm_anti_infantry_turret.lua │ │ │ ├── terminal_vehicles_dm.lua │ │ │ ├── unsc_droppod_mover.lua │ │ │ └── voxel.lua │ ├── levels │ │ ├── multi │ │ │ ├── fo01_terrain_alpine │ │ │ │ └── scripts │ │ │ │ │ └── fo01_terrain_alpine.lua │ │ │ ├── fo02_glacier │ │ │ │ └── scripts │ │ │ │ │ └── fo02_glacier.lua │ │ │ ├── fo03_space │ │ │ │ └── scripts │ │ │ │ │ └── fo03_space.lua │ │ │ ├── fo04_ocean │ │ │ │ └── scripts │ │ │ │ │ └── fo04_ocean.lua │ │ │ ├── fo05_desert │ │ │ │ └── scripts │ │ │ │ │ └── fo05_desert.lua │ │ │ ├── fo06_deepsea │ │ │ │ └── scripts │ │ │ │ │ └── fo06_deepsea.lua │ │ │ ├── ng101_wz_arc │ │ │ │ └── scripts │ │ │ │ │ └── ng101_wz_arc.lua │ │ │ ├── ng20_sa_towers │ │ │ │ └── scripts │ │ │ │ │ └── ng20_sa_towers_script.lua │ │ │ ├── ng20r_sa_towers_remix │ │ │ │ └── scripts │ │ │ │ │ └── ng20r_sa_towers_remix_script.lua │ │ │ ├── ng23_ss_skew │ │ │ │ └── scripts │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ ├── ng23r_ss_skew_remix │ │ │ │ └── scripts │ │ │ │ │ └── ng23_ss_skew_script.lua │ │ │ ├── ng25_ss_pistons │ │ │ │ └── scripts │ │ │ │ │ └── ng25_ss_pistons_script.lua │ │ │ ├── ng25r_ss_pistons_remixed │ │ │ │ └── scripts │ │ │ │ │ └── ng25r_ss_pistons_remixed_script.lua │ │ │ ├── ng42_acropolis │ │ │ │ └── scripts │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ ├── ng42r_acropolis_remix │ │ │ │ └── scripts │ │ │ │ │ └── highrise_remix.lua │ │ │ ├── ng43_midship │ │ │ │ └── scripts │ │ │ │ │ └── ng43_midship_script.lua │ │ │ ├── ng43r_midship_remix │ │ │ │ └── scripts │ │ │ │ │ └── ng43r_midship_remix_script.lua │ │ │ ├── ng50_ss_coliseum │ │ │ │ └── scripts │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ ├── ng50r_ss_coliseum_remix │ │ │ │ └── scripts │ │ │ │ │ └── ng50r_ss_coliseum_remix_script.lua │ │ │ └── ng93_haven │ │ │ │ └── scripts │ │ │ │ └── ng93_haven.lua │ │ └── ui │ │ │ ├── mainmenu │ │ │ └── scripts │ │ │ │ └── mainmenu_startup.lua │ │ │ └── spartan_render │ │ │ └── scripts │ │ │ └── spartan_render.lua │ └── multiplayer │ │ └── lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── runevents.lua │ │ ├── serializeevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua │ ├── datamine │ └── CellEventsSchema │ │ ├── Cpp │ │ ├── eCellCategory_ai.bond │ │ ├── eCellCategory_composer.bond │ │ ├── eCellCategory_damage.bond │ │ ├── eCellCategory_forge.bond │ │ ├── eCellCategory_haloscript.bond │ │ ├── eCellCategory_legacyLog.bond │ │ ├── eCellCategory_levels.bond │ │ ├── eCellCategory_match.bond │ │ ├── eCellCategory_netlifecycle.bond │ │ ├── eCellCategory_netsimulation.bond │ │ ├── eCellCategory_netvoice.bond │ │ ├── eCellCategory_networking.bond │ │ ├── eCellCategory_performance.bond │ │ ├── eCellCategory_physics.bond │ │ ├── eCellCategory_player.bond │ │ ├── eCellCategory_render.bond │ │ ├── eCellCategory_requisition.bond │ │ ├── eCellCategory_sandbox.bond │ │ ├── eCellCategory_services.bond │ │ ├── eCellCategory_sound.bond │ │ ├── eCellCategory_system.bond │ │ ├── eCellCategory_ui.bond │ │ └── eCellCategory_unit.bond │ │ └── CustomBond │ │ └── GameEvents.bond │ └── version.txt ├── Halo 5 Guardians ├── 07427.16.08.29.1513-1 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-41d6cc405cd54b378a7bbd54a4db89a7.bin │ │ ├── capturetheflag_customgamesuimarkup_en-eb96ed308c7a4b848ff3dd168a8916d5.bin │ │ ├── infection_customgamesuimarkup_en-0b3eeab4fdfd44309d740109976a59ea.bin │ │ ├── slayer_customgamesuimarkup_en-3f4b071aa8234072ab3f5b8ba4de6d3d.bin │ │ ├── sportsball_customgamesuimarkup_en-1502dc50a5d441d7ae03c9ea3dd3efb3.bin │ │ └── strongholds_customgamesuimarkup_en-a5f569c5cac6462fb0298614947ba2bd.bin │ ├── GameVariant │ │ ├── breakout-breakout-ff6f6f76bc7c4e5eb83b1da521500442.bin │ │ ├── breakout-breakoutarena-eabedc61b8014704801230c8fc14c853.bin │ │ ├── capturetheflag-btbctf-4eddfd97cacb4cf5a28cc2adc455ade7.bin │ │ ├── capturetheflag-neutralflag-56560b555c404994b506e6f1f50b72ec.bin │ │ ├── capturetheflag-standard-257b6685027745b498d313c2e845b81c.bin │ │ ├── capturetheflag-standardfiesta-572da35e01f8476e913b7e320babf5c4.bin │ │ ├── forge-forge-d5084badd1e64721810a17748dbf6311.bin │ │ ├── infection-infection-d04cbf00c64f4bbfbbbf71cc4288dba5.bin │ │ ├── slayer-bigteambattle-dcf30fed335a4c0eabc60ab7b0a65dcb.bin │ │ ├── slayer-ffarockets-5cd5902393d34045af80c0a41b359504.bin │ │ ├── slayer-ffaslayer-989ce19c9bc644ad85f8d663524ba08e.bin │ │ ├── slayer-fiesta-18a5d72d80784ef2be3e6b3c50c9e2b4.bin │ │ ├── slayer-fiestaclassic-f601bab7becf443a845eae06ced4e843.bin │ │ ├── slayer-rockets-8cfb58152b064868afa6965f5f2b339e.bin │ │ ├── slayer-shottysnipers-e04067a334754ba6be75f9fdc67999bf.bin │ │ ├── slayer-slayer-23b0aa49da8b405591d9ebf56c222d79.bin │ │ ├── slayer-snipers-806d7cc361f04b638cd8f917957df9fc.bin │ │ ├── slayer-swat-a5a51120e90e44538b4806b9dfe4f65c.bin │ │ ├── sportsball-grifball-be8eeae79fdb46c0abc28abe0e0181d8.bin │ │ ├── sportsball-neutralbomb-ca5599646192443b8fedc5afed30eb94.bin │ │ ├── sportsball-neutralbombfiesta-23ebcb161c7342bd874b2890fc410c3d.bin │ │ ├── strongholds-btbstrongholds-9101140e1a68481d93d8ae322d890353.bin │ │ ├── strongholds-onebase-17a36e306e824046a743e955792ec1c2.bin │ │ ├── strongholds-strongholds-09600cffa0a5475789099c093829c5fd.bin │ │ └── strongholds-strongholdsfiesta-c04cfdf26e8f4e14b36bd61152d11247.bin │ ├── MapVariant │ │ ├── altitude-c0351d5a966e4c37825c160cffd116ee.bin │ │ ├── antifreeze-699ba8cf230f43ed9e5307cbd71e46bb.bin │ │ ├── backwoods-8d1dcdcdcb24429dbdde5de35d43438c.bin │ │ ├── basin-2a61b0d1e54c46c08255cdc8408872ce.bin │ │ ├── cobalt-3cfe35d891fb499faa2efc92fa656ed6.bin │ │ ├── crossfire-0f06b937e8d34834bcf95d46cf6a8769.bin │ │ ├── deadlock-b734d516f242414ba98b0005c3c6aca7.bin │ │ ├── drillsite-4ad301bd7b8d4a37935cf52305db53ca.bin │ │ ├── entombed-9fe1a74b024a4eff8dec8cd2cca0bb52.bin │ │ ├── fo01_terrain_alpine_default-3f28cdda91a54a5fb7a39a2360acf675.bin │ │ ├── fo02_glacier_default-15e666b9c3184efe95addb926e1d6f83.bin │ │ ├── fo03_space_default-db5db7f7490d4498975e88f517279c43.bin │ │ ├── fo04_ocean-65d18236417c43729958bb8e457b280b.bin │ │ ├── fo_arena_breakout_default-7369c370e2354ebd987f2fd8d7751699.bin │ │ ├── frank-94e3b4d38869439dacfc890df8e154da.bin │ │ ├── gambol-f6d08e52afea46f0a4ce0a8a821acde7.bin │ │ ├── grifball_court-07aac0da6c4442ff9a3f1676cc88bba4.bin │ │ ├── guillotine-890d9c81a6ac44a1ba3f8e573f627763.bin │ │ ├── hangar-518c801ce5894a35b039c74a65dd6eea.bin │ │ ├── hazard-513fadbea0304a3f99b630930fd94ef3.bin │ │ ├── headsup-0c3d62ee63d542d59105a6215f818a94.bin │ │ ├── lunar-e938489e67b54c33a05ba9791ca466cb.bin │ │ ├── malta-158ee975a50b4bc4b3017916fbfa6bbb.bin │ │ ├── ng11_la_courtyard_default-63cf4a11b86548f99da7ad773484897e.bin │ │ ├── ng11r_la_courtyard_remix_default-66433f270c944c7b9e36db93728c42bd.bin │ │ ├── ng20_sa_towers_default-16ac633db6e0421b9c4be17cb65c89fa.bin │ │ ├── ng20r_sa_towers_remix_default-32679e187bb74291a01e49e34bf3a3d7.bin │ │ ├── ng23_ss_skew_default-3b17326f01af4be3ae16dbb0824ca4b1.bin │ │ ├── ng23r_ss_skew_remix_default-f3b7e8980a824cfb8d40173a8809f27d.bin │ │ ├── ng25_ss_pistons_default-e0add6de39ab45f6bee7ea3be0e2409a.bin │ │ ├── ng25r_ss_pistons_remixed_default-45632615db29433f8a579540859c5a0f.bin │ │ ├── ng42_acropolis_default-8739528a82244dc5861b8899ec6bd320.bin │ │ ├── ng42r_acropolis_remix_default-9db149730399430a94e6b1abc1863ea6.bin │ │ ├── ng43_midship_default-32c425baff214094acd46029cc87622d.bin │ │ ├── ng43r_midship_remix_default-1912a9b4261a47fc9d4e568c13293262.bin │ │ ├── ng50_ss_coliseum_default-c70c20874151443f93592cdf5be514b5.bin │ │ ├── ng50r_ss_coliseum_remix_default-2541242041c84a1e98233a67a129d857.bin │ │ ├── ng93_haven-e6c282c4fcbc477d87550f13d31fc7d2.bin │ │ ├── opticprison-0ac6fe541ad24d6988401a66f909b917.bin │ │ ├── orion-757bf0b993c54217a22c896021c435c2.bin │ │ ├── orion2-dcbc1115c0ef45ccb8101505a3496dcb.bin │ │ ├── orxgens-db5a72d3ba9d4748bfc3f6ad9cc08a0e.bin │ │ ├── overflow-2b049ea127774639933bde164cee4606.bin │ │ ├── overgrowth_infection-b75560534a194c968934bac87dccd7d0.bin │ │ ├── pegasus-a045db5ca3a7414dbe736da85cbffbbf.bin │ │ ├── plaza_infection-0bf16ce6cae84e10b2a2e55afc869637.bin │ │ ├── powerinstallation484-62006fae004645968d987f1b51113922.bin │ │ ├── purplereign-9e456f1585094c3aa09bb5227f580cda.bin │ │ ├── recurve-2922fbfe0e914838a1b10c361d3ec843.bin │ │ ├── riptide_infection-90331ac1b91f418c85cb648c06fa152b.bin │ │ ├── shurima-096b947f688c4b74bb5fed8d2c678798.bin │ │ ├── sz2-5aa7e1da6fe143a091a134d50127a822.bin │ │ ├── thecrypt-442617607bc444138a9b0bca7c220b34.bin │ │ ├── trench-60f4d68dfdff4ea19da6ebaf0e73c552.bin │ │ └── trident-a26c3fbf89044e50b0a6e70865db6f61.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ ├── breakoutHighLethalityConfig.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── forge │ │ │ └── forge.lua │ │ ├── infection │ │ │ ├── hs_infection.lua │ │ │ ├── infection.lua │ │ │ └── infectionconfig.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── sportsball │ │ │ ├── assault.lua │ │ │ ├── grifball.lua │ │ │ ├── grifballconfig.lua │ │ │ ├── sportsball.lua │ │ │ └── sportsballConfig.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 73070.15.09.21.0115-1 │ ├── AppxManifest.xml │ ├── ChunkIndex.xml │ ├── README.md │ ├── tags │ │ ├── globals │ │ │ ├── arcade_defaultevents.lua │ │ │ ├── arcade_defaultmedalevents.lua │ │ │ ├── campaign_defaultevents.lua │ │ │ ├── global_phantom.lua │ │ │ └── scripts │ │ │ │ ├── global_abilities.lua │ │ │ │ ├── global_ai.lua │ │ │ │ ├── global_audio.lua │ │ │ │ ├── global_camera.lua │ │ │ │ ├── global_checkpoints.lua │ │ │ │ ├── global_cinematic.lua │ │ │ │ ├── global_collectibles.lua │ │ │ │ ├── global_data_cache.lua │ │ │ │ ├── global_debug.lua │ │ │ │ ├── global_devicemachines.lua │ │ │ │ ├── global_dialog.lua │ │ │ │ ├── global_effects.lua │ │ │ │ ├── global_goals.lua │ │ │ │ ├── global_lighting.lua │ │ │ │ ├── global_loading.lua │ │ │ │ ├── global_logic.lua │ │ │ │ ├── global_missions.lua │ │ │ │ ├── global_musketeers.lua │ │ │ │ ├── global_narrative.lua │ │ │ │ ├── global_object_events.lua │ │ │ │ ├── global_objects.lua │ │ │ │ ├── global_physics.lua │ │ │ │ ├── global_players.lua │ │ │ │ ├── global_prototype.lua │ │ │ │ ├── global_randomized_bank.lua │ │ │ │ ├── global_scripts.lua │ │ │ │ ├── global_table.lua │ │ │ │ ├── global_tutorial_table.lua │ │ │ │ ├── global_tutorials.lua │ │ │ │ ├── global_unique_bg_chatter.lua │ │ │ │ ├── global_zoneset.lua │ │ │ │ └── prototypes │ │ │ │ ├── arc_vista_rocket.lua │ │ │ │ ├── assault_oni_door_a.lua │ │ │ │ ├── coliseum_killroy_001.lua │ │ │ │ ├── cov_drop_pod.lua │ │ │ │ ├── cov_projector_barrier_shield.lua │ │ │ │ ├── dest_forp_fusioncoil.lua │ │ │ │ ├── dest_highrise_capacitor.lua │ │ │ │ ├── dest_highrise_capacitor2.lua │ │ │ │ ├── dest_highrise_generator.lua │ │ │ │ ├── dest_shoulderbashwall.lua │ │ │ │ ├── dest_towers_hatch.lua │ │ │ │ ├── dm_piston_large.lua │ │ │ │ ├── dm_piston_tiny.lua │ │ │ │ ├── dm_skew_ramp_001.lua │ │ │ │ ├── fo_fore_grav_lift.lua │ │ │ │ ├── fo_fore_man_cannon.lua │ │ │ │ ├── fo_unsc_grav_lift.lua │ │ │ │ ├── fo_unsc_man_cannon.lua │ │ │ │ ├── knight_taint.lua │ │ │ │ ├── ms_grav_lift_a.lua │ │ │ │ ├── osiris_cov_squad_drop_pod.lua │ │ │ │ ├── slipspace_portal.lua │ │ │ │ ├── slipspace_portal_gameplay.lua │ │ │ │ ├── slipspace_portal_guardian.lua │ │ │ │ ├── storm_anti_infantry_turret.lua │ │ │ │ └── terminal_vehicles_dm.lua │ │ ├── levels │ │ │ ├── campaignworld010 │ │ │ │ ├── w1_evacuation │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── w1_evacuation_audio.lua │ │ │ │ │ │ ├── w1_evacuation_control.lua │ │ │ │ │ │ ├── w1_evacuation_drive_in.lua │ │ │ │ │ │ ├── w1_evacuation_elevator_top.lua │ │ │ │ │ │ ├── w1_evacuation_fx.lua │ │ │ │ │ │ ├── w1_evacuation_space_elevator.lua │ │ │ │ │ │ └── w1_evaculation_narrative.lua │ │ │ │ ├── w1_meridian │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── w1_meridian_1_narrative.lua │ │ │ │ │ │ ├── w1_meridian_audio.lua │ │ │ │ │ │ ├── w1_meridian_oreo_1_script.lua │ │ │ │ │ │ ├── w1_meridian_script.lua │ │ │ │ │ │ ├── w1_meridian_tutorials_script.lua │ │ │ │ │ │ ├── w1_space_elevator.lua │ │ │ │ │ │ └── w1_ur_tr_tutorial.lua │ │ │ │ ├── w1_miningtown │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── w1_minetown_audio.lua │ │ │ │ │ │ ├── w1_minetown_narrative.lua │ │ │ │ │ │ └── w1_minetown_vignette.lua │ │ │ │ └── w1_unconfirmed_reports │ │ │ │ │ └── scripts │ │ │ │ │ ├── w1_unconfirmed_reports_audio.lua │ │ │ │ │ ├── w1_unconfirmed_reports_cavalier.lua │ │ │ │ │ ├── w1_unconfirmed_reports_landing.lua │ │ │ │ │ ├── w1_unconfirmed_reports_lavatube.lua │ │ │ │ │ ├── w1_unconfirmed_reports_lavatube_client.lua │ │ │ │ │ ├── w1_unconfirmed_reports_mine.lua │ │ │ │ │ ├── w1_unconfirmed_reports_narrative.lua │ │ │ │ │ ├── w1_unconfirmed_reports_quarry.lua │ │ │ │ │ ├── w1_unconfirmed_reports_script.lua │ │ │ │ │ ├── w1_unconfirmed_reports_ship.lua │ │ │ │ │ └── w1_unconfirmed_reports_vingettes.lua │ │ │ ├── campaignworld020 │ │ │ │ ├── w2_campsite │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── w2_campsite.lua │ │ │ │ │ │ ├── w2_campsite_audio.lua │ │ │ │ │ │ ├── w2_campsite_vignette.lua │ │ │ │ │ │ └── w2_campsite_vo.lua │ │ │ │ ├── w2_campsite_return │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── w2_campsite_return.lua │ │ │ │ │ │ ├── w2_campsite_return_2nd_visit.lua │ │ │ │ │ │ ├── w2_campsite_return_audio.lua │ │ │ │ │ │ └── w2_campsite_return_narrative.lua │ │ │ │ ├── w2_grotto │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── w2_grotto_audio.lua │ │ │ │ │ │ ├── w2_grotto_mission.lua │ │ │ │ │ │ ├── w2_grotto_narrative.lua │ │ │ │ │ │ └── w2_grotto_vignettes.lua │ │ │ │ ├── w2_plateau │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── w2_audio.lua │ │ │ │ │ │ ├── w2_dialogue.lua │ │ │ │ │ │ ├── w2_env_fx.lua │ │ │ │ │ │ ├── w2_plateau.lua │ │ │ │ │ │ ├── w2_plateau_bowl_mission.lua │ │ │ │ │ │ ├── w2_plateau_collectibles.lua │ │ │ │ │ │ ├── w2_plateau_dialogue.lua │ │ │ │ │ │ ├── w2_plateau_narrative.lua │ │ │ │ │ │ ├── w2_plateau_obelisk.lua │ │ │ │ │ │ ├── w2_plateau_sentry.lua │ │ │ │ │ │ ├── w2_plateau_sentry_fx.lua │ │ │ │ │ │ ├── w2_plateau_sentry_post_cvs.lua │ │ │ │ │ │ └── w2_plateau_start.lua │ │ │ │ └── w2_tsunami │ │ │ │ │ └── scripts │ │ │ │ │ ├── w2_tsunami_audio.lua │ │ │ │ │ ├── w2_tsunami_burgertown.lua │ │ │ │ │ ├── w2_tsunami_destruction.lua │ │ │ │ │ ├── w2_tsunami_dialogue.lua │ │ │ │ │ ├── w2_tsunami_e3.lua │ │ │ │ │ ├── w2_tsunami_e3_dialogue.lua │ │ │ │ │ ├── w2_tsunami_e3_graveyard.lua │ │ │ │ │ ├── w2_tsunami_locke_mission.lua │ │ │ │ │ ├── w2_tsunami_mission_blink.lua │ │ │ │ │ ├── w2_tsunami_theater_of_war.lua │ │ │ │ │ ├── w2_tsunami_titles.lua │ │ │ │ │ └── w2_tsunami_vignettes.lua │ │ │ ├── campaignworld030 │ │ │ │ ├── w3_arrival │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── w3_arrival.lua │ │ │ │ │ │ ├── w3_arrival_audio.lua │ │ │ │ │ │ ├── w3_arrival_debug.lua │ │ │ │ │ │ ├── w3_arrival_fx.lua │ │ │ │ │ │ ├── w3_arrival_narrative.lua │ │ │ │ │ │ └── w3_arrival_vin.lua │ │ │ │ ├── w3_builder │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── w3_builder.lua │ │ │ │ │ │ ├── w3_builder_audio.lua │ │ │ │ │ │ ├── w3_builder_fx.lua │ │ │ │ │ │ └── w3_builder_narrative.lua │ │ │ │ ├── w3_citadel │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── w3_citadel_trials.lua │ │ │ │ │ │ ├── w3_citadel_trials_audio.lua │ │ │ │ │ │ ├── w3_citadel_trials_debug.lua │ │ │ │ │ │ └── w3_citadel_trials_narrative.lua │ │ │ │ ├── w3_halsey │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── vinsetupspartans.lua │ │ │ │ │ │ ├── w3_halsey.lua │ │ │ │ │ │ ├── w3_halsey_audio.lua │ │ │ │ │ │ ├── w3_halsey_debug.lua │ │ │ │ │ │ └── w3_halsey_narrative.lua │ │ │ │ └── w3_innerworld │ │ │ │ │ └── scripts │ │ │ │ │ ├── w3_iw_sentinels.lua │ │ │ │ │ ├── w3_iw_sentinels_audio.lua │ │ │ │ │ ├── w3_iw_sentinels_bigbowl.lua │ │ │ │ │ ├── w3_iw_sentinels_coliseum.lua │ │ │ │ │ ├── w3_iw_sentinels_dialogue.lua │ │ │ │ │ ├── w3_iw_sentinels_fx.lua │ │ │ │ │ ├── w3_iw_sentinels_hub.lua │ │ │ │ │ ├── w3_iw_sentinels_narrative.lua │ │ │ │ │ ├── w3_iw_sentinels_road_lilbowl.lua │ │ │ │ │ └── w3_iw_sentinels_underground.lua │ │ │ ├── campaignworld040 │ │ │ │ └── w4_station │ │ │ │ │ └── scripts │ │ │ │ │ ├── station_assault_globals.lua │ │ │ │ │ ├── w4_station_assault.lua │ │ │ │ │ ├── w4_station_assault_audio.lua │ │ │ │ │ ├── w4_station_assault_flight.lua │ │ │ │ │ ├── w4_station_assault_fx.lua │ │ │ │ │ ├── w4_station_assault_hanger.lua │ │ │ │ │ ├── w4_station_assault_hunter.lua │ │ │ │ │ ├── w4_station_assault_hunter_client.lua │ │ │ │ │ ├── w4_station_assault_intro.lua │ │ │ │ │ ├── w4_station_assault_narrative.lua │ │ │ │ │ ├── w4_station_assault_reactor.lua │ │ │ │ │ ├── w4_station_assault_syard.lua │ │ │ │ │ ├── w4_station_assault_tc.lua │ │ │ │ │ ├── w4_station_assault_tun.lua │ │ │ │ │ └── w4_station_assault_tun_client.lua │ │ │ ├── cinematics │ │ │ │ ├── cin_030 │ │ │ │ │ └── scripts │ │ │ │ │ │ └── cin_030.lua │ │ │ │ ├── cin_060 │ │ │ │ │ └── scripts │ │ │ │ │ │ └── cin_060.lua │ │ │ │ ├── cin_110 │ │ │ │ │ └── scripts │ │ │ │ │ │ └── cin_110.lua │ │ │ │ └── cin_120 │ │ │ │ │ └── scripts │ │ │ │ │ └── cin_120.lua │ │ │ ├── multi │ │ │ │ ├── ng101_wz_arc │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng101_wz_arc.lua │ │ │ │ ├── ng42_acropolis │ │ │ │ │ └── scripts │ │ │ │ │ │ └── ng42_acropolis_script.lua │ │ │ │ └── ng50_ss_coliseum │ │ │ │ │ └── scripts │ │ │ │ │ └── ng50_ss_coliseum_script.lua │ │ │ └── ui │ │ │ │ ├── mainmenu │ │ │ │ └── scripts │ │ │ │ │ └── mainmenu_startup.lua │ │ │ │ └── spartan_render │ │ │ │ └── scripts │ │ │ │ └── spartan_render.lua │ │ └── multiplayer │ │ │ └── lua │ │ │ ├── delegate.lua │ │ │ ├── engine.lua │ │ │ ├── eventutilityfunctions.lua │ │ │ ├── gameevents.lua │ │ │ ├── runevents.lua │ │ │ ├── serializeevents.lua │ │ │ ├── timeevents.lua │ │ │ ├── utility.lua │ │ │ ├── wargamesterminal.lua │ │ │ ├── weaponconstants.lua │ │ │ └── weaponpad.lua │ └── version.txt ├── 74184.15.10.02.0200-4 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-7304208c0634481e8bc50053c538b027.bin │ │ ├── capturetheflag_customgamesuimarkup_en-0fac4c2fee2e40428a1049c9d63665fd.bin │ │ ├── slayer_customgamesuimarkup_en-6c8d99bdb1f6486d931d4ab611742297.bin │ │ └── strongholds_customgamesuimarkup_en-87ef2cf2d59749319b4af5554409f529.bin │ ├── GameVariant │ │ ├── arconebase-arconebaseattackdefend-d8eca97761144d2ebd9d6a1ece8b2cb8.bin │ │ ├── arconebase-arconebaseextended-715ef246c2c14c949174d5d4b85d799f.bin │ │ ├── arctwobase-arctwobasescoring-e642fa4999c04e198624770010afc38a.bin │ │ ├── breakout-breakout-e828b92869eb406f9edc9e745037122e.bin │ │ ├── breakout-testendless-d1e55d53290e41b2bf414feff9ba9f65.bin │ │ ├── capturetheflag-btbctf-cd0db2c543d94354a05bfc63b78a9d6f.bin │ │ ├── capturetheflag-neutralflag-1ad4df58c1354ed0a83e9fca1405b00b.bin │ │ ├── capturetheflag-standard-0fc662bc26a540f3ae65a7dec4af9124.bin │ │ ├── ringonebase-ringonebaseattackdefend-09cbf085f26c4876b5bab1784304cff9.bin │ │ ├── ringtwobase-ringtwobasescoring-e11413916cea4e62b096754d43da7cb6.bin │ │ ├── slayer-ffaslayer-b0ad040226094dca8a2f035710bc7708.bin │ │ ├── slayer-shottysnipers-3ae4117840c24b59923456d7ca019e43.bin │ │ ├── slayer-slayer-7129eab976374f909abeed243a864f24.bin │ │ ├── slayer-swat-5a78440cfdf844ec9608c408fe23f8da.bin │ │ ├── slayer-testendless-57909dac55524ccd969895aa1f458d22.bin │ │ ├── slayer-testinstantrespawn-f38e8fc49c934d06827749590471e9b7.bin │ │ ├── snowzoneonebase-snowzoneonebaseattackdefend-7d79e8f34af045389283f56931a02226.bin │ │ ├── snowzonetwobase-snowzonetwobasescoring-ea546670bb5b474890e8e4d3ac5d7232.bin │ │ ├── strongholds-btbstrongholds-e7d31e89eb41491cbef43f0ccb2521f6.bin │ │ ├── strongholds-onebase-dca07f9ada364daba43892efecd259c7.bin │ │ └── strongholds-strongholds-f4d1ff0844c34d028bf8601de681cec9.bin │ ├── MapVariant │ │ ├── altitude-6a0195d6813547a891131ea5da3f90cb.bin │ │ ├── bgulch-bfda2077c42c4f09a2c90ad703b101e0.bin │ │ ├── crossfire-ef5b2d8c455646bd99d86d8b97ff6d04.bin │ │ ├── gambol-ac38c3c81b6149a3950dd033b027e39b.bin │ │ ├── ng100_wz_iceworld-6ab4724e011d41a6946cf0cce4e272fc.bin │ │ ├── ng100r_wz_iceworld_remix-666b07faf4f04d8c8efd0ef61bde19a4.bin │ │ ├── ng101_wz_arc-5f161cd4a6f04429a92337216e531a88.bin │ │ ├── ng101r_wz_arc_remix-0b27e8d8d5cd492b8a65a26c420c8bcd.bin │ │ ├── ng11_la_courtyard-afa7f51db7e246479bcf5e62a2bf643a.bin │ │ ├── ng120_wz_ring-e22d7c4a5ddd48a480b3f9c9cd07587c.bin │ │ ├── ng120r_wz_ring_remix-bed3f04c45424e5e96de0b740be7f763.bin │ │ ├── ng20_sa_towers-1882c8f73ef147b6b9a9b2f52d5f026f.bin │ │ ├── ng23_ss_skew-c34787a919f947e0890934f38b6c70c8.bin │ │ ├── ng42_acropolis-4fd61a0186c6438b9d18758a3c526cfb.bin │ │ ├── ng42r_acropolis_remix-dc9bb0442551444d87d5b101e845bc5e.bin │ │ ├── ng43_midship-f9a4c00121504c88ae8dc9755caed34d.bin │ │ ├── ng43r_midship_remix-578fbaaceb704fbf826f9ee6198717ec.bin │ │ ├── ng50_ss_coliseum-b85cd3939ed0460e90508292247d5cbb.bin │ │ ├── orion-d4dcec3d8b474cd8b96350301411b013.bin │ │ ├── pegasus-69cfbdd8839845d485adc60099e49925.bin │ │ ├── trench-487c2fc4f2eb407bbed06b016557a254.bin │ │ └── trident-e8c1adad95b5400abd9646affb55e1b6.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warzone │ │ │ ├── events │ │ │ ├── KeyedResponses.lua │ │ │ └── MiniBossGroupCountdown.lua │ │ │ ├── scenarios │ │ │ ├── arc.lua │ │ │ ├── arcOneBase.lua │ │ │ ├── ring.lua │ │ │ ├── ringOneBase.lu │ │ │ ├── snowzone.lua │ │ │ └── snowzoneOneBase.lua │ │ │ ├── warzone.lua │ │ │ ├── warzoneconfig.lua │ │ │ ├── warzoneonebase.lua │ │ │ ├── warzonesuffix.lua │ │ │ └── warzonetwobase.lua │ │ ├── killmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 75160.15.10.17.0200-3 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-65bbbd4dbbbc44ec9492119952193253.bin │ │ ├── capturetheflag_customgamesuimarkup_en-5fed285f0e7149309b30acc5a0e84108.bin │ │ ├── slayer_customgamesuimarkup_en-d2b5e9c5ed46436b9e26083e77c3747a.bin │ │ └── strongholds_customgamesuimarkup_en-bcfbc9ce000a412689573743a96e2d35.bin │ ├── GameVariant │ │ ├── breakout-da2e6ea22d5841eb8e6c00adba66e90f.bin │ │ ├── ctf-725616b98620404cae0718fbcbda89fd.bin │ │ ├── ffaslayer-2c7a70789db149609997d38fca5e5a5b.bin │ │ ├── neutralflag-d6d75b79666e40899f0498995a2adaa8.bin │ │ ├── shottysnipers-21a2218c89264c65a147e5772b7360b6.bin │ │ ├── slayer-26757b93e195451a819657981091d837.bin │ │ ├── strongholds-5f42bbdf69524e3ab0d8c7063ed1a6b8.bin │ │ └── swat-a0d00f4a99c84dc8a1575110cb0839ec.bin │ ├── MapVariant │ │ ├── altitude-1c92a1e51a614a509966d62fae6bd348.bin │ │ ├── crossfire-36cf1fbf4a634240ac085cc6da7fa69b.bin │ │ ├── gambol-612cab15587f4de4804f0088bde6f7d0.bin │ │ ├── ng11_la_courtyard-143580a1538045c5b29f5ea80df9d8cd.bin │ │ ├── ng20_sa_towers-3af4b7c5bbb0462a83ac2153a9cb2938.bin │ │ ├── ng23_ss_skew-9464a25ea45e407c90a1c601604d19d9.bin │ │ ├── ng42_acropolis-488161ee6aae46779a80e96caa9a9fff.bin │ │ ├── ng42r_acropolis_remix-9383b291ee52492591e8c1b7c77bc33a.bin │ │ ├── ng43_midship-4987dee95f41415dae3da963e4945a44.bin │ │ ├── ng43r_midship_remix-9929daf34d2a4f25be5e7307330a0a03.bin │ │ ├── ng50_ss_coliseum-2fa11d1a324447c5bee3809695abadb8.bin │ │ ├── orion-eb55833de3cf45e6885322f898824e53.bin │ │ ├── pegasus-707170451e59494eb99e0dfce2269759.bin │ │ ├── trench-de99cb7762924a0f96e2dcf1e9fa7661.bin │ │ └── trident-4c5054422e244c8485d58d0ced46b283.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 76333.15.11.12.0203-9 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-65bbbd4dbbbc44ec9492119952193253.bin │ │ ├── capturetheflag_customgamesuimarkup_en-5fed285f0e7149309b30acc5a0e84108.bin │ │ ├── slayer_customgamesuimarkup_en-d2b5e9c5ed46436b9e26083e77c3747a.bin │ │ └── strongholds_customgamesuimarkup_en-bcfbc9ce000a412689573743a96e2d35.bin │ ├── GameVariant │ │ ├── breakout-da2e6ea22d5841eb8e6c00adba66e90f.bin │ │ ├── btbctf-0b50d23b62f240029613b96056776444.bin │ │ ├── btbslayer-685e4c6215094ef4a35d2132aded17c1.bin │ │ ├── btbstrongholds-af28db9a577a4c539ab3019cca365235.bin │ │ ├── ctf-725616b98620404cae0718fbcbda89fd.bin │ │ ├── ffaslayer-2c7a70789db149609997d38fca5e5a5b.bin │ │ ├── neutralflag-d6d75b79666e40899f0498995a2adaa8.bin │ │ ├── shottysnipers-21a2218c89264c65a147e5772b7360b6.bin │ │ ├── slayer-26757b93e195451a819657981091d837.bin │ │ ├── strongholds-5f42bbdf69524e3ab0d8c7063ed1a6b8.bin │ │ └── swat-a0d00f4a99c84dc8a1575110cb0839ec.bin │ ├── MapVariant │ │ ├── altitude-09d13e323b9a458ead33751a48e346d6.bin │ │ ├── basin-0155cdab4f81434a87d6737e9f242a99.bin │ │ ├── crossfire-ea308846fa054ce2932ece92d16154ab.bin │ │ ├── deadlock-3e624de3e9a34b91844935531f2f4bd5.bin │ │ ├── gambol-ebc8af1b28bb49e18ec09eb5b162896b.bin │ │ ├── guillotine-4d1827123851434d98d7eae36f6cfda2.bin │ │ ├── ng11_la_courtyard-cb329c2d0031422e8589c347ffc3ecc4.bin │ │ ├── ng20_sa_towers-bb5f8f81984f41b9bcb6abc0a5937df7.bin │ │ ├── ng23_ss_skew-2cc0341a24264fcda95853b70463f135.bin │ │ ├── ng42_acropolis-1b715c2fc9024c7aaacacc0ee06f7e95.bin │ │ ├── ng42r_acropolis_remix-c57637b18c704936989ef90a308f330a.bin │ │ ├── ng43_midship-ba8440db1c8d47f0b9ac2d4fd2537447.bin │ │ ├── ng43r_midship_remix-616dcd69778d4ffca103593a230afaca.bin │ │ ├── ng50_ss_coliseum-f54842067026464b9458c2c56103325e.bin │ │ ├── orion-a6cda6dacbc340b2981ce4cb69d24eb4.bin │ │ ├── pegasus-e0ebfdea95504fc19cd80aa11f6b9191.bin │ │ ├── recurve-e48662a104b54faf85fce5850ccb2cd8.bin │ │ ├── trench-f909fba10ffe41fabf3337abf58381e8.bin │ │ └── trident-fec0942fe39b447a82bf69fffdcabc49.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 77316.15.12.10.1718-3 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-65bbbd4dbbbc44ec9492119952193253.bin │ │ ├── capturetheflag_customgamesuimarkup_en-5fed285f0e7149309b30acc5a0e84108.bin │ │ ├── slayer_customgamesuimarkup_en-d2b5e9c5ed46436b9e26083e77c3747a.bin │ │ └── strongholds_customgamesuimarkup_en-bcfbc9ce000a412689573743a96e2d35.bin │ ├── GameVariant │ │ ├── breakout-da2e6ea22d5841eb8e6c00adba66e90f.bin │ │ ├── btbctf-0b50d23b62f240029613b96056776444.bin │ │ ├── btbslayer-685e4c6215094ef4a35d2132aded17c1.bin │ │ ├── btbstrongholds-af28db9a577a4c539ab3019cca365235.bin │ │ ├── ctf-725616b98620404cae0718fbcbda89fd.bin │ │ ├── ffaslayer-2c7a70789db149609997d38fca5e5a5b.bin │ │ ├── forge-forge-3ca608631be64908b0f98493e42e086a-0d5035a117634fdf82657f25cc597109.bin │ │ ├── neutralflag-d6d75b79666e40899f0498995a2adaa8.bin │ │ ├── shottysnipers-21a2218c89264c65a147e5772b7360b6.bin │ │ ├── slayer-26757b93e195451a819657981091d837.bin │ │ ├── strongholds-5f42bbdf69524e3ab0d8c7063ed1a6b8.bin │ │ └── swat-a0d00f4a99c84dc8a1575110cb0839ec.bin │ ├── MapVariant │ │ ├── altitude-1a0bc7a195c04b25814f148004d1502b.bin │ │ ├── antifreeze-5560c1b366e44c1d9a8a596c2d1c7ab4.bin │ │ ├── basin-0f9ed3f2a2e3406299a25ef6a8018768.bin │ │ ├── crossfire-e2dc0ac918474624a7955758a33cf357.bin │ │ ├── fo01_terrain_alpine_default-6b20e3a89f9142db832ba6a990bd819f.bin │ │ ├── fo02_glacier_default-ce57ee9dac0c45f980f76d87f89ce2a4.bin │ │ ├── fo03_space_default-48f776d3733c48878b7326effd672559.bin │ │ ├── fo_arena_breakout_default-ae5cbd927809443c82a9344fe55a3341.bin │ │ ├── gambol-374d7d299fbd49318bc6ab95be7fdb32.bin │ │ ├── guillotine-9f005c91a87347fa9b11f84bbe051a9e.bin │ │ ├── ng11_la_courtyard-cda5ae14f47e47d3983f204bedceedd0.bin │ │ ├── ng11r_la_courtyard_remix-7759bd635dcb4a2bb632c504128d5041.bin │ │ ├── ng20_sa_towers-42869d5037db4f85a91151d6f150fe4f.bin │ │ ├── ng23_ss_skew-0ee5b7af278743a0ba746433193c9904.bin │ │ ├── ng42_acropolis-e2799b339eb541b788d48369ffea3156.bin │ │ ├── ng42r_acropolis_remix-b5e070501cde494ca4efc88d8f4d8fea.bin │ │ ├── ng43_midship-87f1b626c0b24af4b440ea9ad5f02857.bin │ │ ├── ng43r_midship_remix-eb6a74c22c404e95ba377b86a6c4ffe1.bin │ │ ├── ng50_ss_coliseum-c1ed2cf670c4449987e32ebb8c1fbbbe.bin │ │ ├── orion-59399b4097cc47e0be6e84556dff3aed.bin │ │ ├── pegasus-e0950e667b7d4130a86729c422cb05de.bin │ │ ├── recurve-c49f7a9cf7fc4ee99032fcdad25e1bb4.bin │ │ ├── trench-825cb45712594d6dac2760a5ff4a9e7d.bin │ │ └── trident-5ae8a6f2c6534127957f4b5f7e9af9e0.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── forge │ │ │ └── forge.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 78222.16.01.19.0201-3 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-65bbbd4dbbbc44ec9492119952193253.bin │ │ ├── capturetheflag_customgamesuimarkup_en-5fed285f0e7149309b30acc5a0e84108.bin │ │ ├── slayer_customgamesuimarkup_en-d2b5e9c5ed46436b9e26083e77c3747a.bin │ │ └── strongholds_customgamesuimarkup_en-bcfbc9ce000a412689573743a96e2d35.bin │ ├── GameVariant │ │ ├── breakout-da2e6ea22d5841eb8e6c00adba66e90f.bin │ │ ├── breakoutarena-b73baa645525449786fd25751464831b.bin │ │ ├── btbctf-0b50d23b62f240029613b96056776444.bin │ │ ├── btbslayer-685e4c6215094ef4a35d2132aded17c1.bin │ │ ├── btbstrongholds-af28db9a577a4c539ab3019cca365235.bin │ │ ├── ctf-725616b98620404cae0718fbcbda89fd.bin │ │ ├── ffarockets-bdd5d5aaaabc4617bc7dd6e54ce25563.bin │ │ ├── ffaslayer-2c7a70789db149609997d38fca5e5a5b.bin │ │ ├── forge-forge-3d193245eef040b3b8d38f41bf558d03.bin │ │ ├── neutralflag-d6d75b79666e40899f0498995a2adaa8.bin │ │ ├── rockets-a3a1e1990a97417bb2509de7eabdd911.bin │ │ ├── shottysnipers-21a2218c89264c65a147e5772b7360b6.bin │ │ ├── slayer-26757b93e195451a819657981091d837.bin │ │ ├── snipers-0940063442624ad0a2cd24bf56d4385f.bin │ │ ├── strongholds-5f42bbdf69524e3ab0d8c7063ed1a6b8.bin │ │ └── swat-a0d00f4a99c84dc8a1575110cb0839ec.bin │ ├── MapVariant │ │ ├── altitude-81d0a0702bb24497bd2de143d89ea0eb.bin │ │ ├── antifreeze-acbd8ead05004499ad7bcf7aa4a0f3e3.bin │ │ ├── basin-f492d2ad0a2c4b74befb632aaddcba76.bin │ │ ├── crossfire-e48e4c65c6824b76bcca253485e24c12.bin │ │ ├── deadlock-37dced8e041947a197892642b5d6ea80.bin │ │ ├── entombed-84227d5153f3468f94a714251d9f1fa0.bin │ │ ├── fo01_terrain_alpine_default-5eb2e9b837494e0a9f744578a6862ffb.bin │ │ ├── fo02_glacier_default-491119e5e59d4795a250a27f26ed7d88.bin │ │ ├── fo03_space_default-a9b1381bbc5f4fc4ad7d471ad3aa8453.bin │ │ ├── fo_arena_breakout_default-ee9d0fc66e5e436cb107d8094fbced8b.bin │ │ ├── gambol-93994734d5e94f3a956aef1893f5531d.bin │ │ ├── guillotine-8834bae00e0d41e1a19c3da6dac07cd8.bin │ │ ├── ng11_la_courtyard-3be278d4e7a541138f0d3183244463d0.bin │ │ ├── ng11r_la_courtyard_remix_default-f35bf292f554409cb0f6e57fe33487a2.bin │ │ ├── ng20_sa_towers-8a862a36c47742e3a3015b25c64447d8.bin │ │ ├── ng23_ss_skew-5253ea4dc1f940fbb0e795f3139ea716.bin │ │ ├── ng23r_ss_skew_remix-8f9797b8affa42ae946bcdfc1cb9ff33.bin │ │ ├── ng42_acropolis-98f9f3a41f104d2896fda2b635a9822b.bin │ │ ├── ng42r_acropolis_remix-adf34ec2d8db40df821178484a72c57e.bin │ │ ├── ng43_midship-2fe595e19c59467f828cfe2e908575bb.bin │ │ ├── ng43r_midship_remix-c767bde0783d4aefbb1ef7fd51706f1b.bin │ │ ├── orion-4eba772f4a02424789146b3adeda47be.bin │ │ ├── pegasus-a8f6bc1850974c4eaf75a1be6d8f6f36.bin │ │ ├── recurve-a52f81fb8b734ddd8b804397024da51d.bin │ │ ├── trench-0774bed1aa1d46af835d2a0b2012e327.bin │ │ └── trident-9fc414d78aae408ba79c517f644fab8f.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── forge │ │ │ └── forge.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 79425.16.02.11.2301-3 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-65bbbd4dbbbc44ec9492119952193253.bin │ │ ├── capturetheflag_customgamesuimarkup_en-5fed285f0e7149309b30acc5a0e84108.bin │ │ ├── slayer_customgamesuimarkup_en-d2b5e9c5ed46436b9e26083e77c3747a.bin │ │ ├── sportsball_customgamesuimarkup_en-4b0d0d0d19d84896a18fccf010e41cc7.bin │ │ └── strongholds_customgamesuimarkup_en-bcfbc9ce000a412689573743a96e2d35.bin │ ├── GameVariant │ │ ├── breakout-da2e6ea22d5841eb8e6c00adba66e90f.bin │ │ ├── breakoutarena-b73baa645525449786fd25751464831b.bin │ │ ├── btbctf-0b50d23b62f240029613b96056776444.bin │ │ ├── btbslayer-685e4c6215094ef4a35d2132aded17c1.bin │ │ ├── btbstrongholds-af28db9a577a4c539ab3019cca365235.bin │ │ ├── ctf-725616b98620404cae0718fbcbda89fd.bin │ │ ├── ffarockets-bdd5d5aaaabc4617bc7dd6e54ce25563.bin │ │ ├── ffaslayer-2c7a70789db149609997d38fca5e5a5b.bin │ │ ├── fiestaclassic-2fe2c74175174d2299cb227a3bde43a2.bin │ │ ├── forge-forge-4d0bd526ee074430b959092e3690c8b2.bin │ │ ├── grifball-5bd26205cfc14b4281898905b26f31fa.bin │ │ ├── neutralbomb-e1cdb2470b1a486ca869bde8a48400c6.bin │ │ ├── neutralflag-d6d75b79666e40899f0498995a2adaa8.bin │ │ ├── rockets-a3a1e1990a97417bb2509de7eabdd911.bin │ │ ├── shottysnipers-21a2218c89264c65a147e5772b7360b6.bin │ │ ├── slayer-26757b93e195451a819657981091d837.bin │ │ ├── snipers-0940063442624ad0a2cd24bf56d4385f.bin │ │ ├── strongholds-5f42bbdf69524e3ab0d8c7063ed1a6b8.bin │ │ └── swat-a0d00f4a99c84dc8a1575110cb0839ec.bin │ ├── MapVariant │ │ ├── altitude-086b4a3ceec44133a82fa50de7fd78ba.bin │ │ ├── antifreeze-79175ab31d214034846f61306a980c59.bin │ │ ├── basin-00baaf559c0048b6b9182cfe7a44bf41.bin │ │ ├── crossfire-87987866cdcd44f8a771088607f86ae5.bin │ │ ├── deadlock-6fd7cec5cf9a4fa19901f7597ef9fccb.bin │ │ ├── entombed-0b6e3dd63409424c8c422a1fe9b3aebd.bin │ │ ├── fo01_terrain_alpine_default-9df997305cc14d038bd3e7ee7827af02.bin │ │ ├── fo02_glacier_default-649817d727b94be0a5a830bb4cfa56b7.bin │ │ ├── fo03_space_default-3f6a5d66d75b4decbc846e3b41ad6da9.bin │ │ ├── fo_arena_breakout_default-e53010163cbd463c9570609190e38c61.bin │ │ ├── gambol-22fecaed3008454298fae3f2e126b89b.bin │ │ ├── grifball_court-c1dddb66eef040a4942a88cff68c5f1c.bin │ │ ├── guillotine-ecd0f80b2f1e48cb81a2df12a70345ce.bin │ │ ├── ng11_la_courtyard_default-e932cc3564864b6c8abf63fe3e58dbda.bin │ │ ├── ng11r_la_courtyard_remix_default-750a908e3ea44261a443196018beb9db.bin │ │ ├── ng20_sa_towers_default-9371966e2310450297066249529838b8.bin │ │ ├── ng23r_ss_skew_remix_default-c47a9de092ab4f028afd0f08ab171b02.bin │ │ ├── ng42r_acropolis_remix_default-37c0f01d56d44de69883fc456c5b812b.bin │ │ ├── ng43r_midship_remix_default-e1cf90c135c54d658c4052017c4336f3.bin │ │ ├── ng50_ss_coliseum_default-758abc4bf9174f22afec931559118413.bin │ │ ├── orion-9aaaf0218c0f45dd9437580c35cc2deb.bin │ │ ├── pegasus-1253f251b3604f539c5432df98a8894a.bin │ │ ├── trench-5253d276a334409da616a04965d19469.bin │ │ └── trident-336f3ade687e42c4ac5362506631e523.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── forge │ │ │ └── forge.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── sportsball │ │ │ ├── assault.lua │ │ │ ├── grifball.lua │ │ │ ├── grifballconfig.lua │ │ │ ├── sportsball.lua │ │ │ └── sportsballConfig.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 81409.16.03.29.0702-2 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-65bbbd4dbbbc44ec9492119952193253.bin │ │ ├── capturetheflag_customgamesuimarkup_en-5fed285f0e7149309b30acc5a0e84108.bin │ │ ├── slayer_customgamesuimarkup_en-d2b5e9c5ed46436b9e26083e77c3747a.bin │ │ ├── sportsball_customgamesuimarkup_en-4b0d0d0d19d84896a18fccf010e41cc7.bin │ │ ├── sportsball_customgamesuimarkup_en-7196e56a24cd4c11a7d909fe328ee218.bin │ │ └── strongholds_customgamesuimarkup_en-bcfbc9ce000a412689573743a96e2d35.bin │ ├── GameVariant │ │ ├── breakout-da2e6ea22d5841eb8e6c00adba66e90f.bin │ │ ├── breakoutarena-b73baa645525449786fd25751464831b.bin │ │ ├── btbctf-0b50d23b62f240029613b96056776444.bin │ │ ├── btbslayer-685e4c6215094ef4a35d2132aded17c1.bin │ │ ├── btbstrongholds-af28db9a577a4c539ab3019cca365235.bin │ │ ├── ctf-725616b98620404cae0718fbcbda89fd.bin │ │ ├── ctffiesta-d7f1e8e02a404fe1a5c568cefb4267f7.bin │ │ ├── ffarockets-bdd5d5aaaabc4617bc7dd6e54ce25563.bin │ │ ├── ffaslayer-2c7a70789db149609997d38fca5e5a5b.bin │ │ ├── fiestaclassic-2fe2c74175174d2299cb227a3bde43a2.bin │ │ ├── forge-forge-47983c7bfd3d4bf089aff2258f59ae85.bin │ │ ├── grifball-5bd26205cfc14b4281898905b26f31fa.bin │ │ ├── neutralbomb-e1cdb2470b1a486ca869bde8a48400c6.bin │ │ ├── neutralbombfiesta-d263ecf840f8445b95c68c278cb54e5b.bin │ │ ├── neutralflag-d6d75b79666e40899f0498995a2adaa8.bin │ │ ├── rockets-a3a1e1990a97417bb2509de7eabdd911.bin │ │ ├── shottysnipers-21a2218c89264c65a147e5772b7360b6.bin │ │ ├── slayer-26757b93e195451a819657981091d837.bin │ │ ├── snipers-0940063442624ad0a2cd24bf56d4385f.bin │ │ ├── strongholds-5f42bbdf69524e3ab0d8c7063ed1a6b8.bin │ │ ├── strongholdsfiesta-6d83d33fad4a49678210577088b5737f.bin │ │ └── swat-a0d00f4a99c84dc8a1575110cb0839ec.bin │ ├── MapVariant │ │ ├── altitude-900eafb3024546fb94fb7e4492940cf0.bin │ │ ├── antifreeze-316a42f93ef140cfb64f75e5d2419323.bin │ │ ├── basin-a114de3740d642a890a358741df7bff2.bin │ │ ├── crossfire-44b47fb7e0e74b0f8f4c6234656de913.bin │ │ ├── entombed-ece7e599023f4963a4ab730c4aea4f9e.bin │ │ ├── fo01_terrain_alpine_default-370e2a8860c94a37b562d4455989cc82.bin │ │ ├── fo02_glacier_default-7b9c2103c66f42faa84ebaad699bf302.bin │ │ ├── fo03_space_default-98f3ff5306da408f86aebe45bbfb87e8.bin │ │ ├── fo_arena_breakout_default-9fbe1aefd2394cf7b5b0aaa6b8d7b11f.bin │ │ ├── gambol-729d5621e7174f6a8d507bd80c3ec2b0.bin │ │ ├── grifball_court-219c8ebca0eb4de28b431ef1275f3ff5.bin │ │ ├── guillotine-80021d4e0b424f2ca61474532b505500.bin │ │ ├── ng11r_la_courtyard_remix_default-9f5f49e6f98742c2ab42e4b9af12ec1c.bin │ │ ├── ng23_ss_skew_default-9f2b42aa0f6f433a80869cf7e51cb352.bin │ │ ├── ng23r_ss_skew_remix_default-613fa0c8f3024d9fa13a10e2a485f323.bin │ │ ├── ng25_ss_pistons_default-fae978877558462389d6ab02ae823a64.mvar │ │ ├── ng42_acropolis_default-e3fe7dea6bd24b75bb6819dd9fc7fb94.bin │ │ ├── ng42r_acropolis_remix_default-e3af6ae849bc4ecca0b689f5ebe0e40e.bin │ │ ├── ng43_midship_default-669e6b83524b4982bd0d8ddab407c2fd.bin │ │ ├── ng43r_midship_remix_default-6bcf10236c2c4060afcf07a81f4a3b4e.bin │ │ ├── ng50_ss_coliseum_default-a043df669fa04103bedbadae5ee209d6.bin │ │ ├── ng50r_ss_coliseum_remix-e8b59cfb916e418580482c8aec808e2a.bin │ │ ├── orion-990d7e741aa54052883e4a0c7fe6f736.bin │ │ ├── pegasus-0c01d7bd078f4645bcdb1bbc88bf2307.bin │ │ ├── recurve-710032afc06e4de2ac87a7aac5d1b600.bin │ │ ├── trench-bdffe03406104733b40fc151fec7e6f8.bin │ │ └── trident-84e31be521464e20a4fa3ece99ba74b2.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── forge │ │ │ └── forge.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── sportsball │ │ │ ├── assault.lua │ │ │ ├── grifball.lua │ │ │ ├── grifballconfig.lua │ │ │ ├── sportsball.lua │ │ │ └── sportsballConfig.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 83392.16.05.04.2307-2 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-65bbbd4dbbbc44ec9492119952193253.bin │ │ ├── capturetheflag_customgamesuimarkup_en-5fed285f0e7149309b30acc5a0e84108.bin │ │ ├── infection_customgamesuimarkup_en-f90b95a4ecf34e17a8c6dea3de18ed23.bin │ │ ├── slayer_customgamesuimarkup_en-d2b5e9c5ed46436b9e26083e77c3747a.bin │ │ ├── sportsball_customgamesuimarkup_en-4b0d0d0d19d84896a18fccf010e41cc7.bin │ │ ├── sportsball_customgamesuimarkup_en-7196e56a24cd4c11a7d909fe328ee218.bin │ │ └── strongholds_customgamesuimarkup_en-bcfbc9ce000a412689573743a96e2d35.bin │ ├── GameVariant │ │ ├── breakout-da2e6ea22d5841eb8e6c00adba66e90f.bin │ │ ├── breakoutarena-b73baa645525449786fd25751464831b.bin │ │ ├── btbctf-0b50d23b62f240029613b96056776444.bin │ │ ├── btbslayer-685e4c6215094ef4a35d2132aded17c1.bin │ │ ├── btbstrongholds-af28db9a577a4c539ab3019cca365235.bin │ │ ├── ctf-725616b98620404cae0718fbcbda89fd.bin │ │ ├── ctffiesta-d7f1e8e02a404fe1a5c568cefb4267f7.bin │ │ ├── ffarockets-bdd5d5aaaabc4617bc7dd6e54ce25563.bin │ │ ├── ffaslayer-2c7a70789db149609997d38fca5e5a5b.bin │ │ ├── fiestaclassic-2fe2c74175174d2299cb227a3bde43a2.bin │ │ ├── forge-forge-32e5bc0d57be4b778ea9d20b3d81cfe0.bin │ │ ├── grifball-5bd26205cfc14b4281898905b26f31fa.bin │ │ ├── infection-56136ef7f11e4f5d9387de723275d273.bin │ │ ├── neutralbomb-e1cdb2470b1a486ca869bde8a48400c6.bin │ │ ├── neutralbombfiesta-d263ecf840f8445b95c68c278cb54e5b.bin │ │ ├── neutralflag-d6d75b79666e40899f0498995a2adaa8.bin │ │ ├── rockets-a3a1e1990a97417bb2509de7eabdd911.bin │ │ ├── shottysnipers-21a2218c89264c65a147e5772b7360b6.bin │ │ ├── slayer-26757b93e195451a819657981091d837.bin │ │ ├── snipers-0940063442624ad0a2cd24bf56d4385f.bin │ │ ├── strongholds-5f42bbdf69524e3ab0d8c7063ed1a6b8.bin │ │ ├── strongholdsfiesta-6d83d33fad4a49678210577088b5737f.bin │ │ └── swat-a0d00f4a99c84dc8a1575110cb0839ec.bin │ ├── MapVariant │ │ ├── altitude-04f661b2e1094ee48e239d5a793edb85.bin │ │ ├── antifreeze-779fb073ce8449959b4be377b9d56183.bin │ │ ├── basin-ddb0c305f51444f2af67395ba5dcf451.bin │ │ ├── crossfire-fc9e302c62ba40dcbb9d00b6fbdada15.bin │ │ ├── deadlock-418c237944ca48f482ac38e1f30c5ab0.bin │ │ ├── entombed-c41e566f551246e68e98927851953b96.bin │ │ ├── fo01_terrain_alpine_default-c2815be17c79462eb4a74a88fb24bc51.bin │ │ ├── fo02_glacier_default-493a25aaaccb4f4499c8d047737c8e27.bin │ │ ├── fo03_space_default-a18d330c8c3c461187e74c87f877d57a.bin │ │ ├── fo_arena_breakout_default-bc9d625c86c245b9ae3c1771b4444594.bin │ │ ├── gambol-5a6638d5b2934790bb9a8c807a03cb0d.bin │ │ ├── grifball_court-eb6836c5b74c4d71b49ea650fea4be8d.bin │ │ ├── guillotine-664e519842254945b53d239734ab99cb.bin │ │ ├── ng11_la_courtyard_default-56f14204b3ff45c0a9b47df301ee64c0.mvar │ │ ├── ng11r_la_courtyard_remix_default-4092003db68d4341b5741a83a685bdf7.bin │ │ ├── ng20_sa_towers_default-ed9d819fbb7f48c29832f64a339c7517.bin │ │ ├── ng23_ss_skew_default-c7ec948c33b04812ab0bde0659cde4f6.mvar │ │ ├── ng23r_ss_skew_remix_default-f12c35fb26684e3c8221b22a5769eae1.bin │ │ ├── ng25_ss_pistons_default-bf1d2933edb44c4e85c2b5df77eaecad.mvar │ │ ├── ng25r_ss_pistons_remixed_default-476c521c30bd4f10ad510948b686801b.bin │ │ ├── ng42_acropolis_default-6d8434e61e464ba8bda88dab1c1dcdc5.mvar │ │ ├── ng42r_acropolis_remix_default-eb7308f380a24f6085ce89f387912400.mvar │ │ ├── ng43_midship_default-e19029bb12d44ce29fa34b0173babb1a.mvar │ │ ├── ng43r_midship_remix_default-da70b7f11ee5469dbcc46fa797f57e56.mvar │ │ ├── ng50_ss_coliseum_default-882daceb874d4aedb3aaaf09d52dd30a.mvar │ │ ├── ng50r_ss_coliseum_remix_default-30fdc33055274858bfbf4580e9b7eea5.mvar │ │ ├── orion-77d33342ff444a2da6265342effed023.bin │ │ ├── pegasus-5fee24e698634307b511bb9bb30df40c.bin │ │ ├── recurve-613d5048c4b9442cbd2f13dc383862ea.bin │ │ ├── trench-6b92d7ebb18b4e11977cfca0c173f18e.bin │ │ └── trident-99004aa5a5814e93827adbb2d649c033.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── forge │ │ │ └── forge.lua │ │ ├── infection │ │ │ ├── hs_infection.lua │ │ │ ├── infection.lua │ │ │ └── infectionconfig.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── sportsball │ │ │ ├── assault.lua │ │ │ ├── grifball.lua │ │ │ ├── grifballconfig.lua │ │ │ ├── sportsball.lua │ │ │ └── sportsballConfig.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 85747.16.06.17.2300-2 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-65bbbd4dbbbc44ec9492119952193253.bin │ │ ├── capturetheflag_customgamesuimarkup_en-5fed285f0e7149309b30acc5a0e84108.bin │ │ ├── infection_customgamesuimarkup_en-f90b95a4ecf34e17a8c6dea3de18ed23.bin │ │ ├── slayer_customgamesuimarkup_en-d2b5e9c5ed46436b9e26083e77c3747a.bin │ │ ├── sportsball_customgamesuimarkup_en-4b0d0d0d19d84896a18fccf010e41cc7.bin │ │ └── strongholds_customgamesuimarkup_en-bcfbc9ce000a412689573743a96e2d35.bin │ ├── GameVariant │ │ ├── breakout-da2e6ea22d5841eb8e6c00adba66e90f.bin │ │ ├── breakoutarena-b73baa645525449786fd25751464831b.bin │ │ ├── btbctf-0b50d23b62f240029613b96056776444.bin │ │ ├── btbslayer-685e4c6215094ef4a35d2132aded17c1.bin │ │ ├── btbstrongholds-af28db9a577a4c539ab3019cca365235.bin │ │ ├── ctf-725616b98620404cae0718fbcbda89fd.bin │ │ ├── ctffiesta-d7f1e8e02a404fe1a5c568cefb4267f7.bin │ │ ├── ffarockets-bdd5d5aaaabc4617bc7dd6e54ce25563.bin │ │ ├── ffaslayer-2c7a70789db149609997d38fca5e5a5b.bin │ │ ├── fiestaclassic-2fe2c74175174d2299cb227a3bde43a2.bin │ │ ├── forge-forge-e896eedc57224cc59de174f6cd992617.bin │ │ ├── grifball-5bd26205cfc14b4281898905b26f31fa.bin │ │ ├── infection-56136ef7f11e4f5d9387de723275d273.bin │ │ ├── neutralbomb-e1cdb2470b1a486ca869bde8a48400c6.bin │ │ ├── neutralflag-d6d75b79666e40899f0498995a2adaa8.bin │ │ ├── rockets-a3a1e1990a97417bb2509de7eabdd911.bin │ │ ├── shottysnipers-21a2218c89264c65a147e5772b7360b6.bin │ │ ├── slayer-26757b93e195451a819657981091d837.bin │ │ ├── snipers-0940063442624ad0a2cd24bf56d4385f.bin │ │ ├── strongholds-5f42bbdf69524e3ab0d8c7063ed1a6b8.bin │ │ ├── strongholdsfiesta-6d83d33fad4a49678210577088b5737f.bin │ │ └── swat-a0d00f4a99c84dc8a1575110cb0839ec.bin │ ├── MapVariant │ │ ├── altitude-598123db89e34007a4faa96b00d7dd68.bin │ │ ├── antifreeze-64d12561c718467b9eca50dd92c9a629.bin │ │ ├── basin-ef0e7d442fb6491fa8712cc3b6c60811.bin │ │ ├── crossfire-34e40dcd2c2e4e75a15082ebafdf7e52.bin │ │ ├── deadlock-403612ed16da4bfd95d789a4a3866644.mvar │ │ ├── entombed-2852257574a542f381f158192b6231e2.bin │ │ ├── fo01_terrain_alpine_default-d722d8e604cc4f4397c1f4d25bd24eb8.bin │ │ ├── fo02_glacier_default-5eae4060cc374c4bacfeff8147e80994.bin │ │ ├── fo03_space_default-6acaa4aca89b4dc3b999d2c251f88f39.bin │ │ ├── fo04_ocean-2f30f899de5e4342b4a96093954cb4b7.bin │ │ ├── fo_arena_breakout_default-094c1573d2584ce0a0b6c2156fbf6969.bin │ │ ├── gambol-c3fa26feffde42948f62770ebbcb82aa.bin │ │ ├── grifball_court-b5d6a501d5404099b9c543c1ab443609.bin │ │ ├── guillotine-9b996e8cea0f4123b0d1e659c6d51d36.mvar │ │ ├── ng11_la_courtyard_default-69dc4ec2b21149409e4cc55d02530edc.mvar │ │ ├── ng11r_la_courtyard_remix_default-09477ca64609463ba5668ff1ad72c512.bin │ │ ├── ng20_sa_towers_default-05dc2e8eac7a4a0e90255288d6db0e84.bin │ │ ├── ng20r_sa_towers_remix_default-a4c9cd34d44440719aa8533d78e0ed67.mvar │ │ ├── ng23_ss_skew_default-5df86320dceb43f9808d34a7fd4bc455.bin │ │ ├── ng23r_ss_skew_remix_default-0bfe8a8d8d924f758dbfaf9b6ccd9dbf.bin │ │ ├── ng25_ss_pistons_default-08c73bb2b33b4ac8bcd32026c9b50580.bin │ │ ├── ng25r_ss_pistons_remixed_default-d228221a00f5452690698ef3979abc1e.bin │ │ ├── ng42_acropolis_default-399fb23cbd2f47eaa035d3da99a6ba99.bin │ │ ├── ng42r_acropolis_remix_default-6b71150eac144b9ba337ca19e3c86751.bin │ │ ├── ng43_midship_default-51781767226149109f0d762bd4c177b2.bin │ │ ├── ng43r_midship_remix_default-e350f819d7974803a395805479564c64.bin │ │ ├── ng50_ss_coliseum_default-c98ceeccc2de421687a3319b3165898b.bin │ │ ├── ng50r_ss_coliseum_remix_default-388bdb5b536d49a1b71ea2b284256753.mvar │ │ ├── orion-b06ca9bed49e4eb0a795cfeb48bdb9a4.bin │ │ ├── pegasus-a8a2c979da5c49f09b7dca55368d7928.bin │ │ ├── recurve-33ef3a8fcebd4b8da57807d4b6c863d9.bin │ │ ├── trench-7278f717ea95499a9f819f0999f37c68.bin │ │ └── trident-f4f7db366b444a53957663aa1121d4fa.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── forge │ │ │ └── forge.lua │ │ ├── infection │ │ │ ├── hs_infection.lua │ │ │ ├── infection.lua │ │ │ └── infectionconfig.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── sportsball │ │ │ ├── assault.lua │ │ │ ├── grifball.lua │ │ │ ├── grifballconfig.lua │ │ │ ├── sportsball.lua │ │ │ └── sportsballConfig.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 88482.16.08.28.2300-2 │ ├── EditableOptionsDefinition │ │ ├── breakout_customgamesuimarkup_en-bb25c443d35c444fbc4e896cb3277154.bin │ │ ├── capturetheflag_customgamesuimarkup_en-b5f6021fe12c44ab886dbf4f35d72a80.bin │ │ ├── infection_customgamesuimarkup_en-8392765f2cd14c00b56fcb662f4c0d11.bin │ │ ├── slayer_customgamesuimarkup_en-2646681786f440c09c91ce62669bcaee.bin │ │ ├── sportsball_customgamesuimarkup_en-81c8d23588974ac1aa82bed4ef8ad2a3.bin │ │ └── strongholds_customgamesuimarkup_en-88b5a37fe70946c799ffe60e700b41c7.bin │ ├── GameVariant │ │ ├── breakout-breakout-855c893fd72e48ae928d66fb26b8b34d.bin │ │ ├── breakout-breakoutarena-b6cf76386f0444eb95e9d7444de7ccbf.bin │ │ ├── capturetheflag-btbctf-1a873523bf784c59853814a9e5c8a0cc.bin │ │ ├── capturetheflag-neutralflag-14840bd315a949b4965e9a6856e7b6da.bin │ │ ├── capturetheflag-standard-ba89f1cc629a48bdab20b273b8777d9e.bin │ │ ├── capturetheflag-standardfiesta-cc6f5eb4e43f4233a9ea34abf8fe3d74.bin │ │ ├── forge-forge-bfcdc054ccf24d0796a276345a78c813.bin │ │ ├── infection-infection-6d906042f6294b689f02f7bb189cfdd0.bin │ │ ├── slayer-bigteambattle-013b9ee9fc254791aa8eccbba95b83cd.bin │ │ ├── slayer-ffarockets-1ca228d35dcf4cfa98ee7d5a3a888246.bin │ │ ├── slayer-ffaslayer-e6c3d7d588504c84bad195b636b08b9d.bin │ │ ├── slayer-fiesta-f7f8c0d3c9a841ec8eec7eda1ef9f148.bin │ │ ├── slayer-fiestaclassic-245393bd775e4de585332f137e878a9f.bin │ │ ├── slayer-rockets-ed15ca3898ff498c95296c97eb085f78.bin │ │ ├── slayer-shottysnipers-23e99f9bbfdf431ab6ffbe437489214d.bin │ │ ├── slayer-slayer-2a041c438295451c8c111fe4377663c9.bin │ │ ├── slayer-snipers-ffceb3fce1124d108e96d60591bb1b0c.bin │ │ ├── slayer-swat-4e8f84ded7fe4ab38d217c99589e7cf2.bin │ │ ├── sportsball-grifball-c1edd4ec8cfa4fcebb2ce231b35329a8.bin │ │ ├── sportsball-neutralbomb-a6399e8735724f8fb5184219912d95d4.bin │ │ ├── sportsball-neutralbombfiesta-642b46b4f17d41f9aa1894d8ecf1ae56.bin │ │ ├── strongholds-btbstrongholds-00addab9beeb423d95da1952483bf66d.bin │ │ ├── strongholds-strongholds-f943790240444835907242aca49cb98f.bin │ │ └── strongholds-strongholdsfiesta-1683cb1885f543c59f8487e0a921ed81.bin │ ├── MapVariant │ │ ├── altitude-ac7cc17dad7545c59346ad1789026e79.bin │ │ ├── antifreeze-abe9b68ba82a41448da1128df08278fb.bin │ │ ├── basin-6448a7227076430097fb7d3d546ee47e.bin │ │ ├── crossfire-719198ec2a79448ca0cd5fba53395ab6.bin │ │ ├── deadlock-3105639d91b441a7a5c30a841c8bac9e.mvar │ │ ├── entombed-a1df038adf5c4b21b6b0f726655a6a5e.bin │ │ ├── fo01_terrain_alpine_default-c12df1f92a794818b9172835571f30a0.bin │ │ ├── fo02_glacier_default-8e689ff1de44408084d12c05ff13cff0.bin │ │ ├── fo03_space_default-8a24fb8882a4401d8bec575acc48184d.bin │ │ ├── fo04_ocean-9a9436ebd3114be1b948c749603a9e10.bin │ │ ├── fo_arena_breakout_default-43533f735d384a91948f74e7367b3710.bin │ │ ├── gambol-b310f6e35d5945fa98cb655d9ac67932.bin │ │ ├── grifball_court-4fbf5961bdc249e1bd36bebf79a80995.bin │ │ ├── guillotine-6d283f6979ec483b9caa5f000ab143df.bin │ │ ├── ng11_la_courtyard_default_19fix-58d5dd33b7454b7396c3cef64ee1bcef.mvar │ │ ├── ng11r_la_courtyard_remix_default-57612c1bef6a479793eafa18c433ebf3.mvar │ │ ├── ng20_sa_towers_default_19fix-a02c0577f30947d89bdfaf1668d77b8e.mvar │ │ ├── ng20r_sa_towers_remix_default-8348930fee3147ef9c78af10432cb30c.bin │ │ ├── ng23_ss_skew_default-395e68173c784ff79bb218e378a3794a.bin │ │ ├── ng23r_ss_skew_remix_default-270f802fd7b3471bb1376539b2705746.mvar │ │ ├── ng25_ss_pistons_default-2ef1487189284c26a3125457a199bcf8.bin │ │ ├── ng25r_ss_pistons_remixed_default-79bae36d41394dd982fbd714e8765a4b.mvar │ │ ├── ng42_acropolis_default-30f8293848714f51a6bf5640b50610ff.mvar │ │ ├── ng42r_acropolis_remix_default-0a5205b3b8444ef1bfc991e3f221bb1c.bin │ │ ├── ng43_midship_default-65c74baaa76f45029140228855a25c28.bin │ │ ├── ng43r_midship_remix_default-7116b3e93c9d46558cbc4a72897d4c6d.mvar │ │ ├── ng50_ss_coliseum_default_namefix-1e760b7eb0034d3dabec6b5aba5f132a.mvar │ │ ├── ng50r_ss_coliseum_remix_default-f548ebdbd63a4bdba832372a1d0bd581.bin │ │ ├── ng93_haven_default-b743fbf273854484829b851dd934590e.mvar │ │ ├── orion-e665cf1a3ce44a35ab3d7e70ff6b797e.bin │ │ ├── pegasus-92ee81cdf83c4d599f6eaeb70c02335a.bin │ │ ├── recurve-db47b0f57a8e45baa644c82badffe3d1.bin │ │ ├── trench-8f6e36336b194ee2a8b8b4a568652194.bin │ │ └── trident-20dcf4fd3b02498f857020a18e244bf6.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ ├── breakoutHighLethalityConfig.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── forge │ │ │ └── forge.lua │ │ ├── infection │ │ │ ├── hs_infection.lua │ │ │ ├── infection.lua │ │ │ └── infectionconfig.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── sportsball │ │ │ ├── assault.lua │ │ │ ├── grifball.lua │ │ │ ├── grifballconfig.lua │ │ │ ├── sportsball.lua │ │ │ └── sportsballConfig.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua ├── 91713.16.12.05.2301-3 │ ├── EditableOptionsDefinition │ │ ├── Breakout_CustomGamesUIMarkup_en.bin │ │ ├── CaptureTheFlag_CustomGamesUIMarkup_en.bin │ │ ├── Infection_CustomGamesUIMarkup_en.bin │ │ ├── Minigame_CustomGamesUIMarkup_en.bin │ │ ├── Slayer_CustomGamesUIMarkup_en.bin │ │ ├── Sportsball_CustomGamesUIMarkup_en.bin │ │ └── Strongholds_CustomGamesUIMarkup_en.bin │ ├── GameVariant │ │ ├── Breakout-Breakout.bin │ │ ├── CaptureTheFlag-BTBCTF.bin │ │ ├── CaptureTheFlag-NeutralFlag.bin │ │ ├── CaptureTheFlag-Standard.bin │ │ ├── CaptureTheFlag-StandardFiesta.bin │ │ ├── Forge-Forge.bin │ │ ├── Infection-Infection.bin │ │ ├── Minigame-Minigame.bin │ │ ├── Slayer-BigTeamBattle.bin │ │ ├── Slayer-FFARockets.bin │ │ ├── Slayer-FFASlayer.bin │ │ ├── Slayer-Fiesta.bin │ │ ├── Slayer-FiestaClassic.bin │ │ ├── Slayer-Rockets.bin │ │ ├── Slayer-SWAT.bin │ │ ├── Slayer-ShottySnipers.bin │ │ ├── Slayer-Slayer.bin │ │ ├── Slayer-Snipers.bin │ │ ├── Sportsball-Grifball.bin │ │ ├── Sportsball-NeutralBomb.bin │ │ ├── Sportsball-NeutralBombFiesta.bin │ │ ├── Strongholds-BTBStrongholds.bin │ │ ├── Strongholds-Strongholds.bin │ │ └── Strongholds-StrongholdsFiesta.bin │ ├── MapVariant │ │ ├── altitude.bin │ │ ├── antifreeze.bin │ │ ├── basin.bin │ │ ├── crossfire.bin │ │ ├── deadlock3.bin │ │ ├── entombed.bin │ │ ├── fo01_terrain_alpine_default.bin │ │ ├── fo02_glacier_default.bin │ │ ├── fo03_space_default.bin │ │ ├── fo04_ocean.bin │ │ ├── fo05_desert.bin │ │ ├── fo06_deepsea.bin │ │ ├── fo_arena_breakout_default.bin │ │ ├── gambol.bin │ │ ├── grifball_court.bin │ │ ├── guillotine2_1.bin │ │ ├── ng11_la_courtyard_default.bin │ │ ├── ng11r_la_courtyard_remix_default.bin │ │ ├── ng20_sa_towers_refresh.bin │ │ ├── ng20r_sa_towers_remix_default.bin │ │ ├── ng23_ss_skew_default.bin │ │ ├── ng23r_ss_skew_remix_default.bin │ │ ├── ng25_ss_pistons_default.bin │ │ ├── ng25r_ss_pistons_remixed_default.bin │ │ ├── ng42_acropolis_default.bin │ │ ├── ng42r_acropolis_remix_default.bin │ │ ├── ng43_midship_default.bin │ │ ├── ng43r_midship_remix_refresh.bin │ │ ├── ng50_ss_coliseum_default.bin │ │ ├── ng50r_ss_coliseum_remix_default.bin │ │ ├── ng93_haven_default.bin │ │ ├── orionii.bin │ │ ├── pegasusii.bin │ │ ├── recurve2.bin │ │ ├── testsitev.bin │ │ ├── trench.bin │ │ └── trident.bin │ └── tags │ │ └── multiplayer │ │ └── lua │ │ ├── arenamedalevents.lua │ │ ├── arenasharedevents.lua │ │ ├── captureutilityfunctions.lua │ │ ├── defaultevents.lua │ │ ├── defaultmedalevents.lua │ │ ├── delegate.lua │ │ ├── engine.lua │ │ ├── eventutilityfunctions.lua │ │ ├── gameevents.lua │ │ ├── gamemodes │ │ ├── breakout │ │ │ ├── breakout.lua │ │ │ ├── breakoutHighLethalityConfig.lua │ │ │ └── breakoutconfig.lua │ │ ├── capturetheflag │ │ │ ├── capturetheflag.lua │ │ │ └── capturetheflagconfig.lua │ │ ├── forge │ │ │ └── forge.lua │ │ ├── infection │ │ │ ├── hs_infection.lua │ │ │ ├── infection.lua │ │ │ └── infectionconfig.lua │ │ ├── minigame │ │ │ └── minigame.lua │ │ ├── slayer │ │ │ └── slayer.lua │ │ ├── sportsball │ │ │ ├── assault.lua │ │ │ ├── grifball.lua │ │ │ ├── grifballconfig.lua │ │ │ ├── sportsball.lua │ │ │ └── sportsballConfig.lua │ │ ├── strongholds │ │ │ ├── strongholds.lua │ │ │ └── strongholdsconfig.lua │ │ └── warena │ │ │ └── warena.lua │ │ ├── pvpevents.lua │ │ ├── pvpmedalevents.lua │ │ ├── runevents.lua │ │ ├── timeevents.lua │ │ ├── utility.lua │ │ ├── vehicleconstants.lua │ │ ├── wargamesterminal.lua │ │ ├── weaponconstants.lua │ │ └── weaponpad.lua └── 93475.17.05.07.2300-2 │ ├── EditableOptionsDefinition │ ├── Breakout_CustomGamesUIMarkup_en.bin │ ├── CaptureTheFlag_CustomGamesUIMarkup_en.bin │ ├── Infection_CustomGamesUIMarkup_en.bin │ ├── Minigame_CustomGamesUIMarkup_en.bin │ ├── Slayer_CustomGamesUIMarkup_en.bin │ ├── Sportsball_CustomGamesUIMarkup_en.bin │ └── Strongholds_CustomGamesUIMarkup_en.bin │ ├── GameVariant │ ├── Breakout-Breakout.bin │ ├── CaptureTheFlag-BTBCTF.bin │ ├── CaptureTheFlag-CTFHCSv2.bin │ ├── CaptureTheFlag-NeutralFlag.bin │ ├── CaptureTheFlag-Standard.bin │ ├── CaptureTheFlag-SuperFiesta.bin │ ├── Forge-Forge.bin │ ├── Infection-Infection.bin │ ├── Minigame-AlpineRaceGCM.bin │ ├── Minigame-BattleGolf.bin │ ├── Minigame-CrazyKingGCM.bin │ ├── Minigame-DiminishingKingGCM.bin │ ├── Minigame-JungleRushGCM.bin │ ├── Minigame-Minigame.bin │ ├── Slayer-BigTeamBattle.bin │ ├── Slayer-FFARockets.bin │ ├── Slayer-FFASlayer.bin │ ├── Slayer-Fiesta.bin │ ├── Slayer-FiestaClassic.bin │ ├── Slayer-Rockets.bin │ ├── Slayer-SWAT.bin │ ├── Slayer-ShottySnipers.bin │ ├── Slayer-Slayer.bin │ ├── Slayer-SlayerHCSv2.bin │ ├── Slayer-Snipers.bin │ ├── Sportsball-BTBNeutralBomb.bin │ ├── Sportsball-Grifball.bin │ ├── Sportsball-NeutralBomb.bin │ ├── Sportsball-NeutralBombSuperFiesta.bin │ ├── Strongholds-BTBStrongholds.bin │ ├── Strongholds-Strongholds.bin │ ├── Strongholds-StrongholdsHCSv2.bin │ └── Strongholds-StrongholdsSuperFiesta.bin │ ├── MapVariant │ ├── alpinerally_gcm.bin │ ├── altitude.bin │ ├── antifreeze.bin │ ├── basin.bin │ ├── blokpit_gcm.bin │ ├── crossfire.bin │ ├── deadlock3.bin │ ├── entombed.bin │ ├── fo01_terrain_alpine_default.bin │ ├── fo02_glacier_default.bin │ ├── fo03_space_default.bin │ ├── fo04_ocean.bin │ ├── fo05_desert.bin │ ├── fo06_deepsea.bin │ ├── fo_arena_breakout_default.bin │ ├── freight_gcm.bin │ ├── gambol.bin │ ├── grifball_court.bin │ ├── guillotine2_1.bin │ ├── junglerush_gcm.bin │ ├── ng11_la_courtyard_default.bin │ ├── ng11_la_courtyard_hcs.bin │ ├── ng11r_la_courtyard_remix_default.bin │ ├── ng20_sa_towers_default.bin │ ├── ng20_sa_towers_hcs.bin │ ├── ng20r_sa_towers_remix_default.bin │ ├── ng23_ss_skew_default.bin │ ├── ng23_ss_skew_hcs.bin │ ├── ng23r_ss_skew_remix_default.bin │ ├── ng25_ss_pistons_default.bin │ ├── ng25r_ss_pistons_remixed_default.bin │ ├── ng42_acropolis_default.bin │ ├── ng42_acropolis_hcs.bin │ ├── ng42r_acropolis_remix_default.bin │ ├── ng42r_acropolis_remix_hcs.bin │ ├── ng43_midship_default.bin │ ├── ng43_midship_hcs.bin │ ├── ng43r_midship_remix_default.bin │ ├── ng43r_midship_remix_hcs.bin │ ├── ng50_ss_coliseum_default.bin │ ├── ng50_ss_coliseum_hcs.bin │ ├── ng50r_ss_coliseum_remix_default.bin │ ├── ng93_haven_default.bin │ ├── orionii.bin │ ├── pegasusii.bin │ ├── recurve2.bin │ ├── sandtrapresort_gcm.bin │ ├── testsitev.bin │ ├── trench.bin │ └── trident.bin │ └── tags │ └── multiplayer │ └── lua │ ├── arenamedalevents.lua │ ├── arenasharedevents.lua │ ├── captureutilityfunctions.lua │ ├── defaultevents.lua │ ├── defaultmedalevents.lua │ ├── delegate.lua │ ├── engine.lua │ ├── eventutilityfunctions.lua │ ├── gameevents.lua │ ├── gamemodes │ ├── breakout │ │ ├── breakout.lua │ │ ├── breakoutHighLethalityConfig.lua │ │ └── breakoutconfig.lua │ ├── capturetheflag │ │ ├── capturetheflag.lua │ │ └── capturetheflagconfig.lua │ ├── forge │ │ └── forge.lua │ ├── infection │ │ ├── hs_infection.lua │ │ ├── infection.lua │ │ └── infectionconfig.lua │ ├── minigame │ │ └── minigame.lua │ ├── slayer │ │ └── slayer.lua │ ├── sportsball │ │ ├── assault.lua │ │ ├── grifball.lua │ │ ├── grifballconfig.lua │ │ ├── sportsball.lua │ │ └── sportsballConfig.lua │ ├── strongholds │ │ ├── strongholds.lua │ │ └── strongholdsconfig.lua │ └── warena │ │ └── warena.lua │ ├── pvpevents.lua │ ├── pvpmedalevents.lua │ ├── runevents.lua │ ├── timeevents.lua │ ├── utility.lua │ ├── vehicleconstants.lua │ ├── wargamesterminal.lua │ ├── weaponconstants.lua │ └── weaponpad.lua ├── Halo Infinite └── 199229.21.07.20.0001-2.flt002int │ ├── README.md │ └── data │ ├── globals │ ├── animation_node_graphs │ │ └── global_animation_graphs │ │ │ ├── master_graph.lua │ │ │ ├── player_master_graph.lua │ │ │ └── weapon_master_graph.lua │ ├── encounter │ │ ├── encounterinstance.lua │ │ └── objectives │ │ │ ├── assaultplayerobjective.lua │ │ │ ├── fanoutobjective.lua │ │ │ ├── followunitobjective.lua │ │ │ ├── holdareaobjective.lua │ │ │ ├── longrangeobjective.lua │ │ │ ├── objectivedefinition.lua │ │ │ ├── objectivelibrary.lua │ │ │ └── pointdefendobjective.lua │ ├── object_classes │ │ ├── animation_node_graphs │ │ │ ├── global_animation_control_parameters │ │ │ │ └── export │ │ │ │ │ └── global_animation_control_parameters.lua │ │ │ ├── global_animation_graphs │ │ │ │ └── export │ │ │ │ │ ├── airborne.lua │ │ │ │ │ ├── blendspaces.lua │ │ │ │ │ ├── clamber.lua │ │ │ │ │ ├── fire_and_aim.lua │ │ │ │ │ ├── idle.lua │ │ │ │ │ ├── locomotion.lua │ │ │ │ │ ├── melee_dive_throw_grenade.lua │ │ │ │ │ ├── replacement.lua │ │ │ │ │ └── state_logic.lua │ │ │ ├── global_animation_group_and_context.lua │ │ │ ├── global_animation_transition_blends.lua │ │ │ └── global_animation_utils.lua │ │ └── scripts │ │ │ ├── ability_energy_recovery.lua │ │ │ ├── ability_explosive_charge.lua │ │ │ ├── ability_heal_totem_burst.lua │ │ │ ├── ability_knockback.lua │ │ │ ├── ability_knockback_grenade.lua │ │ │ ├── ability_multi_holo.lua │ │ │ ├── ability_stasis_field.lua │ │ │ ├── academy │ │ │ ├── academy_bot_target.lua │ │ │ └── pelican_takeoff.lua │ │ │ ├── blueprint_generator_pistons.lua │ │ │ ├── bts_coin.lua │ │ │ ├── chief_openworld_abilities.lua │ │ │ ├── energy_shield.lua │ │ │ ├── equipment_regen_field.lua │ │ │ ├── fo_audio.lua │ │ │ ├── generic_ai.lua │ │ │ ├── health_pack_mp.lua │ │ │ ├── marine.lua │ │ │ ├── mp_equipment_classic_placement_kit.lua │ │ │ ├── mp_equipment_placement_base_kit.lua │ │ │ ├── mp_equipment_placement_kit.lua │ │ │ ├── mp_equipment_pod_placement_kit.lua │ │ │ ├── mp_equipment_shield_wall.lua │ │ │ ├── mp_grenade_classic_placement_kit.lua │ │ │ ├── mp_grenade_detonation.lua │ │ │ ├── mp_grenade_placement_base_kit.lua │ │ │ ├── mp_grenade_placement_kit.lua │ │ │ ├── mp_hacking_terminal.lua │ │ │ ├── mp_item_slidelocker_kit.lua │ │ │ ├── mp_powerup_placement_kit.lua │ │ │ ├── mp_spartan_test.lua │ │ │ ├── mp_vehicle_airdrop_placement_kit.lua │ │ │ ├── mp_vehicle_classic_placement_kit.lua │ │ │ ├── mp_vehicle_placement_kit.lua │ │ │ ├── mp_weapon_classic_placement_kit.lua │ │ │ ├── mp_weapon_full_placement_kit.lua │ │ │ ├── mp_weapon_placement_base_kit.lua │ │ │ ├── mp_weapon_placement_kit.lua │ │ │ ├── mp_weapon_pod_placement_kit.lua │ │ │ ├── multi_holo_bot.lua │ │ │ ├── ordnance_pod_mover.lua │ │ │ ├── primitives │ │ │ ├── primitive_ammo_container.lua │ │ │ ├── primitive_carriable.lua │ │ │ ├── primitive_damage_emitter.lua │ │ │ ├── primitive_explosive_large.lua │ │ │ ├── primitive_fusion_coil.lua │ │ │ ├── primitive_gravity_lift.lua │ │ │ ├── primitive_plasma_core.lua │ │ │ ├── primitive_shield_emitter.lua │ │ │ ├── primitive_socket.lua │ │ │ ├── primitive_socket_object_base_class.lua │ │ │ ├── primitive_switch.lua │ │ │ ├── primitive_switch_object_base_class.lua │ │ │ └── primitive_teleporter.lua │ │ │ ├── saber_launch_kit.lua │ │ │ ├── shock_chain_tracer.lua │ │ │ ├── unsc_wo_capture_pylon_a_mover_dm.lua │ │ │ ├── vehicle_shade_shield_helper.lua │ │ │ ├── vehicle_unarmed_hog.lua │ │ │ ├── vehicle_wraith_shield_helper.lua │ │ │ └── weapon_energy_sword_v003_arbiter.lua │ └── scripts │ │ ├── callbacks │ │ ├── globalaicallbacks.lua │ │ ├── globalcallbacks.lua │ │ ├── globalcallbacksystem.lua │ │ ├── globalencountercallbacks.lua │ │ ├── globalenginecallbacks.lua │ │ ├── globalequipmentcallbacks.lua │ │ ├── globalimmediateexecutioncallbacks.lua │ │ ├── globalnarrativecallbacks.lua │ │ ├── globalobjectcallbacks.lua │ │ ├── globalparcelcallbacks.lua │ │ ├── globalpersonalaicallbacks.lua │ │ ├── globalplayercallbacks.lua │ │ ├── globalstatecallbacks.lua │ │ ├── globalvehiclecallbacks.lua │ │ ├── globalwarmingupcallbacks.lua │ │ └── globalweaponcallbacks.lua │ │ ├── global_abilities.lua │ │ ├── global_academy.lua │ │ ├── global_ai.lua │ │ ├── global_animation.lua │ │ ├── global_armor_socket_attachments.lua │ │ ├── global_array.lua │ │ ├── global_asset_screenshot_debug.lua │ │ ├── global_audio.lua │ │ ├── global_audio_interface.lua │ │ ├── global_automation_scripting.lua │ │ ├── global_boundaries.lua │ │ ├── global_cage.lua │ │ ├── global_cage_audio.lua │ │ ├── global_camera.lua │ │ ├── global_campaign.lua │ │ ├── global_cinematic.lua │ │ ├── global_circular_buffer.lua │ │ ├── global_collectibles.lua │ │ ├── global_cortana.lua │ │ ├── global_custom_games.lua │ │ ├── global_debug.lua │ │ ├── global_debugdraw.lua │ │ ├── global_delivery_dropship.lua │ │ ├── global_descope_suppression.lua │ │ ├── global_devicemachines.lua │ │ ├── global_dialog.lua │ │ ├── global_dialog_helpers.lua │ │ ├── global_dialog_interface.lua │ │ ├── global_dialog_tags.lua │ │ ├── global_dialogue_state_conditions.lua │ │ ├── global_dialogue_state_manager.lua │ │ ├── global_dialogue_state_table.lua │ │ ├── global_dominion_controls.lua │ │ ├── global_effects.lua │ │ ├── global_engine_state.lua │ │ ├── global_fast_travel.lua │ │ ├── global_forge_scripting.lua │ │ ├── global_function_delegate.lua │ │ ├── global_fx_interface.lua │ │ ├── global_hstruct_debug.lua │ │ ├── global_hstructs.lua │ │ ├── global_imgui.lua │ │ ├── global_imgui_helpers.lua │ │ ├── global_kits.lua │ │ ├── global_lighting.lua │ │ ├── global_loading.lua │ │ ├── global_logging.lua │ │ ├── global_logic.lua │ │ ├── global_lua_events.lua │ │ ├── global_map.lua │ │ ├── global_mixstates.lua │ │ ├── global_mode_init.lua │ │ ├── global_mp_spawn_influencers.lua │ │ ├── global_multiplayer.lua │ │ ├── global_multiplayer_init.lua │ │ ├── global_multiplayer_medals.lua │ │ ├── global_multiplayer_navpoint_states.lua │ │ ├── global_narrative.lua │ │ ├── global_narrative_broadcast_manager.lua │ │ ├── global_narrative_interface.lua │ │ ├── global_navpoints.lua │ │ ├── global_node_graph.lua │ │ ├── global_object_extensions.lua │ │ ├── global_object_node_graph.lua │ │ ├── global_objects.lua │ │ ├── global_parcels.lua │ │ ├── global_parcels_debug.lua │ │ ├── global_participant_attributes.lua │ │ ├── global_persistence.lua │ │ ├── global_persistence_interface.lua │ │ ├── global_physics.lua │ │ ├── global_players.lua │ │ ├── global_players_debug.lua │ │ ├── global_primitives.lua │ │ ├── global_queue.lua │ │ ├── global_refactor_system.lua │ │ ├── global_registertable.lua │ │ ├── global_requires.lua │ │ ├── global_sandbox_helpers.lua │ │ ├── global_scripts.lua │ │ ├── global_set.lua │ │ ├── global_squad_create.lua │ │ ├── global_stack.lua │ │ ├── global_statebroker.lua │ │ ├── global_table.lua │ │ ├── global_table_repository.lua │ │ ├── global_tagfilter.lua │ │ └── global_telemetry.lua │ ├── levels │ ├── assets │ │ └── shiva │ │ │ ├── forge_unsc │ │ │ └── accents │ │ │ │ └── fo_unsc_accent_fuel_canister_a │ │ │ │ └── fo_unsc_accent_fuel_canister_a.lua │ │ │ └── unsc │ │ │ └── props │ │ │ ├── radardish_a │ │ │ └── radardish_a__lua.lua │ │ │ ├── unsc_prop_missle_launcher_a │ │ │ └── unsc_prop_missle_launcher_a__lua.lua │ │ │ ├── unsc_prop_siren_light_a │ │ │ └── unsc_prop_siren_light__lua.lua │ │ │ └── unsc_prop_surveillance_camera_a │ │ │ └── surveillance_camera_a__lua.lua │ ├── campaign │ │ └── gameplay_kits │ │ │ └── tooltip_kit │ │ │ └── tooltip_popup.lua │ ├── multi │ │ ├── academy_weapon_drills │ │ │ └── scripts │ │ │ │ └── academy_weapon_drills.lua │ │ ├── ctf_bazaar │ │ │ └── scripts │ │ │ │ ├── ctf_bazaar.lua │ │ │ │ ├── ctf_bazaar_bot_score_attack.lua │ │ │ │ ├── ctf_bazaar_practice.lua │ │ │ │ └── ctf_bazaar_weapon_map_trainer.lua │ │ ├── sgh_blueprint │ │ │ └── scripts │ │ │ │ ├── sgh_blueprint.lua │ │ │ │ ├── sgh_blueprint_bot_score_attack.lua │ │ │ │ ├── sgh_blueprint_practice.lua │ │ │ │ └── sgh_blueprint_weapon_map_trainer.lua │ │ ├── sgh_interlock │ │ │ └── scripts │ │ │ │ ├── sgh_interlock.lua │ │ │ │ ├── sgh_interlock_bot_score_attack.lua │ │ │ │ ├── sgh_interlock_practice.lua │ │ │ │ ├── sgh_interlock_tutorial_composition_narrative.lua │ │ │ │ ├── sgh_interlock_tutorial_facility.lua │ │ │ │ ├── sgh_interlock_tutorial_livefire.lua │ │ │ │ ├── sgh_interlock_tutorial_narrative.lua │ │ │ │ └── sgh_interlock_weapon_map_trainer.lua │ │ └── va_launchsite │ │ │ └── scripts │ │ │ ├── va_launchsite.lua │ │ │ └── va_launchsite_practice.lua │ └── ui │ │ └── mainmenu │ │ └── scripts │ │ └── mainmenu.lua │ ├── lighting │ └── library │ │ └── scripts │ │ ├── dws_trigger_volume.lua │ │ ├── light_fixture.lua │ │ ├── monitor_light.lua │ │ └── toggle_all_lights_mp.lua │ ├── multiplayer │ └── lua │ │ └── weaponconstants.lua │ ├── objects │ ├── equipment │ │ └── proto │ │ │ ├── proto_quantum_translocator │ │ │ └── components │ │ │ │ └── scripts │ │ │ │ └── proto_quantum_translocator.lua │ │ │ └── proto_shroud_expanding │ │ │ └── scripts │ │ │ └── equipment_shroud_expanding.lua │ ├── multi │ │ └── elimination │ │ │ └── death_volume_kit_script.lua │ └── sandbox_objects │ │ └── communication_base_objects │ │ ├── communication_kit │ │ └── communication_kit.lua │ │ └── communication_object_base_class │ │ └── communication_object_base_class.lua │ ├── scripts │ ├── airdrop │ │ ├── airdrop.lua │ │ ├── flight.lua │ │ └── routerequest.lua │ ├── campaignlibrary │ │ └── persistence_snapshot.lua │ ├── gamemodes │ │ └── stockpile │ │ │ └── btb_stockpile_seed_spawner.lua │ ├── globals │ │ └── globalconstants.lua │ ├── helpers │ │ ├── quicktipsstartup.lua │ │ └── stopwatchdaemonstartup.lua │ └── parcellibrary │ │ ├── globalparcels │ │ ├── parcel_game_mode_manager.lua │ │ └── parcel_global_event_handling.lua │ │ ├── map_intro_camera_kit.lua │ │ ├── parcel_area_monitor.lua │ │ ├── parcel_attachable.lua │ │ ├── parcel_damageable.lua │ │ ├── parcel_dynamic_event_manager.lua │ │ ├── parcel_hackable_object.lua │ │ ├── parcel_interactive.lua │ │ ├── parcel_item_placement_base.lua │ │ ├── parcel_mp_equipment_ordnance_crate.lua │ │ ├── parcel_mp_equipment_placement.lua │ │ ├── parcel_mp_equipment_pod_placement.lua │ │ ├── parcel_mp_grenade_placement.lua │ │ ├── parcel_mp_item_manager.lua │ │ ├── parcel_mp_item_ordnance_crate.lua │ │ ├── parcel_mp_item_placement.lua │ │ ├── parcel_mp_item_seedsequence.lua │ │ ├── parcel_mp_item_vo_supervisor.lua │ │ ├── parcel_mp_ordnance_drop.lua │ │ ├── parcel_mp_seedsequence.lua │ │ ├── parcel_mp_vehicle_airdrop_placement.lua │ │ ├── parcel_mp_vehicle_placement.lua │ │ ├── parcel_mp_weapon_ordnance_crate.lua │ │ ├── parcel_mp_weapon_placement.lua │ │ ├── parcel_mp_weapon_pod_placement.lua │ │ ├── parcel_quick_tips.lua │ │ ├── parcel_refillable.lua │ │ ├── parcel_rockridge_missile_launcher.lua │ │ ├── parcel_seedsequence.lua │ │ ├── parcel_staterules.lua │ │ ├── parcel_stopwatch_daemon.lua │ │ ├── parcel_vehicle_shield_manager.lua │ │ ├── team_intro_camera_location_kit.lua │ │ ├── team_intro_squad_spawn_group_kit.lua │ │ └── winning_team_outro_kit.lua │ └── test │ ├── forge │ └── kit_script_mvar_test.lua │ └── jareis │ └── nseq_gaze │ └── nseq_gaze.lua ├── Halo Reach ├── 00095.11.04.09.1509.demo │ ├── README.md │ ├── Title │ │ └── 4d5389d8 │ │ │ └── default_hoppers │ │ │ ├── 00102 │ │ │ ├── game_set_015.bin │ │ │ ├── headhunter_default_054.bin │ │ │ ├── images │ │ │ │ └── hopper.jpg │ │ │ ├── koth_ffa_crazyking_054.bin │ │ │ ├── map_variants │ │ │ │ └── settlement_default_031.bin │ │ │ ├── slayer_ffa_054.bin │ │ │ └── slayer_ffa_dmr_054.bin │ │ │ ├── 00104 │ │ │ ├── ff_firefight_054.bin │ │ │ ├── ff_generator_defense_054.bin │ │ │ ├── game_set_015.bin │ │ │ └── images │ │ │ │ └── hopper.jpg │ │ │ ├── en │ │ │ ├── dynamic_global_nag.bin │ │ │ ├── dynamic_global_nag_image.jpg │ │ │ ├── file_megalo_categories.bin │ │ │ ├── file_predefined_queries.bin │ │ │ ├── matchmaking_banhammer_messages.bin │ │ │ ├── matchmaking_hopper_descriptions_003.bi │ │ │ ├── matchmaking_tips.bin │ │ │ ├── rsa_manifest.bin │ │ │ ├── user_nag_00001.bin │ │ │ └── user_nag_image_00001.jpg │ │ │ ├── manifest_001.bin │ │ │ ├── matchmaking_hopper_027.bin │ │ │ └── network_configuration_241.bin │ └── data │ │ └── levels │ │ ├── firefight │ │ └── ff10_prototype │ │ │ └── scripts │ │ │ └── ff10_prototype.hsc │ │ ├── multi │ │ └── 30_settlement │ │ │ └── scripts │ │ │ └── 30_settlement.hsc │ │ ├── solo │ │ └── m45 │ │ │ └── scripts │ │ │ └── m45.hsc │ │ └── ui │ │ └── mainmenu │ │ └── scripts │ │ └── mainmenu.hsc ├── 09449.10.03.25.1545.omaha_beta │ ├── README.md │ └── data │ │ └── levels │ │ ├── firefight │ │ └── ff10_prototype │ │ │ └── scripts │ │ │ └── ff10_prototype.hsc │ │ ├── multi │ │ ├── 20_sword_slayer │ │ │ └── scripts │ │ │ │ └── 20_sword_slayer.hsc │ │ └── 30_settlement │ │ │ └── scripts │ │ │ └── 30_settlement.hsc │ │ └── ui │ │ └── mainmenu │ │ └── scripts │ │ └── mainmenu.hsc ├── 09730.10.04.09.1309.omaha_delta │ ├── README.md │ └── data │ │ └── levels │ │ ├── firefight │ │ └── ff10_prototype │ │ │ └── scripts │ │ │ └── ff10_prototype.hsc │ │ ├── multi │ │ ├── 20_sword_slayer │ │ │ └── scripts │ │ │ │ └── 20_sword_slayer.hsc │ │ └── 30_settlement │ │ │ └── scripts │ │ │ └── 30_settlement.hsc │ │ └── ui │ │ └── mainmenu │ │ └── scripts │ │ └── mainmenu.hsc ├── 11860.10.07.24.0147.omaha_relea │ ├── README.md │ ├── data │ │ └── levels │ │ │ ├── dlc │ │ │ ├── cex_damnation │ │ │ │ └── scripts │ │ │ │ │ └── cex_damnation.hsc │ │ │ ├── cex_ff_halo │ │ │ │ └── scripts │ │ │ │ │ └── cex_ff_halo.hsc │ │ │ ├── cex_timberland │ │ │ │ └── scripts │ │ │ │ │ └── cex_timberland.hsc │ │ │ ├── condemned │ │ │ │ └── scripts │ │ │ │ │ └── condemned.hsc │ │ │ ├── ff_unearthed │ │ │ │ └── scripts │ │ │ │ │ └── ff_unearthed.hsc │ │ │ └── trainingpreserve │ │ │ │ └── scripts │ │ │ │ └── trainingpreserve.hsc │ │ │ ├── firefight │ │ │ ├── ff10_prototype │ │ │ │ └── scripts │ │ │ │ │ └── ff10_prototype.hsc │ │ │ ├── ff20_courtyard │ │ │ │ └── scripts │ │ │ │ │ └── ff20_courtyard.hsc │ │ │ ├── ff30_waterfront │ │ │ │ └── scripts │ │ │ │ │ └── ff30_waterfront.hsc │ │ │ ├── ff45_corvette │ │ │ │ └── scripts │ │ │ │ │ └── ff45_corvette.hsc │ │ │ ├── ff50_park │ │ │ │ └── scripts │ │ │ │ │ └── ff50_park.hsc │ │ │ ├── ff60_airview │ │ │ │ └── scripts │ │ │ │ │ └── ff60_airview.hsc │ │ │ ├── ff60_icecave │ │ │ │ └── scripts │ │ │ │ │ └── ff60_icecave.hsc │ │ │ └── ff70_holdout │ │ │ │ └── scripts │ │ │ │ └── ff70_holdout.hsc │ │ │ ├── multi │ │ │ ├── 20_sword_slayer │ │ │ │ └── scripts │ │ │ │ │ └── 20_sword_slayer.hsc │ │ │ ├── 30_settlement │ │ │ │ └── scripts │ │ │ │ │ └── 30_settlement.hsc │ │ │ ├── 35_island │ │ │ │ └── scripts │ │ │ │ │ └── 35_island.hsc │ │ │ ├── 45_aftship │ │ │ │ └── scripts │ │ │ │ │ └── 45_aftship.hsc │ │ │ ├── 45_launch_station │ │ │ │ └── scripts │ │ │ │ │ └── 45_launch_station.hsc │ │ │ ├── 50_panopticon │ │ │ │ └── scripts │ │ │ │ │ └── 50_panopticon.hsc │ │ │ ├── 52_ivory_tower │ │ │ │ └── scripts │ │ │ │ │ └── 52_ivory_tower.hsc │ │ │ ├── dlc │ │ │ │ ├── dlc_invasion │ │ │ │ │ └── scripts │ │ │ │ │ │ └── dlc_invasion.hsc │ │ │ │ └── dlc_slayer │ │ │ │ │ └── scripts │ │ │ │ │ └── dlc_slayer.hsc │ │ │ └── forge_halo │ │ │ │ └── scripts │ │ │ │ └── forge_halo.hsc │ │ │ ├── solo │ │ │ ├── m05 │ │ │ │ └── scripts │ │ │ │ │ └── m05.hsc │ │ │ ├── m10 │ │ │ │ └── scripts │ │ │ │ │ └── m10.hsc │ │ │ ├── m20 │ │ │ │ └── scripts │ │ │ │ │ └── m20.hsc │ │ │ ├── m30 │ │ │ │ └── scripts │ │ │ │ │ └── m30.hsc │ │ │ ├── m35 │ │ │ │ └── scripts │ │ │ │ │ └── m35.hsc │ │ │ ├── m45 │ │ │ │ └── scripts │ │ │ │ │ └── m45.hsc │ │ │ ├── m50 │ │ │ │ └── scripts │ │ │ │ │ └── m50.hsc │ │ │ ├── m52 │ │ │ │ └── scripts │ │ │ │ │ └── m52.hsc │ │ │ ├── m60 │ │ │ │ └── scripts │ │ │ │ │ └── m60.hsc │ │ │ ├── m70 │ │ │ │ └── scripts │ │ │ │ │ └── m70.hsc │ │ │ ├── m70_a │ │ │ │ └── scripts │ │ │ │ │ └── m70_a.hsc │ │ │ └── m70_bonus │ │ │ │ └── scripts │ │ │ │ └── m70_bonus.hsc │ │ │ └── ui │ │ │ └── mainmenu │ │ │ └── scripts │ │ │ └── mainmenu.hsc │ └── title storage │ │ ├── 00101 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00102 │ │ ├── game_set_015.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ ├── map_variants │ │ │ ├── affinity_default_031.bin │ │ │ ├── anchor9_default_031.bin │ │ │ ├── beaver_creek_default_031.bin │ │ │ ├── coastline_asylum_default_031.b │ │ │ ├── coastline_azimuth_default_031 │ │ │ ├── coastline_uncaged_default_031 │ │ │ ├── condemned_default_031.bin │ │ │ ├── condemned_uplink_031.bin │ │ │ ├── damnation_default_031.bin │ │ │ ├── enclosed_default_031.bin │ │ │ ├── forgeworld_chateau_default_031 │ │ │ ├── forgeworld_eden_minor_default_ │ │ │ ├── forgeworld_precipice_031.bin │ │ │ ├── forgeworld_renova_default_031 │ │ │ ├── forgeworld_think_twice_031.bin │ │ │ ├── hangemhigh_default_031.bin │ │ │ ├── ivory_tower_default_031.bin │ │ │ ├── kingdom_default_031.bin │ │ │ ├── launch_station_default_031.bin │ │ │ ├── prisoner_default_031.bin │ │ │ ├── settlement_default_031.bin │ │ │ ├── sword_base_default_031.bin │ │ │ ├── synapse_default_031.bin │ │ │ ├── tempest_default_031.bin │ │ │ └── treasury_default_031.bin │ │ ├── slayer_team_054.bin │ │ ├── slayer_team_covy_054.bin │ │ ├── slayer_team_dmr_054.bin │ │ └── slayer_team_pro_054.bin │ │ ├── 00103 │ │ ├── game_set_015.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ ├── invasion_054.bin │ │ ├── invasion_boneyard_054.bin │ │ ├── invasion_breakpoint_054.bin │ │ ├── invasion_skirmish_default_054.bin │ │ ├── invasion_skirmish_elite_054.bin │ │ ├── invasion_skirmish_spartan_054.bin │ │ ├── invasion_slayer_default_054.bin │ │ ├── invasion_slayer_light_default_054.bin │ │ ├── invasion_spire_054.bin │ │ └── map_variants │ │ │ ├── anchor9_default_031.bin │ │ │ ├── boneyard_default_031.bin │ │ │ ├── breakpoint_default_031.bin │ │ │ ├── coastline_hemorrhage_default_0 │ │ │ ├── coastline_paradiso_default_031 │ │ │ ├── forgeworld_broadcast_031.bin │ │ │ ├── forgeworld_floodgate_031.bin │ │ │ ├── forgeworld_overgrowth_031.bin │ │ │ ├── forgeworld_refinery_031.bin │ │ │ ├── launch_station_default_031.bin │ │ │ ├── panoptical_default_031.bin │ │ │ ├── settlement_default_031.bin │ │ │ ├── spire_default_031.bin │ │ │ ├── tempest_default_031.bin │ │ │ └── unanchored_default_031.bin │ │ ├── 00105 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00108 │ │ ├── campaign_default_054.bin │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00109 │ │ ├── game_set_015.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ ├── map_variants │ │ │ ├── breakpoint_default_031.bin │ │ │ ├── hangemhigh_default_031.bin │ │ │ ├── headlong_default_031.bin │ │ │ ├── highlands_default_031.bin │ │ │ ├── panoptical_default_031.bin │ │ │ ├── spire_default_031.bin │ │ │ ├── tempest_default_031.bin │ │ │ ├── temptation_031.bin │ │ │ └── timberland_default_031.bin │ │ ├── tu1_assault_big_default_054.bin │ │ ├── tu1_assault_big_neutral_bomb_054.bin │ │ ├── tu1_assault_big_one_bomb_054.bin │ │ ├── tu1_ctf_big_1flag_054.bin │ │ ├── tu1_ctf_big_multiflag_054.bin │ │ ├── tu1_slayer_big_team_054.bin │ │ ├── tu1_slayer_big_team_covy_054.bin │ │ ├── tu1_slayer_big_team_snipers_054.bin │ │ ├── tu1_stockpile_big_054.bin │ │ └── tu1_territories_big_054.bin │ │ ├── 00110 │ │ ├── game_set_015.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ ├── map_variants │ │ │ ├── anchor9_unanchored_swat_031.bi │ │ │ ├── beaver_creek_default_031.bin │ │ │ ├── coastline_asylum_default_031.b │ │ │ ├── condemned_default_031.bin │ │ │ ├── condemned_uplink_031.bin │ │ │ ├── countdown_swat_031.bin │ │ │ ├── damnation_default_031.bin │ │ │ ├── forgeworld_asylum_swat_031.bin │ │ │ ├── hangemhigh_default_031.bin │ │ │ ├── ivory_tower_default_031.bin │ │ │ ├── launch_station_default_031.bin │ │ │ ├── panoptical_default_031.bin │ │ │ ├── powerhouse_swat_031.bin │ │ │ ├── prisoner_default_031.bin │ │ │ ├── reflection_swat_031.bin │ │ │ ├── settlement_default_031.bin │ │ │ ├── sword_base_default_031.bin │ │ │ ├── tempest_temple_031.bin │ │ │ ├── zealot_arena_031.bin │ │ │ └── zealot_swat_031.bin │ │ ├── slayer_team_swat_054.bin │ │ ├── team_swat_magnum_054.bin │ │ ├── team_swat_oddball_054.bin │ │ ├── team_swat_stockpile_054.bin │ │ └── team_swat_territories_3plots_054.bin │ │ ├── 00111 │ │ ├── game_set_015.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ ├── map_variants │ │ │ ├── breakpoint_default_031.bin │ │ │ ├── coastline_hemorrhage_default_0 │ │ │ ├── coastline_uncaged_default_031 │ │ │ ├── damnation_default_031.bin │ │ │ ├── hangemhigh_default_031.bin │ │ │ ├── headlong_default_031.bin │ │ │ ├── highlands_default_031.bin │ │ │ ├── ivory_tower_default_031.bin │ │ │ ├── launch_station_default_031.bin │ │ │ ├── panoptical_default_031.bin │ │ │ ├── settlement_default_031.bin │ │ │ ├── tempest_default_031.bin │ │ │ ├── timberland_default_031.bin │ │ │ └── zealot_arena_031.bin │ │ ├── slayer_team_sniper_054.bin │ │ └── slayer_team_sniper_pro_054.bin │ │ ├── 00112 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00113 │ │ ├── game_set_015.bin │ │ ├── images │ │ │ └── hopper.jpg │ │ ├── infection_ffa_054.bin │ │ ├── infection_ffa_alpha_zombies_054.bin │ │ ├── infection_ffa_zombie_ghosts_054.bin │ │ └── map_variants │ │ │ ├── anchor9_deepscream9_031.bin │ │ │ ├── anchor9_default_031.bin │ │ │ ├── coastline_asylum_default_031.b │ │ │ ├── coastline_uncaged_default_031 │ │ │ ├── condemned_default_031.bin │ │ │ ├── condemned_uplink_031.bin │ │ │ ├── damnation_default_031.bin │ │ │ ├── damnation_purgatory_031.bin │ │ │ ├── headlong_default_031.bin │ │ │ ├── headlong_rigamortis_031.bin │ │ │ ├── ivory_tower_default_031.bin │ │ │ ├── launch_station_default_031.bin │ │ │ ├── panoptical_default_031.bin │ │ │ ├── prisoner_default_031.bin │ │ │ ├── prisoner_quarantine_031.bin │ │ │ ├── settlement_default_031.bin │ │ │ └── zealot_arena_031.bin │ │ ├── 00114 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00122 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00123 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00126 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00128 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00130 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00131 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00133 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00134 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00135 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00136 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00139 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00140 │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00141 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00143 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00145 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00146 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00201 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00202 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00203 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00204 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── 00205 │ │ ├── game_set_015.bin │ │ └── images │ │ │ └── hopper.jpg │ │ ├── README.MD │ │ ├── cht │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ └── matchmaking_tips.bin │ │ ├── de │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ └── matchmaking_tips.bin │ │ ├── dlc │ │ ├── anchor9_large.jpg │ │ ├── anchor9_small.jpg │ │ ├── breakpoint_large.jpg │ │ ├── breakpoint_small.jpg │ │ ├── cex_beaver_creek.jpg │ │ ├── cex_beaver_creek_sm.jpg │ │ ├── cex_damnation.jpg │ │ ├── cex_damnation_sm.jpg │ │ ├── cex_ff_halo.jpg │ │ ├── cex_ff_halo_sm.jpg │ │ ├── cex_hangemhigh.jpg │ │ ├── cex_hangemhigh_sm.jpg │ │ ├── cex_headlong.jpg │ │ ├── cex_headlong_sm.jpg │ │ ├── cex_prisoner.jpg │ │ ├── cex_prisoner_sm.jpg │ │ ├── cex_timberland.jpg │ │ ├── cex_timberland_sm.jpg │ │ ├── condemned.jpg │ │ ├── condemned_sm.jpg │ │ ├── ff_unearthed.jpg │ │ ├── ff_unearthed_sm.jpg │ │ ├── tempest_large.jpg │ │ ├── tempest_small.jpg │ │ ├── trainingpreserve.jpg │ │ └── trainingpreserve_sm.jpg │ │ ├── dlc_map_manifest.bin │ │ ├── dynamic_matchmaking_nightmap.jpg │ │ ├── dynamic_pres_hopper_statistics.bin │ │ ├── en │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ ├── tangerine_dynamic_global_nag.bin │ │ ├── tangerine_dynamic_global_nag_image.jpg │ │ ├── tangerine_file_predefined_queries.bin │ │ └── tangerine_matchmaking_tips.bin │ │ ├── fr │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ └── matchmaking_tips.bin │ │ ├── it │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ ├── matchmaking_tips.bin │ │ └── rsa_manifest.bin │ │ ├── jpn │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ └── matchmaking_tips.bin │ │ ├── kor │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ └── matchmaking_tips.bin │ │ ├── matchmaking_hopper_027.bin │ │ ├── mx │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ └── matchmaking_tips.bin │ │ ├── network_configuration_245.bin │ │ ├── pt │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ └── matchmaking_tips.bin │ │ └── sp │ │ ├── dynamic_global_nag.bin │ │ ├── dynamic_global_nag_image.jpg │ │ ├── file_megalo_categories.bin │ │ ├── file_predefined_queries.bin │ │ ├── matchmaking_banhammer_messages.bin │ │ ├── matchmaking_hopper_descriptions_003.bin │ │ └── matchmaking_tips.bin └── Windows - MCC Oct 24 2019 │ ├── build_tag.txt │ ├── data │ ├── globals │ │ ├── global_firefight.hsc │ │ ├── global_fork.hsc │ │ ├── global_hud.hsc │ │ ├── global_pelican.hsc │ │ ├── global_phantom.hsc │ │ └── global_scripts.hsc │ └── levels │ │ ├── dlc │ │ ├── cex_damnation │ │ │ └── scripts │ │ │ │ ├── cex_damnation_fragments.hsc │ │ │ │ ├── cex_damnation_performances.hsc │ │ │ │ └── cex_headlong.hsc │ │ ├── cex_ff_halo │ │ │ └── scripts │ │ │ │ ├── cex_ff_halo_fragments.hsc │ │ │ │ ├── cex_ff_halo_main.hsc │ │ │ │ └── cex_ff_halo_performances.hsc │ │ ├── condemned │ │ │ └── scripts │ │ │ │ ├── condemned_fragments.hsc │ │ │ │ ├── condemned_mission.hsc │ │ │ │ └── condemned_performances.hsc │ │ ├── ff_unearthed │ │ │ └── scripts │ │ │ │ ├── ff_unearthed_fragments.hsc │ │ │ │ ├── ff_unearthed_mission.hsc │ │ │ │ └── ff_unearthed_performances.hsc │ │ └── trainingpreserve │ │ │ └── scripts │ │ │ ├── trainingpreserve_fragments.hsc │ │ │ ├── trainingpreserve_mission.hsc │ │ │ └── trainingpreserve_performances.hsc │ │ ├── firefight │ │ ├── ff10_prototype │ │ │ └── scripts │ │ │ │ ├── ff10_prototype.hsc │ │ │ │ ├── ff10_prototype_fragments.hsc │ │ │ │ └── ff10_prototype_performances.hsc │ │ ├── ff20_courtyard │ │ │ └── scripts │ │ │ │ ├── ff20_courtyard.hsc │ │ │ │ ├── ff20_courtyard_fragments.hsc │ │ │ │ └── ff20_courtyard_performances.hsc │ │ ├── ff30_waterfront │ │ │ └── scripts │ │ │ │ ├── ff30_waterfront.hsc │ │ │ │ ├── ff30_waterfront_fragments.hsc │ │ │ │ └── ff30_waterfront_performances.hsc │ │ ├── ff45_corvette │ │ │ └── scripts │ │ │ │ ├── ff45_corvette_fragments.hsc │ │ │ │ ├── ff45_corvette_main.hsc │ │ │ │ └── ff45_corvette_performances.hsc │ │ ├── ff50_park │ │ │ └── scripts │ │ │ │ ├── ff50_park_fragments.hsc │ │ │ │ ├── ff50_park_main.hsc │ │ │ │ └── ff50_park_performances.hsc │ │ ├── ff60_airview │ │ │ └── scripts │ │ │ │ ├── ff60_airview.hsc │ │ │ │ ├── ff60_airview_fragments.hsc │ │ │ │ └── ff60_airview_performances.hsc │ │ ├── ff60_icecave │ │ │ └── scripts │ │ │ │ ├── ff60_icecave.hsc │ │ │ │ ├── ff60_icecave_fragments.hsc │ │ │ │ └── ff60_icecave_performances.hsc │ │ └── ff70_holdout │ │ │ └── scripts │ │ │ ├── ff70_holdout.hsc │ │ │ ├── ff70_holdout_fragments.hsc │ │ │ └── ff70_holdout_performances.hsc │ │ ├── multi │ │ └── dlc │ │ │ └── dlc_slayer │ │ │ └── scripts │ │ │ ├── dlc_slayer_fragments.hsc │ │ │ └── dlc_slayer_performances.hsc │ │ └── solo │ │ ├── m05 │ │ └── scripts │ │ │ ├── m05.hsc │ │ │ ├── m05_fragments.hsc │ │ │ └── m05_performances.hsc │ │ ├── m10 │ │ └── scripts │ │ │ ├── m10.hsc │ │ │ ├── m10_ambient.hsc │ │ │ ├── m10_fragments.hsc │ │ │ ├── m10_insertion.hsc │ │ │ ├── m10_performances.hsc │ │ │ └── m10_test.hsc │ │ ├── m20 │ │ └── scripts │ │ │ ├── m20.hsc │ │ │ ├── m20_ambient.hsc │ │ │ ├── m20_fragments.hsc │ │ │ ├── m20_insertion.hsc │ │ │ └── m20_performances.hsc │ │ ├── m30 │ │ └── scripts │ │ │ ├── m30.hsc │ │ │ ├── m30_ambient.hsc │ │ │ ├── m30_fragments.hsc │ │ │ ├── m30_insertion.hsc │ │ │ └── m30_performances.hsc │ │ ├── m35 │ │ └── scripts │ │ │ ├── m35_ambient.hsc │ │ │ ├── m35_fragments.hsc │ │ │ ├── m35_insertion.hsc │ │ │ ├── m35_mission.hsc │ │ │ ├── m35_performances.hsc │ │ │ └── m35_test.hsc │ │ ├── m45 │ │ └── scripts │ │ │ ├── m45_ambient.hsc │ │ │ ├── m45_fragments.hsc │ │ │ ├── m45_insertion.hsc │ │ │ ├── m45_mission.hsc │ │ │ └── m45_performances.hsc │ │ ├── m50 │ │ └── scripts │ │ │ ├── m50.hsc │ │ │ ├── m50_ambient.hsc │ │ │ ├── m50_fragments.hsc │ │ │ ├── m50_insertion.hsc │ │ │ └── m50_performances.hsc │ │ ├── m52 │ │ └── scripts │ │ │ ├── m52_ambient.hsc │ │ │ ├── m52_fragments.hsc │ │ │ ├── m52_insertion.hsc │ │ │ ├── m52_mission.hsc │ │ │ └── m52_performances.hsc │ │ ├── m60 │ │ └── scripts │ │ │ ├── m60_ambient.hsc │ │ │ ├── m60_fragments.hsc │ │ │ ├── m60_insertion.hsc │ │ │ ├── m60_mission.hsc │ │ │ └── m60_performances.hsc │ │ ├── m70 │ │ └── scripts │ │ │ ├── auto_generated_cinematic_script.hsc │ │ │ ├── m70.hsc │ │ │ ├── m70_ambient.hsc │ │ │ ├── m70_fragments.hsc │ │ │ ├── m70_insertion.hsc │ │ │ └── m70_performances.hsc │ │ └── m70_bonus │ │ └── scripts │ │ ├── m70_bonus.hsc │ │ ├── m70_bonus_ambient.hsc │ │ ├── m70_bonus_fragments.hsc │ │ ├── m70_bonus_insertion.hsc │ │ └── m70_bonus_performances.hsc │ └── unused map images │ ├── c_M40.jpg │ ├── c_M40_sm.jpg │ ├── m_aftship.jpg │ ├── m_aftship_sm.jpg │ ├── m_arena.jpg │ ├── m_arena_sm.jpg │ ├── m_azimuth.jpg │ ├── m_azimuth_sm.jpg │ ├── m_badlands.jpg │ ├── m_badlands_sm.jpg │ ├── m_blockout.jpg │ ├── m_blockout_sm.jpg │ ├── m_boneyard.jpg │ ├── m_boneyard_sm.jpg │ ├── m_farm.jpg │ ├── m_farm_sm.jpg │ ├── m_gulch.jpg │ ├── m_gulch_sm.jpg │ ├── m_panopticon.jpg │ ├── m_panopticon_sm.jpg │ ├── m_powerhouse.jpg │ ├── m_powerhouse_sm.jpg │ ├── m_pump_station.jpg │ ├── m_pump_station_sm.jpg │ ├── m_quarry.jpg │ ├── m_quarry_sm.jpg │ ├── m_settlement.jpg │ ├── m_settlement_sm.jpg │ ├── m_spartanland.jpg │ ├── m_spartanland_sm.jpg │ ├── m_stalagmite.jpg │ ├── m_stalagmite_sm.jpg │ ├── m_swording_action.jpg │ └── m_swording_action_sm.jpg ├── Halo ├── Windows - MCC 01.00.01.0563 Apr 17 2020 │ ├── README.md │ └── hs_doc.txt ├── Windows - MCC Mod Tools Jun 22 2021 │ ├── data │ │ ├── global_scripts.hsc │ │ └── levels │ │ │ ├── a10 │ │ │ └── scripts │ │ │ │ ├── base_a10.hsc │ │ │ │ ├── help_a10.hsc │ │ │ │ ├── mission_a10.hsc │ │ │ │ ├── x10_cinema.hsc │ │ │ │ ├── x20_cinema.hsc │ │ │ │ └── x30_cinema.hsc │ │ │ ├── a30 │ │ │ └── scripts │ │ │ │ ├── base_a30.hsc │ │ │ │ ├── cinematics_a30.hsc │ │ │ │ └── mission_a30.hsc │ │ │ ├── a50 │ │ │ └── scripts │ │ │ │ ├── base_a50.hsc │ │ │ │ ├── cinematics_a50.hsc │ │ │ │ ├── cinematics_a50_v2.hsc │ │ │ │ └── mission_a50.hsc │ │ │ ├── b30 │ │ │ └── scripts │ │ │ │ ├── base_b30.hsc │ │ │ │ ├── cinematics_b30.hsc │ │ │ │ └── mission_b30.hsc │ │ │ ├── b40 │ │ │ └── scripts │ │ │ │ ├── base_b40.hsc │ │ │ │ ├── cinematics_b40.hsc │ │ │ │ └── mission_b40.hsc │ │ │ ├── c10 │ │ │ └── scripts │ │ │ │ ├── cinematics_c10.hsc │ │ │ │ ├── mission_c10.hsc │ │ │ │ └── x50_cinema.hsc │ │ │ ├── c20 │ │ │ └── scripts │ │ │ │ ├── c20_cinema.hsc │ │ │ │ ├── c20cinematics.hsc │ │ │ │ └── c20main.hsc │ │ │ ├── c40 │ │ │ └── scripts │ │ │ │ ├── cinematics_c40.hsc │ │ │ │ └── mission_c40.hsc │ │ │ ├── d20 │ │ │ └── scripts │ │ │ │ ├── d20_cinema.hsc │ │ │ │ ├── d20cinematics.hsc │ │ │ │ └── d20main.hsc │ │ │ ├── d40 │ │ │ └── scripts │ │ │ │ ├── d40cinematics.hsc │ │ │ │ ├── d40main.hsc │ │ │ │ ├── playback_d40.hsc │ │ │ │ └── x70_cinema.hsc │ │ │ └── ui │ │ │ └── scripts │ │ │ └── ui.hsc │ └── hs_doc.txt ├── Windows - Trial 01.00.00.0578 Sep 30 2003 │ ├── README.md │ └── hs_doc.txt ├── Xbox - 01.09.25.2247 Sep 25 2001 │ ├── README.md │ └── hs_doc.txt └── Xbox - Demo Feb 25 2002 │ ├── README.md │ └── hs_doc.txt ├── README.md ├── Shadowrun └── Xbox - Prototype 01.12.07.0132 Mar 30 2005 │ ├── README.md │ └── hs_doc.txt └── Stubbs the Zombie ├── Xbox - Demo 425 Nov 7 2005 ├── README.md └── hs_doc.txt └── Xbox - Retail 400 Sep 6 2005 ├── README.md └── hs_doc.txt /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/ai/ai_dialogue_globals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/ai/ai_dialogue_globals.csv -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/globals/armor_vs_damage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/globals/armor_vs_damage.csv -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/globals/armor_vs_damage.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/globals/armor_vs_damage.xls -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/globals/global_scripts.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/globals/global_scripts.hsc -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/scenarios/multi/lockout/scripts/elevator.hsc: -------------------------------------------------------------------------------- 1 | ; 2 | -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/scenarios/solo/03a_oldmombasa/scripts/earthcity_cinematics.hsc: -------------------------------------------------------------------------------- 1 | ; Nothing to see here, move along 2 | 3 | -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/scenarios/solo/07a_highcharity/scripts/highcharity_base.hsc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/scenarios/solo/alphamoon/scripts/alphamoon_cinematics.hsc: -------------------------------------------------------------------------------- 1 | ; BLAM! -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/scenarios/solo/deltacontrolroom/scripts/deltacontrolroom_mission.hsc: -------------------------------------------------------------------------------- 1 | ;foo -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/scenarios/solo/earthcity/scripts/earthcity_cinematics.hsc: -------------------------------------------------------------------------------- 1 | ; Nothing to see here, move along 2 | 3 | -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/scenarios/solo/highcharity/scripts/mission.hsc: -------------------------------------------------------------------------------- 1 | script 2 | -------------------------------------------------------------------------------- /Halo 2/Windows - MCC Mod Tools Oct 9 2021/data/scenarios/solo/spacestation/scripts/mission.hsc: -------------------------------------------------------------------------------- 1 | script 2 | -------------------------------------------------------------------------------- /Halo 2/Windows - Retail 11081.07.04.30.0934.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 2/Windows - Retail 11081.07.04.30.0934.main/README.md -------------------------------------------------------------------------------- /Halo 2/Windows - Retail 11081.07.04.30.0934.main/debug_menu_init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 2/Windows - Retail 11081.07.04.30.0934.main/debug_menu_init.txt -------------------------------------------------------------------------------- /Halo 2/Windows - Retail 11081.07.04.30.0934.main/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 2/Windows - Retail 11081.07.04.30.0934.main/hs_doc.txt -------------------------------------------------------------------------------- /Halo 2/Windows - Retail MCC Apr 30 2020/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 2/Windows - Retail MCC Apr 30 2020/README.md -------------------------------------------------------------------------------- /Halo 2/Windows - Retail MCC Apr 30 2020/data/globals/global_scripts.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 2/Windows - Retail MCC Apr 30 2020/data/globals/global_scripts.hsc -------------------------------------------------------------------------------- /Halo 2/Windows - Retail MCC Apr 30 2020/data/scenarios/solo/06a_sentinelwalls/scripts/sentinelwalls_base.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 2/Windows - Retail MCC Apr 30 2020/data/scenarios/solo/06b_floodzone/scripts/floodzone_base.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 2/Windows - Retail MCC Apr 30 2020/data/scenarios/solo/07a_highcharity/scripts/highcharity_base.hsc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Halo 2/Windows - Retail MCC Apr 30 2020/data/scenarios/solo/07b_forerunnership/scripts/forerunnership_teleport.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3 ODST/13895.09.04.27.2201.atlas_relea/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 3: ODST - Retail _(Xbox 360)_ 2 | 13895.09.04.27.2201.atlas_relea 3 | Apr 27 2009 22:04:01 4 | 5 | --- -------------------------------------------------------------------------------- /Halo 3/08117.07.03.07.1702.delta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08117.07.03.07.1702.delta/README.md -------------------------------------------------------------------------------- /Halo 3/08117.07.03.07.1702.delta/cheats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08117.07.03.07.1702.delta/cheats.txt -------------------------------------------------------------------------------- /Halo 3/08117.07.03.07.1702.delta/debug_menu_init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08117.07.03.07.1702.delta/debug_menu_init.txt -------------------------------------------------------------------------------- /Halo 3/08117.07.03.07.1702.delta/halo3_cache_debug.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08117.07.03.07.1702.delta/halo3_cache_debug.map -------------------------------------------------------------------------------- /Halo 3/08117.07.03.07.1702.delta/halo3_cache_play.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08117.07.03.07.1702.delta/halo3_cache_play.map -------------------------------------------------------------------------------- /Halo 3/08117.07.03.07.1702.delta/halo3_cache_profile.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08117.07.03.07.1702.delta/halo3_cache_profile.map -------------------------------------------------------------------------------- /Halo 3/08117.07.03.07.1702.delta/halo3_cache_release.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08117.07.03.07.1702.delta/halo3_cache_release.map -------------------------------------------------------------------------------- /Halo 3/08117.07.03.07.1702.delta/halo3_cache_test.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08117.07.03.07.1702.delta/halo3_cache_test.map -------------------------------------------------------------------------------- /Halo 3/08117.07.03.07.1702.delta/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08117.07.03.07.1702.delta/hs_doc.txt -------------------------------------------------------------------------------- /Halo 3/08117.07.03.07.1702.delta/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08117.07.03.07.1702.delta/init.txt -------------------------------------------------------------------------------- /Halo 3/08172.07.03.08.2240.delta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08172.07.03.08.2240.delta/README.md -------------------------------------------------------------------------------- /Halo 3/08172.07.03.08.2240.delta/cheats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08172.07.03.08.2240.delta/cheats.txt -------------------------------------------------------------------------------- /Halo 3/08172.07.03.08.2240.delta/debug_menu_init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08172.07.03.08.2240.delta/debug_menu_init.txt -------------------------------------------------------------------------------- /Halo 3/08172.07.03.08.2240.delta/halo3_cache_debug.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08172.07.03.08.2240.delta/halo3_cache_debug.map -------------------------------------------------------------------------------- /Halo 3/08172.07.03.08.2240.delta/halo3_cache_play.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08172.07.03.08.2240.delta/halo3_cache_play.map -------------------------------------------------------------------------------- /Halo 3/08172.07.03.08.2240.delta/halo3_cache_profile.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08172.07.03.08.2240.delta/halo3_cache_profile.map -------------------------------------------------------------------------------- /Halo 3/08172.07.03.08.2240.delta/halo3_cache_release.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08172.07.03.08.2240.delta/halo3_cache_release.map -------------------------------------------------------------------------------- /Halo 3/08172.07.03.08.2240.delta/halo3_cache_test.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08172.07.03.08.2240.delta/halo3_cache_test.map -------------------------------------------------------------------------------- /Halo 3/08172.07.03.08.2240.delta/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08172.07.03.08.2240.delta/hs_doc.txt -------------------------------------------------------------------------------- /Halo 3/08172.07.03.08.2240.delta/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/08172.07.03.08.2240.delta/init.txt -------------------------------------------------------------------------------- /Halo 3/09699.07.05.01.1534.delta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/09699.07.05.01.1534.delta/README.md -------------------------------------------------------------------------------- /Halo 3/11729.07.08.10.0021.main/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 3 - Pre-Release _(Xbox 360)_ 2 | 11729.07.08.10.0021.main 3 | Aug 10 03:27:36 2007 4 | 5 | --- -------------------------------------------------------------------------------- /Halo 3/11729.07.08.10.0021.main/data/levels/multi/chill/scripts/chill.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/11729.07.08.10.0021.main/data/levels/multi/chill/scripts/chill.hsc -------------------------------------------------------------------------------- /Halo 3/11729.07.08.10.0021.main/data/levels/multi/shrine/scripts/shrine.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/11729.07.08.10.0021.main/data/levels/multi/shrine/scripts/shrine.hsc -------------------------------------------------------------------------------- /Halo 3/11729.07.08.10.0021.main/data/levels/ui/mainmenu/scripts/mainmenu.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/11729.07.08.10.0021.main/data/levels/ui/mainmenu/scripts/mainmenu.hsc -------------------------------------------------------------------------------- /Halo 3/11855.07.08.20.2317.halo3_ship/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/11855.07.08.20.2317.halo3_ship/README.md -------------------------------------------------------------------------------- /Halo 3/11856.07.08.20.2332.release/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 3 - Epsilon _(Xbox 360)_ 2 | 11856.07.08.20.2332.release 3 | Aug 20 2007 23:34:44 4 | 5 | --- 6 | -------------------------------------------------------------------------------- /Halo 3/11856.07.08.20.2332.release/cheats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/11856.07.08.20.2332.release/cheats.txt -------------------------------------------------------------------------------- /Halo 3/11856.07.08.20.2332.release/debug_menu_init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/11856.07.08.20.2332.release/debug_menu_init.txt -------------------------------------------------------------------------------- /Halo 3/11856.07.08.20.2332.release/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/11856.07.08.20.2332.release/init.txt -------------------------------------------------------------------------------- /Halo 3/Mar 9 2007 Untracked Version/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 3 - Multiplayer Pre-Beta _(Xbox 360)_ 2 | untracked version 3 | Mar 9 2007 22:15:40 4 | -------------------------------------------------------------------------------- /Halo 3/Mar 9 2007 Untracked Version/halo3_cache_profile.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Mar 9 2007 Untracked Version/halo3_cache_profile.map -------------------------------------------------------------------------------- /Halo 3/Mar 9 2007 Untracked Version/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Mar 9 2007 Untracked Version/init.txt -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/ai/ai_dialogue_globals.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/ai/ai_dialogue_globals.xls -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/ai/ai_dialogue_rules.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/ai/ai_dialogue_rules.xls -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/globals/armor_vs_damage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/globals/armor_vs_damage.csv -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/globals/armor_vs_damage.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/globals/armor_vs_damage.xls -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/globals/global_extras.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/globals/global_extras.hsc -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/globals/global_scripts.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/globals/global_scripts.hsc -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/armory/armory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/armory/armory.xml -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/armory/scripts/armory_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/bunkerworld/scripts/bunkerworld_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/chillout/scripts/chillout_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/descent/scripts/descent_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/docks/docks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/docks/docks.xml -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/docks/scripts/docks_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/fortress/scripts/fortress_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/lockout/scripts/lockout_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/midship/scripts/midship_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/sandbox/scripts/sandbox_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/shaft/shaft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/shaft/shaft.xml -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/sidewinder/scripts/sidewinder_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/spacecamp/scripts/spacecamp_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/dlc/warehouse/scripts/warehouse_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/halo3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/halo3.xml -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/archive/lockout/scripts/elevator.hsc: -------------------------------------------------------------------------------- 1 | ; 2 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/chill/chill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/chill/chill.xml -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/chill/scripts/chill_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/construct/scripts/construct_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/cyberdyne/scripts/cyberdyne_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/deadlock/scripts/deadlock_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/deadlock/scripts/deadlock_main.hsc: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/guardian/scripts/guardian_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/s3d_edge/scripts/s3d_edge_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/s3d_turf/scripts/s3d_turf_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/s3d_waterfall/scripts/s3d_waterfall_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/salvation/scripts/salvation_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/shrine/scripts/shrine_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/multi/snowbound/scripts/snowbound_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/005_intro/scripts/005_intro_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/030_outskirts/e3/scripts/e3_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/030_outskirts/e3/scripts/e3cubemaps_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/040_voi/scripts/sinomatixx.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/055_shadow/scripts/055_shadow_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/070_waste/scripts/070_waste_cinematics.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/080_forest/scripts/080_forest_ambient.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/080_forest/scripts/080_forest_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/080_forest/scripts/080_forest_teleport.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/090_alpine/scripts/090_alpine_mission.hsc: -------------------------------------------------------------------------------- 1 | (script startup mission 2 | (print "placeholder") 3 | ) -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/100_forecity/scripts/100_forecity_mission.hsc: -------------------------------------------------------------------------------- 1 | (script startup mission 2 | (print "placeholder") 3 | ) -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/120_halo/scripts/120_halo_empty_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/solo/130_epilogue/scripts/130_epilogue_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/ui/mainmenu/scripts/mainmenu_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 3/Windows - MCC Mod Tools Oct 11 2021/data/levels/ui/mainmenu/scripts/mainmenu_fragments_blue_disk.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 4/Network Test Beta 14064.12.05.05.1011.beta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Network Test Beta 14064.12.05.05.1011.beta/README.md -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15116.12.05.31.0300.e3/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 4 - Pre-Release _(Xbox 360)_ 2 | 15116.12.05.31.0300.e3 3 | E3 Demo 4 | 5 | --- -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15116.12.05.31.0300.e3/cheats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15116.12.05.31.0300.e3/cheats.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15116.12.05.31.0300.e3/data/globals/scripts/global_ai.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15116.12.05.31.0300.e3/data/globals/scripts/global_ai.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15116.12.05.31.0300.e3/debug_menu_init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15116.12.05.31.0300.e3/debug_menu_init.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15116.12.05.31.0300.e3/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15116.12.05.31.0300.e3/init.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15116.12.05.31.0300.e3/prop.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15116.12.05.31.0300.e3/prop.manifest -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15116.12.05.31.0300.e3/wargames.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15116.12.05.31.0300.e3/wargames.map -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15117.12.05.31.0300.e3/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 4 - Pre-Release _(Xbox 360)_ 2 | 15117.12.05.31.0300.e3 3 | E3 Demo 4 | 5 | --- -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15117.12.05.31.0300.e3/cheats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15117.12.05.31.0300.e3/cheats.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15117.12.05.31.0300.e3/data/globals/firefight_script.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15117.12.05.31.0300.e3/data/globals/firefight_script.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15117.12.05.31.0300.e3/data/globals/global_extras.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15117.12.05.31.0300.e3/data/globals/global_extras.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15117.12.05.31.0300.e3/data/globals/scripts/global_ai.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15117.12.05.31.0300.e3/data/globals/scripts/global_ai.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15117.12.05.31.0300.e3/debug_menu_init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15117.12.05.31.0300.e3/debug_menu_init.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15117.12.05.31.0300.e3/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15117.12.05.31.0300.e3/init.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15117.12.05.31.0300.e3/prop.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15117.12.05.31.0300.e3/prop.manifest -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15117.12.05.31.0300.e3/spartanops.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15117.12.05.31.0300.e3/spartanops.map -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 4 - Pre-Release _(Xbox 360)_ 2 | 15119.12.05.31.0400.e3m60 3 | E3 Demo 4 | 5 | --- -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/cheats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/cheats.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/debug_menu_init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/debug_menu_init.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/init.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/keynote.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/keynote.map -------------------------------------------------------------------------------- /Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/prop.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 15119.12.05.31.0400.e3m60/prop.manifest -------------------------------------------------------------------------------- /Halo 4/Pre-Release 16531.12.07.05.0200.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 16531.12.07.05.0200.main/README.md -------------------------------------------------------------------------------- /Halo 4/Pre-Release 16587.12.07.05.2141.precert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 16587.12.07.05.2141.precert/README.md -------------------------------------------------------------------------------- /Halo 4/Pre-Release 17539.12.07.24.0200.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 17539.12.07.24.0200.main/README.md -------------------------------------------------------------------------------- /Halo 4/Pre-Release 18223.12.08.06.0200.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 18223.12.08.06.0200.main/README.md -------------------------------------------------------------------------------- /Halo 4/Pre-Release 18845.12.08.16.0200.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 18845.12.08.16.0200.main/README.md -------------------------------------------------------------------------------- /Halo 4/Pre-Release 19057.12.08.19.0400.main/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 4 - Pre-Release _(Xbox 360)_ 2 | 19057.12.08.19.0400.main 3 | Aug 19 2012 04:15:19 -------------------------------------------------------------------------------- /Halo 4/Pre-Release 19057.12.08.19.0400.main/data/globals/global_door.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 19057.12.08.19.0400.main/data/globals/global_door.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release 19057.12.08.19.0400.main/data/globals/global_extras.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 19057.12.08.19.0400.main/data/globals/global_extras.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release 19057.12.08.19.0400.main/data/globals/global_phantom.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 19057.12.08.19.0400.main/data/globals/global_phantom.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release 19057.12.08.19.0400.main/debug_menu_init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 19057.12.08.19.0400.main/debug_menu_init.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 19057.12.08.19.0400.main/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 19057.12.08.19.0400.main/hs_doc.txt -------------------------------------------------------------------------------- /Halo 4/Pre-Release 20190.12.09.05.0200.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 20190.12.09.05.0200.main/README.md -------------------------------------------------------------------------------- /Halo 4/Pre-Release 20703.12.09.16.0400.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 20703.12.09.16.0400.main/README.md -------------------------------------------------------------------------------- /Halo 4/Pre-Release 20744.12.09.18.0100.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release 20744.12.09.18.0100.main/README.md -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/README.md -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_abilities.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_abilities.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_ai.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_ai.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_audio.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_audio.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_camera.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_camera.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_checkpoints.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_checkpoints.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_cinematic.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_cinematic.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_cortana.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_cortana.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_dialog.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_dialog.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_lighting.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_lighting.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_logic.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_logic.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_narrative.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_narrative.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_objects.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_objects.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_physics.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_physics.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_players.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_players.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_screenshake.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_screenshake.hsc -------------------------------------------------------------------------------- /Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_scripts.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Pre-Release Jul 17 2012/data/globals/scripts/global_scripts.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 4 - Retail _(Xbox 360)_ 2 | 20810.12.09.22.1647.main 3 | Sep 22 2012 16:59:19 4 | 5 | --- -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/data/globals/firefight_script.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/data/globals/firefight_script.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_door.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_door.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_extras.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_extras.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_insertion.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_insertion.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_objectives.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_objectives.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_phantom.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_phantom.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_spops_dialog.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/data/globals/global_spops_dialog.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/data/globals/scripts/global_ai.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/data/globals/scripts/global_ai.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/data/globals/scripts/global_audio.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/data/globals/scripts/global_audio.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/data/globals/scripts/global_logic.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/data/globals/scripts/global_logic.hsc -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00100/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00100/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00100/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00100/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00101/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00101/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00101/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00101/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00104/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00104/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00104/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00104/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00105/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00105/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00105/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00105/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00113/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00113/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00113/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00113/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00115/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00115/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00115/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00115/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00117/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00117/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00117/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00117/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00121/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00121/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00121/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00121/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00122/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00122/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00122/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00122/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00126/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00126/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00126/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00126/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00128/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00128/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00128/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00128/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00132/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00132/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00145/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00145/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00145/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00145/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00200/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00200/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00200/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00200/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00201/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00201/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00201/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00201/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00202/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00202/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00202/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00202/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00203/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00203/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00203/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00203/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00204/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00204/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00204/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00204/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00207/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00207/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00207/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00207/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00213/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00213/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00213/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00213/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00220/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00220/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00220/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00220/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00223/game_set_021.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00223/game_set_021.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/00223/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/00223/images/hopper.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/chs/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/chs/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/cht/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/cht/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/de/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/de/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dk/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dk/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_basin_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_basin_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_basin_lobby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_basin_lobby.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_basin_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_basin_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_creeper_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_creeper_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_dropoff_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_dropoff_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_highrise_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_highrise_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_port_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_port_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_port_lobby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_port_lobby.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_port_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_port_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_rattler_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_rattler_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_spiderweb_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ca_spiderweb_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/dlc01_engine_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/dlc01_engine_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/dlc_dejewel_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/dlc_dejewel_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ff152_vortex_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ff152_vortex_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ff155_breach_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/ff155_breach_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map1_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map1_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map1_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map1_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map2_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map2_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map2_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map2_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map3_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map3_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map3_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map3_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map4_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map4_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map4_lobby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map4_lobby.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map4_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map4_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map5_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map5_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map5_lobby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map5_lobby.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map5_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map5_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map6_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map6_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map6_lobby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map6_lobby.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map6_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map6_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map7_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map7_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map7_lobby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map7_lobby.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map7_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map7_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map8_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map8_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map8_lobby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map8_lobby.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map8_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map8_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map9_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map9_large.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map9_lobby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map9_lobby.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map9_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/map9_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/zd_02_grind_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc/zd_02_grind_sm.jpg -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc_map_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/dlc_map_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/en/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/en/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/en/user_nag_00001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/en/user_nag_00001.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/fi/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/fi/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/fr/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/fr/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/it/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/it/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/jpn/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/jpn/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/kor/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/kor/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/mx/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/mx/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/nl/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/nl/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/no/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/no/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/offer_metadata_002.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/offer_metadata_002.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/offer_metadata_003.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/offer_metadata_003.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/offer_metadata_004.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/offer_metadata_004.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/pl/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/pl/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/pt/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/pt/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/ru/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/ru/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail 20810.12.09.22.1647.main/title storage/sp/rsa_manifest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail 20810.12.09.22.1647.main/title storage/sp/rsa_manifest.bin -------------------------------------------------------------------------------- /Halo 4/Retail TU2 21122.12.11.21.0101.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail TU2 21122.12.11.21.0101.main/README.md -------------------------------------------------------------------------------- /Halo 4/Retail TU2 21122.12.11.21.0101.main/data/globals/scripts/spops_ai.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail TU2 21122.12.11.21.0101.main/data/globals/scripts/spops_ai.hsc -------------------------------------------------------------------------------- /Halo 4/Retail TU3 21165.12.12.12.0112.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail TU3 21165.12.12.12.0112.main/README.md -------------------------------------------------------------------------------- /Halo 4/Retail TU3 21165.12.12.12.0112.main/data/globals/global_door.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail TU3 21165.12.12.12.0112.main/data/globals/global_door.hsc -------------------------------------------------------------------------------- /Halo 4/Retail TU3 21165.12.12.12.0112.main/data/globals/global_extras.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail TU3 21165.12.12.12.0112.main/data/globals/global_extras.hsc -------------------------------------------------------------------------------- /Halo 4/Retail TU3 21165.12.12.12.0112.main/data/globals/scripts/spops_ai.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail TU3 21165.12.12.12.0112.main/data/globals/scripts/spops_ai.hsc -------------------------------------------------------------------------------- /Halo 4/Retail TU4 21339.13.02.05.0117.main/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 4 - Retail Title Update 4 _(Xbox 360)_ 2 | 21339.13.02.05.0117.main 3 | Feb 5 2013 01:36:20 4 | 5 | --- -------------------------------------------------------------------------------- /Halo 4/Retail TU4 21339.13.02.05.0117.main/data/globals/scripts/spops_ai.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail TU4 21339.13.02.05.0117.main/data/globals/scripts/spops_ai.hsc -------------------------------------------------------------------------------- /Halo 4/Retail TU5 21391.13.03.13.1711.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail TU5 21391.13.03.13.1711.main/README.md -------------------------------------------------------------------------------- /Halo 4/Retail TU5 21391.13.03.13.1711.main/data/globals/scripts/spops_ai.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Retail TU5 21391.13.03.13.1711.main/data/globals/scripts/spops_ai.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/README.md: -------------------------------------------------------------------------------- 1 | ### Halo 4 - Development Tag Build _(Xbox 360)_ 2 | Nov 13 2013 11:14:44 -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m020_mission.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m020_mission.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_ambient.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_ambient.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_audio.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_audio.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_dialogue.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_dialogue.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_fx.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_fx.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_insertion.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_insertion.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_narrative.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_narrative.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_streaming.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m020/scripts/m20_streaming.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m10_crash/scripts/m10_cryo.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m10_crash/scripts/m10_cryo.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m10_crash/scripts/m10_lab.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m10_crash/scripts/m10_lab.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m80_delta/scripts/m80_fx.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m80_delta/scripts/m80_fx.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m80_delta/scripts/m80_guns.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m80_delta/scripts/m80_guns.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/environments/solo/m80_delta/scripts/m80_lab.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/environments/solo/m80_delta/scripts/m80_lab.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/firefight_script.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/firefight_script.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/global_door.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/global_door.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/global_extras.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/global_extras.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/global_firefight_vo_script.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/global_firefight_vo_script.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/global_insertion.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/global_insertion.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/global_objectives.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/global_objectives.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/global_pelican.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/global_pelican.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/global_phantom.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/global_phantom.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/global_spops_dialog.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/global_spops_dialog.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_abilities.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_abilities.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_ai.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_ai.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_audio.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_audio.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_camera.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_camera.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_checkpoints.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_checkpoints.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_cinematic.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_cinematic.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_cortana.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_cortana.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_devicemachines.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_devicemachines.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_dialog.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_dialog.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_lighting.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_lighting.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_logic.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_logic.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_narrative.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_narrative.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/globals/scripts/global_objects.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/globals/scripts/global_objects.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/design/ai_gym/scripts/ai_gym_mission.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/design/ai_gym/scripts/ai_gym_mission.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/dev/big_map/scripts/big_map.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/dev/big_map/scripts/big_map.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/dlc/ff152_vortex/scripts/ff152_vortex.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/dlc/ff152_vortex/scripts/ff152_vortex.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/dlc/ff155_breach/scripts/ff155_breach.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/dlc/ff155_breach/scripts/ff155_breach.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/dlc/scripts/ff_template.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/dlc/scripts/ff_template.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/dlc/scripts/spops_ai.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/dlc/scripts/spops_ai.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/dlc/scripts/spops_global_script_dlc.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/dlc/scripts/spops_global_script_dlc.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/dlc/scripts/spops_mission.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/dlc/scripts/spops_mission.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/reference/lighting_reference/scripts/lighting_reference_flood_morph_.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/temp/brendanw/bel_air/scripts/someeruditeandeducatedfellow.hsc: -------------------------------------------------------------------------------- 1 | script static void seemf() 2 | print("Would you like some Grey Poupon?"); 3 | end 4 | -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/temp/tom/scripts/scripts.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/temp/tom/scripts/scripts.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/temp/v-willc/scripts/ai_gym_mission.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/temp/v-willc/scripts/ai_gym_mission.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/data/levels/ui/mainmenu/scripts/mainmenu.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/data/levels/ui/mainmenu/scripts/mainmenu.hsc -------------------------------------------------------------------------------- /Halo 4/Tag Nov 13 2013/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 4/Tag Nov 13 2013/hs_doc.txt -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/DSDeployMeta/DeploymentMeta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/DSDeployMeta/DeploymentMeta.xml -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/Networkmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/Networkmanifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/README.md -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/data/globals/scripts/global_ai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/data/globals/scripts/global_ai.lua -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/gameevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/gameevents.lua -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/timeevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/timeevents.lua -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/data/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Forge/05887.16.06.20.0001-7.main/xboxservices.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/05887.16.06.20.0001-7.main/xboxservices.config -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/Networkmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/Networkmanifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/README.md -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/data/globals/scripts/global_ai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/data/globals/scripts/global_ai.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/gameevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/gameevents.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/timeevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/timeevents.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/data/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Forge/07193.16.08.15.2011-0.main/xboxservices.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07193.16.08.15.2011-0.main/xboxservices.config -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/Networkmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/Networkmanifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/README.md -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/data/globals/scripts/global_ai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/data/globals/scripts/global_ai.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/gameevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/gameevents.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/timeevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/timeevents.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/data/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Forge/07475.16.09.01.0000-1.main/xboxservices.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/07475.16.09.01.0000-1.main/xboxservices.config -------------------------------------------------------------------------------- /Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/Networkmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/Networkmanifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/README.md -------------------------------------------------------------------------------- /Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/data/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/data/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/data/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/data/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/data/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/data/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/version.txt -------------------------------------------------------------------------------- /Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/xboxservices.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08018.16.10.08.0607-0.rtx1609/xboxservices.config -------------------------------------------------------------------------------- /Halo 5 Forge/08590.16.11.25.1415-4.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08590.16.11.25.1415-4.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/08590.16.11.25.1415-4.main/Networkmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08590.16.11.25.1415-4.main/Networkmanifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/08590.16.11.25.1415-4.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08590.16.11.25.1415-4.main/README.md -------------------------------------------------------------------------------- /Halo 5 Forge/08590.16.11.25.1415-4.main/data/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08590.16.11.25.1415-4.main/data/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Forge/08590.16.11.25.1415-4.main/data/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08590.16.11.25.1415-4.main/data/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Forge/08590.16.11.25.1415-4.main/data/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08590.16.11.25.1415-4.main/data/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Forge/08590.16.11.25.1415-4.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08590.16.11.25.1415-4.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Forge/08590.16.11.25.1415-4.main/xboxservices.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/08590.16.11.25.1415-4.main/xboxservices.config -------------------------------------------------------------------------------- /Halo 5 Forge/09353.17.02.16.0957-2.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/09353.17.02.16.0957-2.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/09353.17.02.16.0957-2.main/Networkmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/09353.17.02.16.0957-2.main/Networkmanifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/09353.17.02.16.0957-2.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/09353.17.02.16.0957-2.main/README.md -------------------------------------------------------------------------------- /Halo 5 Forge/09353.17.02.16.0957-2.main/data/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/09353.17.02.16.0957-2.main/data/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Forge/09353.17.02.16.0957-2.main/data/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/09353.17.02.16.0957-2.main/data/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Forge/09353.17.02.16.0957-2.main/data/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/09353.17.02.16.0957-2.main/data/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Forge/09353.17.02.16.0957-2.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/09353.17.02.16.0957-2.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Forge/09353.17.02.16.0957-2.main/xboxservices.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/09353.17.02.16.0957-2.main/xboxservices.config -------------------------------------------------------------------------------- /Halo 5 Forge/10353.17.06.08.0000-1.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/10353.17.06.08.0000-1.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/10353.17.06.08.0000-1.main/Networkmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/10353.17.06.08.0000-1.main/Networkmanifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/10353.17.06.08.0000-1.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/10353.17.06.08.0000-1.main/README.md -------------------------------------------------------------------------------- /Halo 5 Forge/10353.17.06.08.0000-1.main/data/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/10353.17.06.08.0000-1.main/data/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Forge/10353.17.06.08.0000-1.main/data/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/10353.17.06.08.0000-1.main/data/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Forge/10353.17.06.08.0000-1.main/data/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/10353.17.06.08.0000-1.main/data/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Forge/10353.17.06.08.0000-1.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/10353.17.06.08.0000-1.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Forge/10353.17.06.08.0000-1.main/xboxservices.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/10353.17.06.08.0000-1.main/xboxservices.config -------------------------------------------------------------------------------- /Halo 5 Forge/11587.17.10.27.0000-1.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/11587.17.10.27.0000-1.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/11587.17.10.27.0000-1.main/Networkmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/11587.17.10.27.0000-1.main/Networkmanifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/11587.17.10.27.0000-1.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/11587.17.10.27.0000-1.main/README.md -------------------------------------------------------------------------------- /Halo 5 Forge/11587.17.10.27.0000-1.main/data/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/11587.17.10.27.0000-1.main/data/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Forge/11587.17.10.27.0000-1.main/data/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/11587.17.10.27.0000-1.main/data/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Forge/11587.17.10.27.0000-1.main/data/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/11587.17.10.27.0000-1.main/data/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Forge/11587.17.10.27.0000-1.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/11587.17.10.27.0000-1.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Forge/11587.17.10.27.0000-1.main/xboxservices.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/11587.17.10.27.0000-1.main/xboxservices.config -------------------------------------------------------------------------------- /Halo 5 Forge/12021.17.12.11.0926-1.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12021.17.12.11.0926-1.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/12021.17.12.11.0926-1.main/Networkmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12021.17.12.11.0926-1.main/Networkmanifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/12021.17.12.11.0926-1.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12021.17.12.11.0926-1.main/README.md -------------------------------------------------------------------------------- /Halo 5 Forge/12021.17.12.11.0926-1.main/data/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12021.17.12.11.0926-1.main/data/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Forge/12021.17.12.11.0926-1.main/data/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12021.17.12.11.0926-1.main/data/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Forge/12021.17.12.11.0926-1.main/data/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12021.17.12.11.0926-1.main/data/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Forge/12021.17.12.11.0926-1.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12021.17.12.11.0926-1.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Forge/12021.17.12.11.0926-1.main/xboxservices.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12021.17.12.11.0926-1.main/xboxservices.config -------------------------------------------------------------------------------- /Halo 5 Forge/12719.18.03.06.0000-1.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12719.18.03.06.0000-1.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/12719.18.03.06.0000-1.main/Networkmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12719.18.03.06.0000-1.main/Networkmanifest.xml -------------------------------------------------------------------------------- /Halo 5 Forge/12719.18.03.06.0000-1.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12719.18.03.06.0000-1.main/README.md -------------------------------------------------------------------------------- /Halo 5 Forge/12719.18.03.06.0000-1.main/data/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12719.18.03.06.0000-1.main/data/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Forge/12719.18.03.06.0000-1.main/data/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12719.18.03.06.0000-1.main/data/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Forge/12719.18.03.06.0000-1.main/data/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12719.18.03.06.0000-1.main/data/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Forge/12719.18.03.06.0000-1.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12719.18.03.06.0000-1.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Forge/12719.18.03.06.0000-1.main/xboxservices.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Forge/12719.18.03.06.0000-1.main/xboxservices.config -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/96053.17.10.22.2300-1.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians Local Server/96053.17.10.22.2300-1.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/96053.17.10.22.2300-1.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians Local Server/96053.17.10.22.2300-1.main/README.md -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/96053.17.10.22.2300-1.main/data/globals/scripts/prototypes/knight_taint.lua: -------------------------------------------------------------------------------- 1 | -- object knight_taint 2 | 3 | -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/96053.17.10.22.2300-1.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians Local Server/96053.17.10.22.2300-1.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/96490.17.12.07.2354-1.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians Local Server/96490.17.12.07.2354-1.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/96490.17.12.07.2354-1.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians Local Server/96490.17.12.07.2354-1.main/README.md -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/96490.17.12.07.2354-1.main/data/globals/scripts/prototypes/knight_taint.lua: -------------------------------------------------------------------------------- 1 | -- object knight_taint 2 | 3 | -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/96490.17.12.07.2354-1.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians Local Server/96490.17.12.07.2354-1.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/97230.18.02.27.2300-1.main/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians Local Server/97230.18.02.27.2300-1.main/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/97230.18.02.27.2300-1.main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians Local Server/97230.18.02.27.2300-1.main/README.md -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/97230.18.02.27.2300-1.main/data/globals/scripts/prototypes/knight_taint.lua: -------------------------------------------------------------------------------- 1 | -- object knight_taint 2 | 3 | -------------------------------------------------------------------------------- /Halo 5 Guardians Local Server/97230.18.02.27.2300-1.main/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians Local Server/97230.18.02.27.2300-1.main/version.txt -------------------------------------------------------------------------------- /Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/gamemodes/breakout/breakoutHighLethalityConfig.lua: -------------------------------------------------------------------------------- 1 | 2 | useBreakoutTuningForMagnumPerfect = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/gamemodes/sportsball/grifballconfig.lua: -------------------------------------------------------------------------------- 1 | disableMedalsForGrifball = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/gamemodes/sportsball/sportsballConfig.lua: -------------------------------------------------------------------------------- 1 | enableBallKillTypeMedals = true; 2 | -------------------------------------------------------------------------------- /Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/07427.16.08.29.1513-1/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/AppxManifest.xml -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/ChunkIndex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/ChunkIndex.xml -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/README.md -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/tags/globals/global_phantom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/tags/globals/global_phantom.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/tags/globals/scripts/global_ai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/tags/globals/scripts/global_ai.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/tags/globals/scripts/prototypes/knight_taint.lua: -------------------------------------------------------------------------------- 1 | -- object knight_taint 2 | 3 | -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/tags/levels/campaignworld020/w2_plateau/scripts/w2_dialogue.lua: -------------------------------------------------------------------------------- 1 | -- deprecated -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/73070.15.09.21.0115-1/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/73070.15.09.21.0115-1/version.txt -------------------------------------------------------------------------------- /Halo 5 Guardians/74184.15.10.02.0200-4/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/74184.15.10.02.0200-4/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/74184.15.10.02.0200-4/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/74184.15.10.02.0200-4/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/74184.15.10.02.0200-4/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/74184.15.10.02.0200-4/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/74184.15.10.02.0200-4/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/74184.15.10.02.0200-4/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/74184.15.10.02.0200-4/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/74184.15.10.02.0200-4/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/75160.15.10.17.0200-3/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/76333.15.11.12.0203-9/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/77316.15.12.10.1718-3/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/78222.16.01.19.0201-3/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/gamemodes/sportsball/grifballconfig.lua: -------------------------------------------------------------------------------- 1 | disableMedalsForGrifball = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/gamemodes/sportsball/sportsballConfig.lua: -------------------------------------------------------------------------------- 1 | enableBallKillTypeMedals = true; 2 | -------------------------------------------------------------------------------- /Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/79425.16.02.11.2301-3/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/gamemodes/sportsball/grifballconfig.lua: -------------------------------------------------------------------------------- 1 | disableMedalsForGrifball = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/gamemodes/sportsball/sportsballConfig.lua: -------------------------------------------------------------------------------- 1 | enableBallKillTypeMedals = true; 2 | -------------------------------------------------------------------------------- /Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/81409.16.03.29.0702-2/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/gamemodes/sportsball/grifballconfig.lua: -------------------------------------------------------------------------------- 1 | disableMedalsForGrifball = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/gamemodes/sportsball/sportsballConfig.lua: -------------------------------------------------------------------------------- 1 | enableBallKillTypeMedals = true; 2 | -------------------------------------------------------------------------------- /Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/83392.16.05.04.2307-2/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/gamemodes/sportsball/grifballconfig.lua: -------------------------------------------------------------------------------- 1 | disableMedalsForGrifball = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/gamemodes/sportsball/sportsballConfig.lua: -------------------------------------------------------------------------------- 1 | enableBallKillTypeMedals = true; 2 | -------------------------------------------------------------------------------- /Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/85747.16.06.17.2300-2/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/gamemodes/breakout/breakoutHighLethalityConfig.lua: -------------------------------------------------------------------------------- 1 | 2 | useBreakoutTuningForMagnumPerfect = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/gamemodes/sportsball/grifballconfig.lua: -------------------------------------------------------------------------------- 1 | disableMedalsForGrifball = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/gamemodes/sportsball/sportsballConfig.lua: -------------------------------------------------------------------------------- 1 | enableBallKillTypeMedals = true; 2 | -------------------------------------------------------------------------------- /Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/88482.16.08.28.2300-2/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Breakout-Breakout.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Breakout-Breakout.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Forge-Forge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Forge-Forge.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Minigame-Minigame.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Minigame-Minigame.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-FFARockets.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-FFARockets.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-FFASlayer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-FFASlayer.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-Fiesta.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-Fiesta.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-Rockets.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-Rockets.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-SWAT.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-SWAT.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-Slayer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-Slayer.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-Snipers.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/GameVariant/Slayer-Snipers.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/altitude.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/altitude.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/antifreeze.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/antifreeze.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/basin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/basin.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/crossfire.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/crossfire.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/deadlock3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/deadlock3.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/entombed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/entombed.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/fo03_space_default.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/fo03_space_default.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/fo04_ocean.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/fo04_ocean.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/fo05_desert.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/fo05_desert.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/fo06_deepsea.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/fo06_deepsea.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/gambol.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/gambol.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/grifball_court.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/grifball_court.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/guillotine2_1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/guillotine2_1.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/ng93_haven_default.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/ng93_haven_default.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/orionii.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/orionii.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/pegasusii.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/pegasusii.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/recurve2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/recurve2.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/testsitev.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/testsitev.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/trench.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/trench.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/trident.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/MapVariant/trident.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/gamemodes/breakout/breakoutHighLethalityConfig.lua: -------------------------------------------------------------------------------- 1 | 2 | useBreakoutTuningForMagnumPerfect = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/gamemodes/minigame/minigame.lua: -------------------------------------------------------------------------------- 1 | -- MINIGAME MODE -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/gamemodes/sportsball/grifballconfig.lua: -------------------------------------------------------------------------------- 1 | disableMedalsForGrifball = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/gamemodes/sportsball/sportsballConfig.lua: -------------------------------------------------------------------------------- 1 | enableBallKillTypeMedals = true; 2 | -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/91713.16.12.05.2301-3/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Breakout-Breakout.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Breakout-Breakout.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Forge-Forge.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Forge-Forge.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Minigame-Minigame.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Minigame-Minigame.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-FFARockets.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-FFARockets.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-FFASlayer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-FFASlayer.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-Fiesta.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-Fiesta.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-Rockets.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-Rockets.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-SWAT.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-SWAT.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-Slayer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-Slayer.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-SlayerHCSv2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-SlayerHCSv2.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-Snipers.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/GameVariant/Slayer-Snipers.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/alpinerally_gcm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/alpinerally_gcm.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/altitude.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/altitude.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/antifreeze.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/antifreeze.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/basin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/basin.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/blokpit_gcm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/blokpit_gcm.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/crossfire.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/crossfire.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/deadlock3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/deadlock3.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/entombed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/entombed.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/fo03_space_default.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/fo03_space_default.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/fo04_ocean.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/fo04_ocean.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/fo05_desert.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/fo05_desert.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/fo06_deepsea.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/fo06_deepsea.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/freight_gcm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/freight_gcm.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/gambol.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/gambol.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/grifball_court.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/grifball_court.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/guillotine2_1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/guillotine2_1.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/junglerush_gcm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/junglerush_gcm.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/ng20_sa_towers_hcs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/ng20_sa_towers_hcs.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/ng23_ss_skew_hcs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/ng23_ss_skew_hcs.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/ng42_acropolis_hcs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/ng42_acropolis_hcs.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/ng43_midship_hcs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/ng43_midship_hcs.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/ng93_haven_default.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/ng93_haven_default.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/orionii.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/orionii.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/pegasusii.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/pegasusii.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/recurve2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/recurve2.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/sandtrapresort_gcm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/sandtrapresort_gcm.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/testsitev.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/testsitev.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/trench.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/trench.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/trident.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/MapVariant/trident.bin -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/delegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/delegate.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/engine.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/gamemodes/breakout/breakoutHighLethalityConfig.lua: -------------------------------------------------------------------------------- 1 | 2 | useBreakoutTuningForMagnumPerfect = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/gamemodes/minigame/minigame.lua: -------------------------------------------------------------------------------- 1 | -- MINIGAME MODE -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/gamemodes/sportsball/grifballconfig.lua: -------------------------------------------------------------------------------- 1 | disableMedalsForGrifball = true; -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/gamemodes/sportsball/sportsballConfig.lua: -------------------------------------------------------------------------------- 1 | enableBallKillTypeMedals = true; 2 | -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/pvpevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/pvpevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/runevents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/runevents.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/utility.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/utility.lua -------------------------------------------------------------------------------- /Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/weaponpad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo 5 Guardians/93475.17.05.07.2300-2/tags/multiplayer/lua/weaponpad.lua -------------------------------------------------------------------------------- /Halo Infinite/199229.21.07.20.0001-2.flt002int/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Infinite/199229.21.07.20.0001-2.flt002int/README.md -------------------------------------------------------------------------------- /Halo Reach/00095.11.04.09.1509.demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/00095.11.04.09.1509.demo/README.md -------------------------------------------------------------------------------- /Halo Reach/00095.11.04.09.1509.demo/data/levels/solo/m45/scripts/m45.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/00095.11.04.09.1509.demo/data/levels/solo/m45/scripts/m45.hsc -------------------------------------------------------------------------------- /Halo Reach/09449.10.03.25.1545.omaha_beta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/09449.10.03.25.1545.omaha_beta/README.md -------------------------------------------------------------------------------- /Halo Reach/09730.10.04.09.1309.omaha_delta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/09730.10.04.09.1309.omaha_delta/README.md -------------------------------------------------------------------------------- /Halo Reach/11860.10.07.24.0147.omaha_relea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/11860.10.07.24.0147.omaha_relea/README.md -------------------------------------------------------------------------------- /Halo Reach/11860.10.07.24.0147.omaha_relea/data/levels/dlc/cex_damnation/scripts/cex_damnation.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/11860.10.07.24.0147.omaha_relea/title storage/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/11860.10.07.24.0147.omaha_relea/title storage/README.MD -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/build_tag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/build_tag.txt -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_firefight.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_firefight.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_fork.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_fork.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_hud.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_hud.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_pelican.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_pelican.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_phantom.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_phantom.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_scripts.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/globals/global_scripts.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/dlc/cex_damnation/scripts/cex_damnation_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/dlc/cex_damnation/scripts/cex_damnation_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/dlc/condemned/scripts/condemned_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/dlc/condemned/scripts/condemned_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/dlc/ff_unearthed/scripts/ff_unearthed_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/dlc/trainingpreserve/scripts/trainingpreserve_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/dlc/trainingpreserve/scripts/trainingpreserve_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/firefight/ff10_prototype/scripts/ff10_prototype_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/firefight/ff20_courtyard/scripts/ff20_courtyard_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/firefight/ff30_waterfront/scripts/ff30_waterfront_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/firefight/ff50_park/scripts/ff50_park_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/firefight/ff60_airview/scripts/ff60_airview_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/firefight/ff60_icecave/scripts/ff60_icecave_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/firefight/ff70_holdout/scripts/ff70_holdout_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/multi/dlc/dlc_slayer/scripts/dlc_slayer_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/multi/dlc/dlc_slayer/scripts/dlc_slayer_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m05/scripts/m05.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m05/scripts/m05.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m05/scripts/m05_fragments.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m05/scripts/m05_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m10/scripts/m10.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m10/scripts/m10.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m20/scripts/m20.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m20/scripts/m20.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m30/scripts/m30.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m30/scripts/m30.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m50/scripts/m50.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m50/scripts/m50.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m70/scripts/auto_generated_cinematic_script.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m70/scripts/m70.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m70/scripts/m70.hsc -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/data/levels/solo/m70_bonus/scripts/m70_bonus_performances.hsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/c_M40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/c_M40.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/c_M40_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/c_M40_sm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_aftship.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_aftship.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_aftship_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_aftship_sm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_arena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_arena.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_arena_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_arena_sm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_azimuth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_azimuth.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_azimuth_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_azimuth_sm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_badlands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_badlands.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_badlands_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_badlands_sm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_blockout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_blockout.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_blockout_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_blockout_sm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_boneyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_boneyard.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_boneyard_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_boneyard_sm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_farm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_farm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_farm_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_farm_sm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_gulch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_gulch.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_gulch_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_gulch_sm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_panopticon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_panopticon.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_powerhouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_powerhouse.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_pump_station.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_pump_station.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_quarry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_quarry.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_quarry_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_quarry_sm.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_settlement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_settlement.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_spartanland.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_spartanland.jpg -------------------------------------------------------------------------------- /Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_stalagmite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo Reach/Windows - MCC Oct 24 2019/unused map images/m_stalagmite.jpg -------------------------------------------------------------------------------- /Halo/Windows - MCC 01.00.01.0563 Apr 17 2020/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Windows - MCC 01.00.01.0563 Apr 17 2020/README.md -------------------------------------------------------------------------------- /Halo/Windows - MCC 01.00.01.0563 Apr 17 2020/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Windows - MCC 01.00.01.0563 Apr 17 2020/hs_doc.txt -------------------------------------------------------------------------------- /Halo/Windows - MCC Mod Tools Jun 22 2021/data/global_scripts.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Windows - MCC Mod Tools Jun 22 2021/data/global_scripts.hsc -------------------------------------------------------------------------------- /Halo/Windows - MCC Mod Tools Jun 22 2021/data/levels/ui/scripts/ui.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Windows - MCC Mod Tools Jun 22 2021/data/levels/ui/scripts/ui.hsc -------------------------------------------------------------------------------- /Halo/Windows - MCC Mod Tools Jun 22 2021/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Windows - MCC Mod Tools Jun 22 2021/hs_doc.txt -------------------------------------------------------------------------------- /Halo/Windows - Trial 01.00.00.0578 Sep 30 2003/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Windows - Trial 01.00.00.0578 Sep 30 2003/README.md -------------------------------------------------------------------------------- /Halo/Windows - Trial 01.00.00.0578 Sep 30 2003/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Windows - Trial 01.00.00.0578 Sep 30 2003/hs_doc.txt -------------------------------------------------------------------------------- /Halo/Xbox - 01.09.25.2247 Sep 25 2001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Xbox - 01.09.25.2247 Sep 25 2001/README.md -------------------------------------------------------------------------------- /Halo/Xbox - 01.09.25.2247 Sep 25 2001/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Xbox - 01.09.25.2247 Sep 25 2001/hs_doc.txt -------------------------------------------------------------------------------- /Halo/Xbox - Demo Feb 25 2002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Xbox - Demo Feb 25 2002/README.md -------------------------------------------------------------------------------- /Halo/Xbox - Demo Feb 25 2002/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Halo/Xbox - Demo Feb 25 2002/hs_doc.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/README.md -------------------------------------------------------------------------------- /Shadowrun/Xbox - Prototype 01.12.07.0132 Mar 30 2005/README.md: -------------------------------------------------------------------------------- 1 | ### Shadowrun - Prototype _(Xbox)_ 2 | halo xbox 01.12.07.0132 Mar 30 2005 11:00:54 -------------------------------------------------------------------------------- /Shadowrun/Xbox - Prototype 01.12.07.0132 Mar 30 2005/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Shadowrun/Xbox - Prototype 01.12.07.0132 Mar 30 2005/hs_doc.txt -------------------------------------------------------------------------------- /Stubbs the Zombie/Xbox - Demo 425 Nov 7 2005/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Stubbs the Zombie/Xbox - Demo 425 Nov 7 2005/README.md -------------------------------------------------------------------------------- /Stubbs the Zombie/Xbox - Demo 425 Nov 7 2005/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Stubbs the Zombie/Xbox - Demo 425 Nov 7 2005/hs_doc.txt -------------------------------------------------------------------------------- /Stubbs the Zombie/Xbox - Retail 400 Sep 6 2005/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Stubbs the Zombie/Xbox - Retail 400 Sep 6 2005/README.md -------------------------------------------------------------------------------- /Stubbs the Zombie/Xbox - Retail 400 Sep 6 2005/hs_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamecheat13/RawGames/HEAD/Stubbs the Zombie/Xbox - Retail 400 Sep 6 2005/hs_doc.txt --------------------------------------------------------------------------------