├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── suggestion_report.md └── workflows │ ├── GLuaLint.yml │ ├── gluatest.yml │ └── workshop-upload.yml ├── .glualint.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── acf-logo-dark.png ├── acf-logo-light.png ├── lua ├── acf │ ├── ballistics │ │ ├── ballistics_cl.lua │ │ ├── ballistics_sv.lua │ │ ├── hitboxes.lua │ │ └── world_pen_sv.lua │ ├── compatibility │ │ ├── baseplate_convert_sv.lua │ │ ├── conflict_checker.lua │ │ ├── cppi_compatibility.lua │ │ ├── old_ammo_offsets.lua │ │ ├── proper_clipping_sv.lua │ │ └── trace_workaround.lua │ ├── contraption │ │ ├── contraption_sv.lua │ │ ├── overrides_cl.lua │ │ └── seats_sv.lua │ ├── core │ │ ├── classes │ │ │ ├── ammo_types │ │ │ │ └── registration.lua │ │ │ ├── armor_types │ │ │ │ └── registration.lua │ │ │ ├── components │ │ │ │ └── registration.lua │ │ │ ├── crates │ │ │ │ └── registration.lua │ │ │ ├── engine_types │ │ │ │ └── registration.lua │ │ │ ├── engines │ │ │ │ └── registration.lua │ │ │ ├── entities │ │ │ │ └── registration.lua │ │ │ ├── fuel_tanks │ │ │ │ └── registration.lua │ │ │ ├── fuel_types │ │ │ │ └── registration.lua │ │ │ ├── gearboxes │ │ │ │ └── registration.lua │ │ │ ├── grouped.lua │ │ │ ├── helpers.lua │ │ │ ├── object.lua │ │ │ ├── piledrivers │ │ │ │ └── registration.lua │ │ │ ├── sensors │ │ │ │ └── registration.lua │ │ │ ├── simple.lua │ │ │ ├── turrets │ │ │ │ └── registration.lua │ │ │ └── weapons │ │ │ │ └── registration.lua │ │ ├── globals.lua │ │ ├── networking │ │ │ ├── data_vars │ │ │ │ ├── data_vars_cl.lua │ │ │ │ ├── data_vars_sh.lua │ │ │ │ ├── data_vars_sv.lua │ │ │ │ └── panel_functions_cl.lua │ │ │ ├── model_data │ │ │ │ ├── model_data_cl.lua │ │ │ │ ├── model_data_sh.lua │ │ │ │ └── model_data_sv.lua │ │ │ ├── networking_base.lua │ │ │ ├── networking_cl.lua │ │ │ └── networking_sv.lua │ │ ├── round_functions.lua │ │ ├── utilities │ │ │ ├── clock │ │ │ │ └── clock.lua │ │ │ ├── debug │ │ │ │ └── debug_sh.lua │ │ │ ├── effects │ │ │ │ ├── effects_cl.lua │ │ │ │ └── effects_sh.lua │ │ │ ├── hooks │ │ │ │ └── hooks.lua │ │ │ ├── messages │ │ │ │ ├── messages_cl.lua │ │ │ │ ├── messages_sh.lua │ │ │ │ └── messages_sv.lua │ │ │ ├── sounds │ │ │ │ ├── sounds_cl.lua │ │ │ │ ├── sounds_sv.lua │ │ │ │ └── tool_support_sh.lua │ │ │ ├── traces_sh.lua │ │ │ ├── util_cl.lua │ │ │ ├── util_sh.lua │ │ │ ├── util_sv.lua │ │ │ └── wire_i_o_sv │ │ │ │ └── wire_io.lua │ │ ├── validation_sv.lua │ │ └── version │ │ │ ├── version_cl.lua │ │ │ ├── version_sh.lua │ │ │ └── version_sv.lua │ ├── damage │ │ ├── damage_cl.lua │ │ ├── damage_sv.lua │ │ ├── debris_cl.lua │ │ ├── debris_sv.lua │ │ ├── explosion_sh.lua │ │ ├── explosion_sv.lua │ │ ├── ke_shove_sv.lua │ │ ├── objects_sv │ │ │ ├── damage_info.lua │ │ │ └── damage_result.lua │ │ ├── overpressure_sv.lua │ │ └── permissions │ │ │ ├── modes_sv │ │ │ ├── pmode_battle.lua │ │ │ ├── pmode_build.lua │ │ │ ├── pmode_none.lua │ │ │ ├── pmode_safe.lua │ │ │ └── pmode_strictbuild.lua │ │ │ ├── permissions_cl.lua │ │ │ └── permissions_sv.lua │ ├── entities │ │ ├── acf_chairs.lua │ │ ├── ammo_types │ │ │ ├── ap.lua │ │ │ ├── apcr.lua │ │ │ ├── apds.lua │ │ │ ├── apfsds.lua │ │ │ ├── aphe.lua │ │ │ ├── fl.lua │ │ │ ├── he.lua │ │ │ ├── heat.lua │ │ │ ├── heatfs.lua │ │ │ ├── hp.lua │ │ │ ├── refill.lua │ │ │ └── smoke.lua │ │ ├── armor_types │ │ │ ├── aluminum.lua │ │ │ └── rha.lua │ │ ├── engine_types │ │ │ ├── electric.lua │ │ │ ├── generic_diesel.lua │ │ │ ├── generic_petrol.lua │ │ │ ├── radial.lua │ │ │ ├── turbine.lua │ │ │ └── wankel.lua │ │ ├── engines │ │ │ ├── b4.lua │ │ │ ├── b6.lua │ │ │ ├── electric.lua │ │ │ ├── i2.lua │ │ │ ├── i3.lua │ │ │ ├── i4.lua │ │ │ ├── i5.lua │ │ │ ├── i6.lua │ │ │ ├── radial.lua │ │ │ ├── rotary.lua │ │ │ ├── single.lua │ │ │ ├── special.lua │ │ │ ├── turbine.lua │ │ │ ├── v10.lua │ │ │ ├── v12.lua │ │ │ ├── v2.lua │ │ │ ├── v4.lua │ │ │ ├── v6.lua │ │ │ └── v8.lua │ │ ├── fuel_tanks │ │ │ ├── box.lua │ │ │ ├── drum.lua │ │ │ └── misc.lua │ │ ├── fuel_types │ │ │ ├── diesel.lua │ │ │ ├── electric.lua │ │ │ └── petrol.lua │ │ ├── fun_entities │ │ │ └── piledriver.lua │ │ ├── gearboxes │ │ │ ├── 3-auto.lua │ │ │ ├── 4-speed.lua │ │ │ ├── 5-auto.lua │ │ │ ├── 6-speed.lua │ │ │ ├── 7-auto.lua │ │ │ ├── 8-speed.lua │ │ │ ├── clutch.lua │ │ │ ├── cvt.lua │ │ │ ├── differential.lua │ │ │ ├── doublediff.lua │ │ │ └── transfer.lua │ │ ├── playerstart_chairs.lua │ │ ├── turrets │ │ │ └── turrets.lua │ │ └── weapons │ │ │ ├── autocannon.lua │ │ │ ├── autoloader.lua │ │ │ ├── cannon.lua │ │ │ ├── grenadelauncher.lua │ │ │ ├── howitzer.lua │ │ │ ├── lightautocannon.lua │ │ │ ├── machinegun.lua │ │ │ ├── mortar.lua │ │ │ ├── rotaryautocannon.lua │ │ │ ├── semiauto.lua │ │ │ ├── shortcannon.lua │ │ │ └── smokelauncher.lua │ ├── hooks │ │ ├── hooks_cl.lua │ │ ├── hooks_sh.lua │ │ └── hooks_sv.lua │ ├── menu │ │ ├── data_callbacks.lua │ │ ├── items_cl │ │ │ ├── ammo_menu.lua │ │ │ ├── baseplates.lua │ │ │ ├── components.lua │ │ │ ├── contact.lua │ │ │ ├── copy_menu.lua │ │ │ ├── engines.lua │ │ │ ├── fun_entities.lua │ │ │ ├── gearboxes.lua │ │ │ ├── online_wiki.lua │ │ │ ├── permissions.lua │ │ │ ├── scanner.lua │ │ │ ├── sensors.lua │ │ │ ├── settings.lua │ │ │ ├── turret_menu.lua │ │ │ ├── updates.lua │ │ │ └── weapons.lua │ │ ├── operations │ │ │ ├── acf_copy.lua │ │ │ └── acf_menu.lua │ │ ├── spawn_menu_cl.lua │ │ └── tool_functions.lua │ ├── mobility │ │ └── objects_sv │ │ │ └── link.lua │ ├── persisted_vars │ │ └── vars_cl.lua │ └── scanner │ │ └── scanner_sh.lua ├── autorun │ └── acf_loader.lua ├── effects │ ├── acf_bullet_effect.lua │ ├── acf_cookoff.lua │ ├── acf_explosion.lua │ ├── acf_heat_explosion.lua │ ├── acf_impact.lua │ ├── acf_muzzle_flash.lua │ ├── acf_penetration.lua │ ├── acf_ricochet.lua │ └── acf_smoke.lua ├── entities │ ├── acf_ammo │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_armor │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_base_scalable │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_base_simple │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_baseplate │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_debris │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_engine │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_fueltank │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_gearbox │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_gun │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_piledriver │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_turret │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_turret_computer │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_turret_gyro │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_turret_motor │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── acf_turret_rotator │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ ├── base_scalable │ │ ├── cl_init.lua │ │ ├── init.lua │ │ └── shared.lua │ └── gmod_wire_expression2 │ │ └── core │ │ └── custom │ │ ├── acffunctions.lua │ │ └── cl_acfdescriptions.lua ├── includes │ └── gloader.lua ├── ponder │ ├── addons_cl │ │ └── acf.lua │ ├── instructions_cl │ │ └── macros │ │ │ └── acf_ponder_tool.lua │ └── storyboards_cl │ │ └── acf │ │ ├── engines_gearboxes.lua │ │ ├── simple_gun.lua │ │ ├── turret_basics.lua │ │ └── turret_parenting.lua ├── starfall │ └── libs_sh │ │ └── acffunctions.lua ├── tests │ └── acf │ │ ├── ballistics │ │ └── ballistics_sv │ │ │ ├── create_bullet.lua │ │ │ ├── do_round_impact.lua │ │ │ ├── get_impact_type.lua │ │ │ └── on_impact.lua │ │ ├── core │ │ ├── networking │ │ │ └── networking_base │ │ │ │ └── create_sender.lua │ │ └── validation_sv │ │ │ ├── acf_activate.lua │ │ │ ├── acf_check.lua │ │ │ ├── get_entity_type.lua │ │ │ └── is_legal.lua │ │ ├── damage │ │ └── damage_sv │ │ │ ├── acf_damage.lua │ │ │ └── acf_keshove.lua │ │ └── deps.txt ├── vgui │ └── acf_panel.lua └── weapons │ ├── acf_torch │ ├── cl_init.lua │ └── shared.lua │ └── gmod_tool │ └── stools │ ├── acf_menu.lua │ ├── acfarmorprop.lua │ ├── acfcopy.lua │ └── acfsound.lua ├── materials ├── HUD │ └── killicons │ │ ├── acf_AC.vmt │ │ ├── acf_AC.vtf │ │ ├── acf_AL.vmt │ │ ├── acf_AL.vtf │ │ ├── acf_C.vmt │ │ ├── acf_C.vtf │ │ ├── acf_GL.vmt │ │ ├── acf_GL.vtf │ │ ├── acf_HMG.vmt │ │ ├── acf_HMG.vtf │ │ ├── acf_HW.vmt │ │ ├── acf_HW.vtf │ │ ├── acf_MG.vmt │ │ ├── acf_MG.vtf │ │ ├── acf_MO.vmt │ │ ├── acf_MO.vtf │ │ ├── acf_RAC.vmt │ │ ├── acf_RAC.vtf │ │ ├── acf_SA.vmt │ │ ├── acf_SA.vtf │ │ ├── acf_ammo.vmt │ │ ├── acf_ammo.vtf │ │ ├── acf_gun.vmt │ │ ├── acf_gun.vtf │ │ ├── acf_torch.vmt │ │ └── acf_torch.vtf ├── damage │ ├── ap_pen.vmt │ ├── ap_pen.vtf │ ├── ap_rico.vmt │ ├── ap_rico.vtf │ ├── apcr_pen.vmt │ ├── apcr_pen.vtf │ ├── apcr_rico.vmt │ ├── apcr_rico.vtf │ ├── he_pen.vmt │ ├── he_pen.vtf │ ├── he_rico.vmt │ ├── he_rico.vtf │ ├── heat_pen.vmt │ ├── heat_pen.vtf │ ├── heat_rico.vmt │ └── heat_rico.vtf ├── damaged │ ├── damaged1.vmt │ ├── damaged1.vtf │ ├── damaged2.vmt │ ├── damaged2.vtf │ ├── damaged3.vmt │ └── damaged3.vtf ├── entities │ ├── acf_pilotseat.png │ ├── acf_pod.png │ ├── acf_torch.png │ ├── playerstart_chairs_airboat.png │ ├── playerstart_chairs_jeep.png │ ├── playerstart_chairs_podpose.png │ ├── playerstart_chairs_prone.png │ ├── playerstart_chairs_seated.png │ ├── playerstart_chairs_seated_alt.png │ └── playerstart_chairs_standing.png ├── models │ ├── acf │ │ └── core │ │ │ ├── turret.vmt │ │ │ ├── turret.vtf │ │ │ └── turret_normal.vtf │ ├── ammo │ │ ├── round_shell.vmt │ │ ├── round_shell.vtf │ │ ├── round_skin_ap.vmt │ │ ├── round_skin_ap.vtf │ │ ├── round_skin_he.vmt │ │ ├── round_skin_he.vtf │ │ ├── round_skin_heat.vmt │ │ ├── round_skin_heat.vtf │ │ ├── round_skin_in.vmt │ │ └── round_skin_in.vtf │ ├── autocannon │ │ ├── autocannon_sheet.vmt │ │ ├── autocannon_sheet.vtf │ │ └── autocannon_sheet_normal.vtf │ ├── chairs_playerstart │ │ ├── gray.vmt │ │ ├── orange.vmt │ │ ├── orangeat.vmt │ │ ├── untitled5.vtf │ │ └── untitled6.vtf │ ├── engines │ │ ├── heavytran_sheet.vmt │ │ ├── heavytran_sheet.vtf │ │ ├── heavytran_sheet2.vmt │ │ ├── heavytran_sheet2.vtf │ │ ├── heavytran_sheet3.vmt │ │ ├── heavytran_sheet3.vtf │ │ ├── heavytran_sheet_normal.vtf │ │ ├── inline6_sheet.vmt │ │ ├── inline6_sheet.vtf │ │ ├── inline6_sheet2.vmt │ │ ├── inline6_sheet2.vtf │ │ ├── inline6_sheet_normal.vtf │ │ ├── linear_heavy_sheet.vmt │ │ ├── linear_heavy_sheet.vtf │ │ ├── linear_heavy_sheet_normal.vtf │ │ ├── radial7_sheet.vmt │ │ ├── radial7_sheet.vtf │ │ ├── radial7_sheet_normal.vtf │ │ ├── turbine_sheet.vmt │ │ ├── turbine_sheet.vtf │ │ ├── turbine_sheet2.vmt │ │ ├── turbine_sheet2.vtf │ │ ├── turbine_sheet2_normal.vtf │ │ ├── turbine_sheet_normal.vtf │ │ ├── v8_sheet.vmt │ │ ├── v8_sheet.vtf │ │ ├── v8_sheet2.vmt │ │ ├── v8_sheet2.vtf │ │ └── v8_sheet_normal.vtf │ ├── howitzer │ │ ├── howitzer_sheet.vmt │ │ ├── howitzer_sheet.vtf │ │ └── howitzer_sheet_normal.vtf │ ├── machinegun │ │ ├── barrels_normal.vtf │ │ ├── barrels_sheet.vmt │ │ ├── barrels_sheet.vtf │ │ ├── receiver_normal.vtf │ │ ├── receiver_sheet.vtf │ │ └── receiver_skin.vmt │ ├── mguns │ │ ├── ammo and stuff.vmt │ │ ├── ammo and stuff.vtf │ │ ├── ammo.vmt │ │ ├── ammo.vtf │ │ ├── circles.vmt │ │ ├── circles.vtf │ │ ├── texture_barrel_mg151-20.vmt │ │ ├── texture_barrel_mg151-20.vtf │ │ ├── texture_mg151-20.vmt │ │ ├── texture_mg151-20.vtf │ │ ├── texture_mgff.vmt │ │ ├── texture_mgff.vtf │ │ ├── texture_mgff_barrel.vmt │ │ ├── texture_mgff_barrel.vtf │ │ ├── texture_mk108.vmt │ │ └── texture_mk108.vtf │ ├── piledriver │ │ ├── piledriver_sheet.vmt │ │ ├── piledriver_sheet.vtf │ │ └── piledriver_sheet_normal.vtf │ ├── rotarycannon │ │ └── kw │ │ │ ├── RAC_05x05_d1.vtf │ │ │ ├── RAC_05x05_n1.vtf │ │ │ ├── RAC_2048-1024.vmt │ │ │ ├── RAC_2x1_d1.vtf │ │ │ ├── RAC_2x1_n1.vtf │ │ │ └── RAC_512.vmt │ ├── tankgun │ │ ├── rfling_bump.vmt │ │ ├── rfling_bump.vtf │ │ ├── rifling.vmt │ │ ├── rifling.vtf │ │ ├── rifling_sm.vmt │ │ ├── rifling_sm.vtf │ │ ├── tankgun_sheet2.vmt │ │ ├── tankgun_sheet2.vtf │ │ └── tankgun_sheet2_normal.vtf │ └── tankgun_new │ │ ├── tankgun_misc1.vmt │ │ ├── tankgun_misc1.vtf │ │ ├── tankgun_misc1_normal.vtf │ │ ├── tankgun_misc2.vmt │ │ ├── tankgun_misc2.vtf │ │ ├── tankgun_rifled.vmt │ │ ├── tankgun_rifled.vtf │ │ ├── tankgun_rifled_normal.vtf │ │ ├── tankgun_sheet1.vmt │ │ ├── tankgun_sheet1.vtf │ │ ├── tankgun_sheet1_normal.vtf │ │ ├── tankgun_sheet2.vmt │ │ ├── tankgun_sheet2.vtf │ │ ├── tankgun_smooth.vmt │ │ ├── tankgun_smooth.vtf │ │ └── tankgun_smooth_normal.vtf ├── sprites │ ├── acf_tracer.vmt │ ├── acf_tracer.vtf │ ├── lock_bracket.vmt │ └── lock_bracket.vtf └── vgui │ ├── acf_torch_wepselect.vmt │ ├── acf_torch_wepselect.vtf │ └── entities │ ├── acf_torch.vmt │ └── acf_torch.vtf ├── models ├── acf │ └── core │ │ ├── t_computer.dx90.vtx │ │ ├── t_computer.mdl │ │ ├── t_computer.phy │ │ ├── t_computer.vvd │ │ ├── t_drive_e.dx90.vtx │ │ ├── t_drive_e.mdl │ │ ├── t_drive_e.phy │ │ ├── t_drive_e.vvd │ │ ├── t_drive_h.dx90.vtx │ │ ├── t_drive_h.mdl │ │ ├── t_drive_h.phy │ │ ├── t_drive_h.vvd │ │ ├── t_gyro.dx90.vtx │ │ ├── t_gyro.mdl │ │ ├── t_gyro.phy │ │ ├── t_gyro.vvd │ │ ├── t_ring.dx90.vtx │ │ ├── t_ring.mdl │ │ ├── t_ring.phy │ │ ├── t_ring.vvd │ │ ├── t_trun.dx90.vtx │ │ ├── t_trun.mdl │ │ ├── t_trun.phy │ │ └── t_trun.vvd ├── autocannon │ ├── autocannon_50mm.dx90.vtx │ ├── autocannon_50mm.mdl │ ├── autocannon_50mm.phy │ ├── autocannon_50mm.vvd │ ├── semiautocannon_45mm.dx90.vtx │ ├── semiautocannon_45mm.mdl │ ├── semiautocannon_45mm.phy │ └── semiautocannon_45mm.vvd ├── chairs_playerstart │ ├── airboatpose.dx90.vtx │ ├── airboatpose.mdl │ ├── airboatpose.phy │ ├── airboatpose.vvd │ ├── jeeppose.dx90.vtx │ ├── jeeppose.mdl │ ├── jeeppose.phy │ ├── jeeppose.vvd │ ├── podpose.dx90.vtx │ ├── podpose.mdl │ ├── podpose.phy │ ├── podpose.vvd │ ├── pronepose.dx90.vtx │ ├── pronepose.mdl │ ├── pronepose.phy │ ├── pronepose.vvd │ ├── sitpose.dx90.vtx │ ├── sitpose.mdl │ ├── sitpose.phy │ ├── sitpose.vvd │ ├── sitposealt.dx90.vtx │ ├── sitposealt.mdl │ ├── sitposealt.phy │ ├── sitposealt.vvd │ ├── standingpose.dx90.vtx │ ├── standingpose.mdl │ ├── standingpose.phy │ └── standingpose.vvd ├── engines │ ├── 1cylbig.dx90.vtx │ ├── 1cylbig.mdl │ ├── 1cylbig.phy │ ├── 1cylbig.vvd │ ├── 1cylmed.dx90.vtx │ ├── 1cylmed.mdl │ ├── 1cylmed.phy │ ├── 1cylmed.vvd │ ├── 1cylsml.dx90.vtx │ ├── 1cylsml.mdl │ ├── 1cylsml.phy │ ├── 1cylsml.vvd │ ├── b4med.dx90.vtx │ ├── b4med.mdl │ ├── b4med.phy │ ├── b4med.vvd │ ├── b4small.dx90.vtx │ ├── b4small.mdl │ ├── b4small.phy │ ├── b4small.vvd │ ├── b6large.dx90.vtx │ ├── b6large.mdl │ ├── b6large.phy │ ├── b6large.vvd │ ├── b6med.dx90.vtx │ ├── b6med.mdl │ ├── b6med.phy │ ├── b6med.vvd │ ├── b6small.dx90.vtx │ ├── b6small.mdl │ ├── b6small.phy │ ├── b6small.vvd │ ├── emotor-standalone-big.dx90.vtx │ ├── emotor-standalone-big.mdl │ ├── emotor-standalone-big.phy │ ├── emotor-standalone-big.vvd │ ├── emotor-standalone-mid.dx90.vtx │ ├── emotor-standalone-mid.mdl │ ├── emotor-standalone-mid.phy │ ├── emotor-standalone-mid.vvd │ ├── emotor-standalone-sml.dx90.vtx │ ├── emotor-standalone-sml.mdl │ ├── emotor-standalone-sml.phy │ ├── emotor-standalone-sml.vvd │ ├── emotor-standalone-tiny.dx90.vtx │ ├── emotor-standalone-tiny.mdl │ ├── emotor-standalone-tiny.phy │ ├── emotor-standalone-tiny.vvd │ ├── emotorlarge.dx90.vtx │ ├── emotorlarge.mdl │ ├── emotorlarge.phy │ ├── emotorlarge.vvd │ ├── emotorlarge2.dx90.vtx │ ├── emotorlarge2.mdl │ ├── emotorlarge2.phy │ ├── emotorlarge2.vvd │ ├── emotormed.dx90.vtx │ ├── emotormed.mdl │ ├── emotormed.phy │ ├── emotormed.vvd │ ├── emotormed2.dx90.vtx │ ├── emotormed2.mdl │ ├── emotormed2.phy │ ├── emotormed2.vvd │ ├── emotorsmall.dx90.vtx │ ├── emotorsmall.mdl │ ├── emotorsmall.phy │ ├── emotorsmall.vvd │ ├── emotorsmall2.dx90.vtx │ ├── emotorsmall2.mdl │ ├── emotorsmall2.phy │ ├── emotorsmall2.vvd │ ├── flywheelclutchb.dx90.vtx │ ├── flywheelclutchb.mdl │ ├── flywheelclutchb.phy │ ├── flywheelclutchb.vvd │ ├── flywheelclutchm.dx90.vtx │ ├── flywheelclutchm.mdl │ ├── flywheelclutchm.phy │ ├── flywheelclutchm.vvd │ ├── flywheelclutchs.dx90.vtx │ ├── flywheelclutchs.mdl │ ├── flywheelclutchs.phy │ ├── flywheelclutchs.vvd │ ├── flywheelclutcht.dx90.vtx │ ├── flywheelclutcht.mdl │ ├── flywheelclutcht.phy │ ├── flywheelclutcht.vvd │ ├── gasturbine_l.dx90.vtx │ ├── gasturbine_l.mdl │ ├── gasturbine_l.phy │ ├── gasturbine_l.vvd │ ├── gasturbine_m.dx90.vtx │ ├── gasturbine_m.mdl │ ├── gasturbine_m.phy │ ├── gasturbine_m.vvd │ ├── gasturbine_s.dx90.vtx │ ├── gasturbine_s.mdl │ ├── gasturbine_s.phy │ ├── gasturbine_s.vvd │ ├── inline2b.dx90.vtx │ ├── inline2b.mdl │ ├── inline2b.phy │ ├── inline2b.vvd │ ├── inline2m.dx90.vtx │ ├── inline2m.mdl │ ├── inline2m.phy │ ├── inline2m.vvd │ ├── inline2s.dx90.vtx │ ├── inline2s.mdl │ ├── inline2s.phy │ ├── inline2s.vvd │ ├── inline3b.dx90.vtx │ ├── inline3b.mdl │ ├── inline3b.phy │ ├── inline3b.vvd │ ├── inline3m.dx90.vtx │ ├── inline3m.mdl │ ├── inline3m.phy │ ├── inline3m.vvd │ ├── inline3s.dx90.vtx │ ├── inline3s.mdl │ ├── inline3s.phy │ ├── inline3s.vvd │ ├── inline4l.dx90.vtx │ ├── inline4l.mdl │ ├── inline4l.phy │ ├── inline4l.vvd │ ├── inline4m.dx90.vtx │ ├── inline4m.mdl │ ├── inline4m.phy │ ├── inline4m.vvd │ ├── inline4s.dx90.vtx │ ├── inline4s.mdl │ ├── inline4s.phy │ ├── inline4s.vvd │ ├── inline5b.dx90.vtx │ ├── inline5b.mdl │ ├── inline5b.phy │ ├── inline5b.vvd │ ├── inline5m.dx90.vtx │ ├── inline5m.mdl │ ├── inline5m.phy │ ├── inline5m.vvd │ ├── inline5s.dx90.vtx │ ├── inline5s.mdl │ ├── inline5s.phy │ ├── inline5s.vvd │ ├── inline6l.dx90.vtx │ ├── inline6l.mdl │ ├── inline6l.phy │ ├── inline6l.vvd │ ├── inline6m.dx90.vtx │ ├── inline6m.mdl │ ├── inline6m.phy │ ├── inline6m.vvd │ ├── inline6s.dx90.vtx │ ├── inline6s.mdl │ ├── inline6s.phy │ ├── inline6s.vvd │ ├── linear_l.dx90.vtx │ ├── linear_l.mdl │ ├── linear_l.phy │ ├── linear_l.vvd │ ├── linear_m.dx90.vtx │ ├── linear_m.mdl │ ├── linear_m.phy │ ├── linear_m.vvd │ ├── linear_s.dx90.vtx │ ├── linear_s.mdl │ ├── linear_s.phy │ ├── linear_s.vvd │ ├── radial7l.dx90.vtx │ ├── radial7l.mdl │ ├── radial7l.phy │ ├── radial7l.vvd │ ├── radial7m.dx90.vtx │ ├── radial7m.mdl │ ├── radial7m.phy │ ├── radial7m.vvd │ ├── radial7s.dx90.vtx │ ├── radial7s.mdl │ ├── radial7s.phy │ ├── radial7s.vvd │ ├── t5large.dx90.vtx │ ├── t5large.mdl │ ├── t5large.phy │ ├── t5large.vvd │ ├── t5med.dx90.vtx │ ├── t5med.mdl │ ├── t5med.phy │ ├── t5med.vvd │ ├── t5small.dx90.vtx │ ├── t5small.mdl │ ├── t5small.phy │ ├── t5small.vvd │ ├── transaxial_l.dx90.vtx │ ├── transaxial_l.mdl │ ├── transaxial_l.phy │ ├── transaxial_l.vvd │ ├── transaxial_m.dx90.vtx │ ├── transaxial_m.mdl │ ├── transaxial_m.phy │ ├── transaxial_m.vvd │ ├── transaxial_s.dx90.vtx │ ├── transaxial_s.mdl │ ├── transaxial_s.phy │ ├── transaxial_s.vvd │ ├── turbine_l.dx90.vtx │ ├── turbine_l.mdl │ ├── turbine_l.phy │ ├── turbine_l.vvd │ ├── turbine_m.dx90.vtx │ ├── turbine_m.mdl │ ├── turbine_m.phy │ ├── turbine_m.vvd │ ├── turbine_s.dx90.vtx │ ├── turbine_s.mdl │ ├── turbine_s.phy │ ├── turbine_s.vvd │ ├── v-twinl2.dx90.vtx │ ├── v-twinl2.mdl │ ├── v-twinl2.phy │ ├── v-twinl2.vvd │ ├── v-twinm2.dx90.vtx │ ├── v-twinm2.mdl │ ├── v-twinm2.phy │ ├── v-twinm2.vvd │ ├── v-twins2.dx90.vtx │ ├── v-twins2.mdl │ ├── v-twins2.phy │ ├── v-twins2.vvd │ ├── v10big.dx90.vtx │ ├── v10big.mdl │ ├── v10big.phy │ ├── v10big.vvd │ ├── v10med.dx90.vtx │ ├── v10med.mdl │ ├── v10med.phy │ ├── v10med.vvd │ ├── v10sml.dx90.vtx │ ├── v10sml.mdl │ ├── v10sml.phy │ ├── v10sml.vvd │ ├── v12l.dx90.vtx │ ├── v12l.mdl │ ├── v12l.phy │ ├── v12l.vvd │ ├── v12m.dx90.vtx │ ├── v12m.mdl │ ├── v12m.phy │ ├── v12m.vvd │ ├── v12s.dx90.vtx │ ├── v12s.mdl │ ├── v12s.phy │ ├── v12s.vvd │ ├── v4l.dx90.vtx │ ├── v4l.mdl │ ├── v4l.phy │ ├── v4l.vvd │ ├── v4m.dx90.vtx │ ├── v4m.mdl │ ├── v4m.phy │ ├── v4m.vvd │ ├── v4s.dx90.vtx │ ├── v4s.mdl │ ├── v4s.phy │ ├── v4s.vvd │ ├── v6large.dx90.vtx │ ├── v6large.mdl │ ├── v6large.phy │ ├── v6large.vvd │ ├── v6med.dx90.vtx │ ├── v6med.mdl │ ├── v6med.phy │ ├── v6med.vvd │ ├── v6small.dx90.vtx │ ├── v6small.mdl │ ├── v6small.phy │ ├── v6small.vvd │ ├── v8l.dx90.vtx │ ├── v8l.mdl │ ├── v8l.phy │ ├── v8l.vvd │ ├── v8m.dx90.vtx │ ├── v8m.mdl │ ├── v8m.phy │ ├── v8m.vvd │ ├── v8s.dx90.vtx │ ├── v8s.mdl │ ├── v8s.phy │ ├── v8s.vvd │ ├── wankel_2_med.dx90.vtx │ ├── wankel_2_med.mdl │ ├── wankel_2_med.phy │ ├── wankel_2_med.vvd │ ├── wankel_2_small.dx90.vtx │ ├── wankel_2_small.mdl │ ├── wankel_2_small.phy │ ├── wankel_2_small.vvd │ ├── wankel_3_med.dx90.vtx │ ├── wankel_3_med.mdl │ ├── wankel_3_med.phy │ ├── wankel_3_med.vvd │ ├── wankel_4_med.dx90.vtx │ ├── wankel_4_med.mdl │ ├── wankel_4_med.phy │ └── wankel_4_med.vvd ├── howitzer │ ├── howitzer_105mm.dx90.vtx │ ├── howitzer_105mm.mdl │ ├── howitzer_105mm.phy │ └── howitzer_105mm.vvd ├── launcher │ ├── 40mmgl.dx90.vtx │ ├── 40mmgl.mdl │ ├── 40mmgl.phy │ ├── 40mmgl.vvd │ ├── 40mmsl.dx90.vtx │ ├── 40mmsl.mdl │ ├── 40mmsl.phy │ └── 40mmsl.vvd ├── machinegun │ ├── machinegun_20mm.dx90.vtx │ ├── machinegun_20mm.mdl │ ├── machinegun_20mm.phy │ ├── machinegun_20mm.vvd │ ├── machinegun_40mm_compact.dx90.vtx │ ├── machinegun_40mm_compact.mdl │ ├── machinegun_40mm_compact.phy │ └── machinegun_40mm_compact.vvd ├── mortar │ ├── mortar_120mm.dx90.vtx │ ├── mortar_120mm.mdl │ ├── mortar_120mm.phy │ └── mortar_120mm.vvd ├── munitions │ ├── dart_100mm.dx90.vtx │ ├── dart_100mm.mdl │ ├── dart_100mm.phy │ ├── dart_100mm.vvd │ ├── round_100mm.dx90.vtx │ ├── round_100mm.mdl │ ├── round_100mm.phy │ ├── round_100mm.vvd │ ├── round_100mm_ap.dx90.vtx │ ├── round_100mm_ap.mdl │ ├── round_100mm_ap.phy │ ├── round_100mm_ap.vvd │ ├── round_100mm_ap_shot.dx90.vtx │ ├── round_100mm_ap_shot.mdl │ ├── round_100mm_ap_shot.phy │ ├── round_100mm_ap_shot.vvd │ ├── round_100mm_mortar_shot.dx90.vtx │ ├── round_100mm_mortar_shot.mdl │ ├── round_100mm_mortar_shot.phy │ ├── round_100mm_mortar_shot.vvd │ ├── round_100mm_shot.dx90.vtx │ ├── round_100mm_shot.mdl │ ├── round_100mm_shot.phy │ ├── round_100mm_shot.vvd │ ├── round_100mm_shot_ap.dx90.vtx │ ├── round_100mm_shot_ap.mdl │ ├── round_100mm_shot_ap.phy │ ├── round_100mm_shot_ap.vvd │ ├── sabot_piece_100mm.dx90.vtx │ ├── sabot_piece_100mm.mdl │ ├── sabot_piece_100mm.phy │ ├── sabot_piece_100mm.vvd │ ├── shell_casing.dx90.vtx │ ├── shell_casing.mdl │ ├── shell_casing.phy │ └── shell_casing.vvd ├── piledriver │ ├── piledriver_100mm.dx90.vtx │ ├── piledriver_100mm.mdl │ ├── piledriver_100mm.phy │ └── piledriver_100mm.vvd ├── rotarycannon │ └── kw │ │ ├── 20mmRAC.dx90.vtx │ │ ├── 20mmRAC.phy │ │ ├── 20mmrac.mdl │ │ └── 20mmrac.vvd ├── tankgun │ ├── tankgun_100mm.dx90.vtx │ ├── tankgun_100mm.mdl │ ├── tankgun_100mm.phy │ ├── tankgun_100mm.vvd │ ├── tankgun_al_100mm.dx90.vtx │ ├── tankgun_al_100mm.mdl │ ├── tankgun_al_100mm.phy │ ├── tankgun_al_100mm.vvd │ ├── tankgun_short_100mm.dx90.vtx │ ├── tankgun_short_100mm.mdl │ ├── tankgun_short_100mm.phy │ └── tankgun_short_100mm.vvd ├── tankgun_new │ ├── tankgun_100mm.dx90.vtx │ ├── tankgun_100mm.mdl │ ├── tankgun_100mm.phy │ └── tankgun_100mm.vvd ├── vehicles │ ├── driver_pod.dx90.vtx │ ├── driver_pod.mdl │ ├── driver_pod.phy │ ├── driver_pod.vvd │ ├── pilot_seat.dx90.vtx │ ├── pilot_seat.mdl │ ├── pilot_seat.phy │ └── pilot_seat.vvd └── weapons │ ├── c_cuttingtorch.dx90.vtx │ ├── c_cuttingtorch.mdl │ ├── c_cuttingtorch.vvd │ ├── w_cuttingtorch.dx90.vtx │ ├── w_cuttingtorch.mdl │ ├── w_cuttingtorch.phy │ └── w_cuttingtorch.vvd ├── particles ├── acf_muzzleflashes.pcf ├── explosion1.pcf └── rocket_motor.pcf ├── resource ├── fonts │ └── 16segments-basic.ttf └── localization │ ├── en-PT │ └── acf_tool_sound.properties │ └── en │ ├── acf_entity_cleanup.properties │ ├── acf_menu.properties │ ├── acf_menu_about.properties │ ├── acf_menu_baseplates.properties │ ├── acf_menu_crew.properties │ ├── acf_menu_engines.properties │ ├── acf_menu_fun.properties │ ├── acf_menu_gearboxes.properties │ ├── acf_menu_permissions.properties │ ├── acf_menu_scanner.properties │ ├── acf_menu_settings.properties │ ├── acf_menu_turrets.properties │ ├── acf_menu_weapons.properties │ ├── acf_settings.properties │ ├── acf_storyboards.properties │ ├── acf_tool_armor.properties │ ├── acf_tool_copy.properties │ └── acf_tool_sound.properties └── sound └── acf_base ├── engines ├── b4_petrollarge.wav ├── b4_petrolmedium.wav ├── b4_petrolsmall.wav ├── b6_petrollarge.wav ├── b6_petrolmedium.wav ├── b6_petrolsmall.wav ├── electric_large.wav ├── electric_medium.wav ├── electric_small.wav ├── i1_large.wav ├── i1_medium.wav ├── i1_small.wav ├── i4_diesel.wav ├── i4_diesel2.wav ├── i4_diesellarge.wav ├── i4_dieselmedium.wav ├── i4_petrollarge.wav ├── i4_petrolmedium.wav ├── i4_petrolmedium2.wav ├── i4_petrolsmall.wav ├── i4_petrolsmall2.wav ├── i4_special.wav ├── i5_dieselmedium.wav ├── i5_dieselsmall.wav ├── i5_dieselsmall2.wav ├── i5_petrolmedium.wav ├── i5_petrolsmall.wav ├── l6_diesellarge2.wav ├── l6_dieselmedium.wav ├── l6_dieselmedium4.wav ├── l6_dieselsmall.wav ├── l6_petrollarge2.wav ├── l6_petrolmedium.wav ├── l6_petrolsmall2.wav ├── l6_special.wav ├── mid_on_in.wav ├── newl6pet.wav ├── r7_petrollarge.wav ├── r7_petrolmedium.wav ├── r7_petrolsmall.wav ├── turbine.wav ├── turbine_large.wav ├── turbine_medium.wav ├── turbine_small.wav ├── v10_diesellarge.wav ├── v10_petrolmedium.wav ├── v10_petrolsmall.wav ├── v10_special.wav ├── v12_diesellarge.wav ├── v12_dieselmedium.wav ├── v12_dieselsmall.wav ├── v12_maybach.wav ├── v12_petrollarge.wav ├── v12_petrollargeorig.wav ├── v12_petrolmedium.wav ├── v12_petrolsmall.wav ├── v12_russian.wav ├── v12_special.wav ├── v6_diesellarge.wav ├── v6_petrollarge.wav ├── v6_petrolmedium.wav ├── v6_petrolsmall.wav ├── v6_petrolsmall2.wav ├── v8_diesel.wav ├── v8_diesel2.wav ├── v8_diesellarge.wav ├── v8_dieselmedium2.wav ├── v8_dieselsmall.wav ├── v8_petrol.wav ├── v8_petrol2.wav ├── v8_petrollarge.wav ├── v8_petrolmedium.wav ├── v8_petrolsmall.wav ├── v8_smalldiesel.wav ├── v8_special.wav ├── v8_special2.wav ├── vtwin_large.wav ├── vtwin_medium.wav ├── vtwin_small.wav ├── wankel_large.wav ├── wankel_medium.wav └── wankel_small.wav ├── fx ├── penetration1.mp3 ├── penetration2.mp3 ├── penetration3.mp3 ├── penetration4.mp3 ├── penetration5.mp3 ├── penetration6.mp3 ├── resupply_loop.wav ├── resupply_single.mp3 ├── ricochet1.mp3 ├── ricochet2.mp3 ├── ricochet3.mp3 ├── ricochet4.mp3 ├── turret_electric.wav ├── turret_handcrank.wav └── turret_hydraulic.wav └── weapons ├── ac_fire.mp3 ├── ac_fire1.mp3 ├── ac_fire3.mp3 ├── ac_fire4.mp3 ├── ac_fire4_old.mp3 ├── autoloader.mp3 ├── cannon_fire3.mp3 ├── cannon_new.mp3 ├── distancecannon.mp3 ├── distancehowitzer.mp3 ├── distancemortar.mp3 ├── grenadelauncher.mp3 ├── howitzer_fire3.mp3 ├── howitzer_new2.mp3 ├── mg_fire1.mp3 ├── mg_fire2.mp3 ├── mg_fire3.mp3 ├── mg_fire4.mp3 ├── missilefire.mp3 ├── mortar_fire1.mp3 ├── mortar_new.mp3 ├── rac_fire1.mp3 ├── rac_fire2.mp3 ├── sa_fire1.mp3 └── smoke_launch.mp3 /acf-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/acf-logo-dark.png -------------------------------------------------------------------------------- /acf-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/acf-logo-light.png -------------------------------------------------------------------------------- /lua/acf/entities/fuel_types/diesel.lua: -------------------------------------------------------------------------------- 1 | local FuelTypes = ACF.Classes.FuelTypes 2 | 3 | 4 | FuelTypes.Register("Diesel", { 5 | Name = "Diesel Fuel", 6 | Density = 0.745, 7 | }) 8 | -------------------------------------------------------------------------------- /lua/acf/entities/fuel_types/petrol.lua: -------------------------------------------------------------------------------- 1 | local FuelTypes = ACF.Classes.FuelTypes 2 | 3 | 4 | FuelTypes.Register("Petrol", { 5 | Name = "Petrol Fuel", 6 | Density = 0.832, 7 | }) 8 | -------------------------------------------------------------------------------- /lua/autorun/acf_loader.lua: -------------------------------------------------------------------------------- 1 | include("includes/gloader.lua") 2 | 3 | gloader.Load("ACF", "acf") 4 | -------------------------------------------------------------------------------- /lua/entities/acf_base_scalable/shared.lua: -------------------------------------------------------------------------------- 1 | DEFINE_BASECLASS("base_scalable") 2 | 3 | ENT.PrintName = "Scalable ACF Base Entity" 4 | ENT.WireDebugName = "Scalable ACF Base Entity" 5 | ENT.PluralName = "Scalable ACF Base Entities" 6 | ENT.IsACFEntity = true -------------------------------------------------------------------------------- /lua/entities/acf_base_simple/shared.lua: -------------------------------------------------------------------------------- 1 | DEFINE_BASECLASS("base_wire_entity") 2 | 3 | ENT.PrintName = "Simple ACF Base Entity" 4 | ENT.WireDebugName = "Simple ACF Base Entity" 5 | ENT.PluralName = "Simple ACF Base Entities" 6 | ENT.IsACFEntity = true 7 | -------------------------------------------------------------------------------- /lua/entities/acf_debris/cl_init.lua: -------------------------------------------------------------------------------- 1 | include("shared.lua") 2 | 3 | function ENT:Initialize() 4 | self:SetNoDraw(true) 5 | end 6 | 7 | function ENT:OnRemove() 8 | self:StopAndDestroyParticles() 9 | end -------------------------------------------------------------------------------- /lua/entities/acf_debris/shared.lua: -------------------------------------------------------------------------------- 1 | DEFINE_BASECLASS("base_anim") 2 | 3 | ENT.PrintName = "Fireball" 4 | ENT.RenderGroup = RENDERGROUP_OTHER -------------------------------------------------------------------------------- /lua/entities/acf_piledriver/cl_init.lua: -------------------------------------------------------------------------------- 1 | include("shared.lua") -------------------------------------------------------------------------------- /lua/entities/acf_turret_computer/cl_init.lua: -------------------------------------------------------------------------------- 1 | include("shared.lua") -------------------------------------------------------------------------------- /lua/entities/acf_turret_gyro/cl_init.lua: -------------------------------------------------------------------------------- 1 | include("shared.lua") -------------------------------------------------------------------------------- /lua/entities/acf_turret_motor/cl_init.lua: -------------------------------------------------------------------------------- 1 | include("shared.lua") -------------------------------------------------------------------------------- /lua/entities/acf_turret_rotator/cl_init.lua: -------------------------------------------------------------------------------- 1 | include("shared.lua") 2 | 3 | 4 | function ENT:Draw() end -------------------------------------------------------------------------------- /lua/entities/acf_turret_rotator/shared.lua: -------------------------------------------------------------------------------- 1 | DEFINE_BASECLASS("base_anim") 2 | 3 | AddCSLuaFile() 4 | AddCSLuaFile("cl_init.lua") -------------------------------------------------------------------------------- /lua/tests/acf/deps.txt: -------------------------------------------------------------------------------- 1 | wiremod/wire 2 | ACF-Team/CFW 3 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_AC.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_AC" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_AC.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_AC.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_AL.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_AL" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_AL.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_AL.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_C.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_C" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_C.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_C.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_GL.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_GL" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_GL.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_GL.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_HMG.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_HMG" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_HMG.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_HMG.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_HW.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_HW" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_HW.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_HW.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_MG.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_MG" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_MG.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_MG.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_MO.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_MO" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_MO.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_MO.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_RAC.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_RAC" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_RAC.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_RAC.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_SA.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_SA" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_SA.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_SA.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_ammo.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_ammo" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_ammo.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_ammo.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_gun.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_gun" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_gun.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_gun.vtf -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_torch.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "HUD/killicons/acf_torch" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | "$additive" 1 // hldm style! 8 | } 9 | -------------------------------------------------------------------------------- /materials/HUD/killicons/acf_torch.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/HUD/killicons/acf_torch.vtf -------------------------------------------------------------------------------- /materials/damage/ap_pen.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "damage/ap_pen" 4 | "$decal" "1" 5 | "$decalscale" "0.05" 6 | "$translucent" "1" 7 | } -------------------------------------------------------------------------------- /materials/damage/ap_pen.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damage/ap_pen.vtf -------------------------------------------------------------------------------- /materials/damage/ap_rico.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "damage/ap_rico" 4 | "$decal" "1" 5 | "$decalscale" "0.05" 6 | "$translucent" "1" 7 | } -------------------------------------------------------------------------------- /materials/damage/ap_rico.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damage/ap_rico.vtf -------------------------------------------------------------------------------- /materials/damage/apcr_pen.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "damage/apcr_pen" 4 | "$decal" "1" 5 | "$decalscale" "0.05" 6 | "$translucent" "1" 7 | } -------------------------------------------------------------------------------- /materials/damage/apcr_pen.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damage/apcr_pen.vtf -------------------------------------------------------------------------------- /materials/damage/apcr_rico.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "damage/apcr_rico" 4 | "$decal" "1" 5 | "$decalscale" "0.05" 6 | "$translucent" "1" 7 | } -------------------------------------------------------------------------------- /materials/damage/apcr_rico.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damage/apcr_rico.vtf -------------------------------------------------------------------------------- /materials/damage/he_pen.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "damage/he_pen" 4 | "$decal" "1" 5 | "$decalscale" "0.05" 6 | "$translucent" "1" 7 | } -------------------------------------------------------------------------------- /materials/damage/he_pen.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damage/he_pen.vtf -------------------------------------------------------------------------------- /materials/damage/he_rico.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "damage/he_rico" 4 | "$decal" "1" 5 | "$decalscale" "0.05" 6 | "$translucent" "1" 7 | } -------------------------------------------------------------------------------- /materials/damage/he_rico.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damage/he_rico.vtf -------------------------------------------------------------------------------- /materials/damage/heat_pen.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "damage/heat_pen" 4 | "$decal" "1" 5 | "$decalscale" "0.05" 6 | "$translucent" "1" 7 | } -------------------------------------------------------------------------------- /materials/damage/heat_pen.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damage/heat_pen.vtf -------------------------------------------------------------------------------- /materials/damage/heat_rico.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "damage/heat_rico" 4 | "$decal" "1" 5 | "$decalscale" "0.05" 6 | "$translucent" "1" 7 | } -------------------------------------------------------------------------------- /materials/damage/heat_rico.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damage/heat_rico.vtf -------------------------------------------------------------------------------- /materials/damaged/damaged1.vmt: -------------------------------------------------------------------------------- 1 | "LightmappedGeneric" 2 | { 3 | "$basetexture" "damaged/damaged1" 4 | "$model" "1" 5 | } 6 | -------------------------------------------------------------------------------- /materials/damaged/damaged1.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damaged/damaged1.vtf -------------------------------------------------------------------------------- /materials/damaged/damaged2.vmt: -------------------------------------------------------------------------------- 1 | "LightmappedGeneric" 2 | { 3 | "$basetexture" "damaged/damaged2" 4 | "$model" "1" 5 | } 6 | -------------------------------------------------------------------------------- /materials/damaged/damaged2.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damaged/damaged2.vtf -------------------------------------------------------------------------------- /materials/damaged/damaged3.vmt: -------------------------------------------------------------------------------- 1 | "LightmappedGeneric" 2 | { 3 | "$basetexture" "damaged/damaged3" 4 | "$model" "1" 5 | } 6 | -------------------------------------------------------------------------------- /materials/damaged/damaged3.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/damaged/damaged3.vtf -------------------------------------------------------------------------------- /materials/entities/acf_pilotseat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/entities/acf_pilotseat.png -------------------------------------------------------------------------------- /materials/entities/acf_pod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/entities/acf_pod.png -------------------------------------------------------------------------------- /materials/entities/acf_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/entities/acf_torch.png -------------------------------------------------------------------------------- /materials/entities/playerstart_chairs_airboat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/entities/playerstart_chairs_airboat.png -------------------------------------------------------------------------------- /materials/entities/playerstart_chairs_jeep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/entities/playerstart_chairs_jeep.png -------------------------------------------------------------------------------- /materials/entities/playerstart_chairs_podpose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/entities/playerstart_chairs_podpose.png -------------------------------------------------------------------------------- /materials/entities/playerstart_chairs_prone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/entities/playerstart_chairs_prone.png -------------------------------------------------------------------------------- /materials/entities/playerstart_chairs_seated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/entities/playerstart_chairs_seated.png -------------------------------------------------------------------------------- /materials/entities/playerstart_chairs_seated_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/entities/playerstart_chairs_seated_alt.png -------------------------------------------------------------------------------- /materials/entities/playerstart_chairs_standing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/entities/playerstart_chairs_standing.png -------------------------------------------------------------------------------- /materials/models/acf/core/turret.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/acf/core/turret.vtf -------------------------------------------------------------------------------- /materials/models/acf/core/turret_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/acf/core/turret_normal.vtf -------------------------------------------------------------------------------- /materials/models/ammo/round_shell.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "Models/ammo/round_shell" 4 | "$envmap" "env_cubemap" 5 | "$envmapcontrast" 1 6 | "$envmapsaturation" 1 7 | "$envmaptint" "[ .5 .5 .5]" 8 | } 9 | -------------------------------------------------------------------------------- /materials/models/ammo/round_shell.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/ammo/round_shell.vtf -------------------------------------------------------------------------------- /materials/models/ammo/round_skin_ap.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "Models/ammo/round_skin_AP" 4 | "$envmap" "env_cubemap" 5 | "$envmapcontrast" 1 6 | "$envmapsaturation" 1 7 | "$envmaptint" "[ .25 .25 .25]" 8 | } 9 | -------------------------------------------------------------------------------- /materials/models/ammo/round_skin_ap.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/ammo/round_skin_ap.vtf -------------------------------------------------------------------------------- /materials/models/ammo/round_skin_he.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "Models/ammo/round_skin_HE" 4 | "$envmap" "env_cubemap" 5 | "$envmapcontrast" 1 6 | "$envmapsaturation" 1 7 | "$envmaptint" "[ .25 .25 .25]" 8 | } 9 | -------------------------------------------------------------------------------- /materials/models/ammo/round_skin_he.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/ammo/round_skin_he.vtf -------------------------------------------------------------------------------- /materials/models/ammo/round_skin_heat.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "Models/ammo/round_skin_HEAT" 4 | "$envmap" "env_cubemap" 5 | "$envmapcontrast" 1 6 | "$envmapsaturation" 1 7 | "$envmaptint" "[ .25 .25 .25]" 8 | } 9 | -------------------------------------------------------------------------------- /materials/models/ammo/round_skin_heat.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/ammo/round_skin_heat.vtf -------------------------------------------------------------------------------- /materials/models/ammo/round_skin_in.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$basetexture" "Models/ammo/round_skin_IN" 4 | "$envmap" "env_cubemap" 5 | "$envmapcontrast" 1 6 | "$envmapsaturation" 1 7 | "$envmaptint" "[ .25 .25 .25]" 8 | } 9 | -------------------------------------------------------------------------------- /materials/models/ammo/round_skin_in.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/ammo/round_skin_in.vtf -------------------------------------------------------------------------------- /materials/models/autocannon/autocannon_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/autocannon/autocannon_sheet.vtf -------------------------------------------------------------------------------- /materials/models/autocannon/autocannon_sheet_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/autocannon/autocannon_sheet_normal.vtf -------------------------------------------------------------------------------- /materials/models/chairs_playerstart/gray.vmt: -------------------------------------------------------------------------------- 1 | VertexLitGeneric 2 | { 3 | "$basetexture" "editor/gray" 4 | } -------------------------------------------------------------------------------- /materials/models/chairs_playerstart/orange.vmt: -------------------------------------------------------------------------------- 1 | VertexLitGeneric 2 | { 3 | "$basetexture" "models/chairs_playerstart/Untitled6" 4 | "$translucent" "1" 5 | } -------------------------------------------------------------------------------- /materials/models/chairs_playerstart/orangeat.vmt: -------------------------------------------------------------------------------- 1 | VertexLitGeneric 2 | { 3 | "$basetexture" "models/chairs_playerstart/Untitled6" 4 | "$alphatest" "1" 5 | } -------------------------------------------------------------------------------- /materials/models/chairs_playerstart/untitled5.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/chairs_playerstart/untitled5.vtf -------------------------------------------------------------------------------- /materials/models/chairs_playerstart/untitled6.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/chairs_playerstart/untitled6.vtf -------------------------------------------------------------------------------- /materials/models/engines/heavytran_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/heavytran_sheet.vtf -------------------------------------------------------------------------------- /materials/models/engines/heavytran_sheet2.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/heavytran_sheet2.vtf -------------------------------------------------------------------------------- /materials/models/engines/heavytran_sheet3.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/heavytran_sheet3.vtf -------------------------------------------------------------------------------- /materials/models/engines/heavytran_sheet_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/heavytran_sheet_normal.vtf -------------------------------------------------------------------------------- /materials/models/engines/inline6_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/inline6_sheet.vtf -------------------------------------------------------------------------------- /materials/models/engines/inline6_sheet2.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/inline6_sheet2.vtf -------------------------------------------------------------------------------- /materials/models/engines/inline6_sheet_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/inline6_sheet_normal.vtf -------------------------------------------------------------------------------- /materials/models/engines/linear_heavy_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/linear_heavy_sheet.vtf -------------------------------------------------------------------------------- /materials/models/engines/linear_heavy_sheet_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/linear_heavy_sheet_normal.vtf -------------------------------------------------------------------------------- /materials/models/engines/radial7_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/radial7_sheet.vtf -------------------------------------------------------------------------------- /materials/models/engines/radial7_sheet_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/radial7_sheet_normal.vtf -------------------------------------------------------------------------------- /materials/models/engines/turbine_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/turbine_sheet.vtf -------------------------------------------------------------------------------- /materials/models/engines/turbine_sheet2.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/turbine_sheet2.vtf -------------------------------------------------------------------------------- /materials/models/engines/turbine_sheet2_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/turbine_sheet2_normal.vtf -------------------------------------------------------------------------------- /materials/models/engines/turbine_sheet_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/turbine_sheet_normal.vtf -------------------------------------------------------------------------------- /materials/models/engines/v8_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/v8_sheet.vtf -------------------------------------------------------------------------------- /materials/models/engines/v8_sheet2.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/v8_sheet2.vtf -------------------------------------------------------------------------------- /materials/models/engines/v8_sheet_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/engines/v8_sheet_normal.vtf -------------------------------------------------------------------------------- /materials/models/howitzer/howitzer_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/howitzer/howitzer_sheet.vtf -------------------------------------------------------------------------------- /materials/models/howitzer/howitzer_sheet_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/howitzer/howitzer_sheet_normal.vtf -------------------------------------------------------------------------------- /materials/models/machinegun/barrels_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/machinegun/barrels_normal.vtf -------------------------------------------------------------------------------- /materials/models/machinegun/barrels_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/machinegun/barrels_sheet.vtf -------------------------------------------------------------------------------- /materials/models/machinegun/receiver_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/machinegun/receiver_normal.vtf -------------------------------------------------------------------------------- /materials/models/machinegun/receiver_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/machinegun/receiver_sheet.vtf -------------------------------------------------------------------------------- /materials/models/mguns/ammo and stuff.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$baseTexture" "models\mguns/ammo and stuff" 4 | $halflambert 1 5 | $blendtintbybasealpha 1 6 | } 7 | -------------------------------------------------------------------------------- /materials/models/mguns/ammo and stuff.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/mguns/ammo and stuff.vtf -------------------------------------------------------------------------------- /materials/models/mguns/ammo.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$baseTexture" "models\mguns/ammo" 4 | $halflambert 1 5 | $blendtintbybasealpha 1 6 | } 7 | -------------------------------------------------------------------------------- /materials/models/mguns/ammo.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/mguns/ammo.vtf -------------------------------------------------------------------------------- /materials/models/mguns/circles.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$baseTexture" "models\mguns/circles" 4 | "$model" "1" 5 | "$translucent" "1" 6 | } 7 | -------------------------------------------------------------------------------- /materials/models/mguns/circles.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/mguns/circles.vtf -------------------------------------------------------------------------------- /materials/models/mguns/texture_barrel_mg151-20.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$baseTexture" "models\mguns/texture_barrel_mg151-20" 4 | $halflambert 1 5 | $blendtintbybasealpha 1 6 | } 7 | -------------------------------------------------------------------------------- /materials/models/mguns/texture_barrel_mg151-20.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/mguns/texture_barrel_mg151-20.vtf -------------------------------------------------------------------------------- /materials/models/mguns/texture_mg151-20.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$baseTexture" "models\mguns/texture_mg151-20" 4 | $halflambert 1 5 | $blendtintbybasealpha 1 6 | } 7 | -------------------------------------------------------------------------------- /materials/models/mguns/texture_mg151-20.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/mguns/texture_mg151-20.vtf -------------------------------------------------------------------------------- /materials/models/mguns/texture_mgff.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$baseTexture" "models\mguns/texture_mgff" 4 | $halflambert 1 5 | $blendtintbybasealpha 1 6 | } 7 | -------------------------------------------------------------------------------- /materials/models/mguns/texture_mgff.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/mguns/texture_mgff.vtf -------------------------------------------------------------------------------- /materials/models/mguns/texture_mgff_barrel.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$baseTexture" "models\mguns/texture_mgff_barrel" 4 | $halflambert 1 5 | $blendtintbybasealpha 1 6 | } 7 | -------------------------------------------------------------------------------- /materials/models/mguns/texture_mgff_barrel.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/mguns/texture_mgff_barrel.vtf -------------------------------------------------------------------------------- /materials/models/mguns/texture_mk108.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$baseTexture" "models\mguns/texture_mk108" 4 | $halflambert 1 5 | $blendtintbybasealpha 1 6 | } 7 | -------------------------------------------------------------------------------- /materials/models/mguns/texture_mk108.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/mguns/texture_mk108.vtf -------------------------------------------------------------------------------- /materials/models/piledriver/piledriver_sheet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/piledriver/piledriver_sheet.vtf -------------------------------------------------------------------------------- /materials/models/piledriver/piledriver_sheet_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/piledriver/piledriver_sheet_normal.vtf -------------------------------------------------------------------------------- /materials/models/rotarycannon/kw/RAC_05x05_d1.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/rotarycannon/kw/RAC_05x05_d1.vtf -------------------------------------------------------------------------------- /materials/models/rotarycannon/kw/RAC_05x05_n1.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/rotarycannon/kw/RAC_05x05_n1.vtf -------------------------------------------------------------------------------- /materials/models/rotarycannon/kw/RAC_2x1_d1.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/rotarycannon/kw/RAC_2x1_d1.vtf -------------------------------------------------------------------------------- /materials/models/rotarycannon/kw/RAC_2x1_n1.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/rotarycannon/kw/RAC_2x1_n1.vtf -------------------------------------------------------------------------------- /materials/models/tankgun/rfling_bump.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$baseTexture" "models\tankgun/rfling_bump" 4 | "$bumpmap" "models\tankgun/rfling_bump" 5 | "$model" "1" 6 | "$envmap" "env_cubemap" 7 | "$selfillum_envmapmask_alpha" "1" 8 | } 9 | -------------------------------------------------------------------------------- /materials/models/tankgun/rfling_bump.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun/rfling_bump.vtf -------------------------------------------------------------------------------- /materials/models/tankgun/rifling.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun/rifling.vtf -------------------------------------------------------------------------------- /materials/models/tankgun/rifling_sm.vmt: -------------------------------------------------------------------------------- 1 | "VertexLitGeneric" 2 | { 3 | "$baseTexture" "models\tankgun/rifling_sm" 4 | "$bumpmap" "models\tankgun/rfling_bump" 5 | "$model" "1" 6 | "$envmap" "env_cubemap" 7 | "$selfillum_envmapmask_alpha" "1" 8 | } 9 | -------------------------------------------------------------------------------- /materials/models/tankgun/rifling_sm.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun/rifling_sm.vtf -------------------------------------------------------------------------------- /materials/models/tankgun/tankgun_sheet2.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun/tankgun_sheet2.vtf -------------------------------------------------------------------------------- /materials/models/tankgun/tankgun_sheet2_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun/tankgun_sheet2_normal.vtf -------------------------------------------------------------------------------- /materials/models/tankgun_new/tankgun_misc1.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun_new/tankgun_misc1.vtf -------------------------------------------------------------------------------- /materials/models/tankgun_new/tankgun_misc1_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun_new/tankgun_misc1_normal.vtf -------------------------------------------------------------------------------- /materials/models/tankgun_new/tankgun_misc2.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun_new/tankgun_misc2.vtf -------------------------------------------------------------------------------- /materials/models/tankgun_new/tankgun_rifled.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun_new/tankgun_rifled.vtf -------------------------------------------------------------------------------- /materials/models/tankgun_new/tankgun_rifled_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun_new/tankgun_rifled_normal.vtf -------------------------------------------------------------------------------- /materials/models/tankgun_new/tankgun_sheet1.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun_new/tankgun_sheet1.vtf -------------------------------------------------------------------------------- /materials/models/tankgun_new/tankgun_sheet1_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun_new/tankgun_sheet1_normal.vtf -------------------------------------------------------------------------------- /materials/models/tankgun_new/tankgun_sheet2.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun_new/tankgun_sheet2.vtf -------------------------------------------------------------------------------- /materials/models/tankgun_new/tankgun_smooth.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun_new/tankgun_smooth.vtf -------------------------------------------------------------------------------- /materials/models/tankgun_new/tankgun_smooth_normal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/models/tankgun_new/tankgun_smooth_normal.vtf -------------------------------------------------------------------------------- /materials/sprites/acf_tracer.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$baseTexture" "sprites/acf_tracer" 4 | 5 | "$additive" 1 6 | "$vertexcolor" 1 7 | "$vertexalpha" 1 8 | } -------------------------------------------------------------------------------- /materials/sprites/acf_tracer.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/sprites/acf_tracer.vtf -------------------------------------------------------------------------------- /materials/sprites/lock_bracket.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "sprites/lock_bracket" 4 | "$translucent" 1 5 | "$vertexalpha" 1 6 | "$vertexcolor" 1 7 | "$ignorez" "1" 8 | } 9 | -------------------------------------------------------------------------------- /materials/sprites/lock_bracket.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/sprites/lock_bracket.vtf -------------------------------------------------------------------------------- /materials/vgui/acf_torch_wepselect.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "vgui/acf_torch_wepselect" 4 | "$translucent" 1 5 | "$vertexalpha" 1 6 | "$vertexcolor" 1 7 | } 8 | -------------------------------------------------------------------------------- /materials/vgui/acf_torch_wepselect.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/vgui/acf_torch_wepselect.vtf -------------------------------------------------------------------------------- /materials/vgui/entities/acf_torch.vmt: -------------------------------------------------------------------------------- 1 | "UnlitGeneric" 2 | { 3 | "$basetexture" "vgui/entities/torch" 4 | "$vertexcolor" 1 5 | "$vertexalpha" 1 6 | "$nolod" 1 7 | } -------------------------------------------------------------------------------- /materials/vgui/entities/acf_torch.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/materials/vgui/entities/acf_torch.vtf -------------------------------------------------------------------------------- /models/acf/core/t_computer.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_computer.dx90.vtx -------------------------------------------------------------------------------- /models/acf/core/t_computer.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_computer.mdl -------------------------------------------------------------------------------- /models/acf/core/t_computer.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_computer.phy -------------------------------------------------------------------------------- /models/acf/core/t_computer.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_computer.vvd -------------------------------------------------------------------------------- /models/acf/core/t_drive_e.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_drive_e.dx90.vtx -------------------------------------------------------------------------------- /models/acf/core/t_drive_e.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_drive_e.mdl -------------------------------------------------------------------------------- /models/acf/core/t_drive_e.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_drive_e.phy -------------------------------------------------------------------------------- /models/acf/core/t_drive_e.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_drive_e.vvd -------------------------------------------------------------------------------- /models/acf/core/t_drive_h.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_drive_h.dx90.vtx -------------------------------------------------------------------------------- /models/acf/core/t_drive_h.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_drive_h.mdl -------------------------------------------------------------------------------- /models/acf/core/t_drive_h.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_drive_h.phy -------------------------------------------------------------------------------- /models/acf/core/t_drive_h.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_drive_h.vvd -------------------------------------------------------------------------------- /models/acf/core/t_gyro.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_gyro.dx90.vtx -------------------------------------------------------------------------------- /models/acf/core/t_gyro.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_gyro.mdl -------------------------------------------------------------------------------- /models/acf/core/t_gyro.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_gyro.phy -------------------------------------------------------------------------------- /models/acf/core/t_gyro.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_gyro.vvd -------------------------------------------------------------------------------- /models/acf/core/t_ring.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_ring.dx90.vtx -------------------------------------------------------------------------------- /models/acf/core/t_ring.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_ring.mdl -------------------------------------------------------------------------------- /models/acf/core/t_ring.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_ring.phy -------------------------------------------------------------------------------- /models/acf/core/t_ring.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_ring.vvd -------------------------------------------------------------------------------- /models/acf/core/t_trun.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_trun.dx90.vtx -------------------------------------------------------------------------------- /models/acf/core/t_trun.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_trun.mdl -------------------------------------------------------------------------------- /models/acf/core/t_trun.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_trun.phy -------------------------------------------------------------------------------- /models/acf/core/t_trun.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/acf/core/t_trun.vvd -------------------------------------------------------------------------------- /models/autocannon/autocannon_50mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/autocannon/autocannon_50mm.dx90.vtx -------------------------------------------------------------------------------- /models/autocannon/autocannon_50mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/autocannon/autocannon_50mm.mdl -------------------------------------------------------------------------------- /models/autocannon/autocannon_50mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/autocannon/autocannon_50mm.phy -------------------------------------------------------------------------------- /models/autocannon/autocannon_50mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/autocannon/autocannon_50mm.vvd -------------------------------------------------------------------------------- /models/autocannon/semiautocannon_45mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/autocannon/semiautocannon_45mm.dx90.vtx -------------------------------------------------------------------------------- /models/autocannon/semiautocannon_45mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/autocannon/semiautocannon_45mm.mdl -------------------------------------------------------------------------------- /models/autocannon/semiautocannon_45mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/autocannon/semiautocannon_45mm.phy -------------------------------------------------------------------------------- /models/autocannon/semiautocannon_45mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/autocannon/semiautocannon_45mm.vvd -------------------------------------------------------------------------------- /models/chairs_playerstart/airboatpose.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/airboatpose.dx90.vtx -------------------------------------------------------------------------------- /models/chairs_playerstart/airboatpose.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/airboatpose.mdl -------------------------------------------------------------------------------- /models/chairs_playerstart/airboatpose.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/airboatpose.phy -------------------------------------------------------------------------------- /models/chairs_playerstart/airboatpose.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/airboatpose.vvd -------------------------------------------------------------------------------- /models/chairs_playerstart/jeeppose.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/jeeppose.dx90.vtx -------------------------------------------------------------------------------- /models/chairs_playerstart/jeeppose.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/jeeppose.mdl -------------------------------------------------------------------------------- /models/chairs_playerstart/jeeppose.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/jeeppose.phy -------------------------------------------------------------------------------- /models/chairs_playerstart/jeeppose.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/jeeppose.vvd -------------------------------------------------------------------------------- /models/chairs_playerstart/podpose.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/podpose.dx90.vtx -------------------------------------------------------------------------------- /models/chairs_playerstart/podpose.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/podpose.mdl -------------------------------------------------------------------------------- /models/chairs_playerstart/podpose.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/podpose.phy -------------------------------------------------------------------------------- /models/chairs_playerstart/podpose.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/podpose.vvd -------------------------------------------------------------------------------- /models/chairs_playerstart/pronepose.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/pronepose.dx90.vtx -------------------------------------------------------------------------------- /models/chairs_playerstart/pronepose.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/pronepose.mdl -------------------------------------------------------------------------------- /models/chairs_playerstart/pronepose.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/pronepose.phy -------------------------------------------------------------------------------- /models/chairs_playerstart/pronepose.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/pronepose.vvd -------------------------------------------------------------------------------- /models/chairs_playerstart/sitpose.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/sitpose.dx90.vtx -------------------------------------------------------------------------------- /models/chairs_playerstart/sitpose.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/sitpose.mdl -------------------------------------------------------------------------------- /models/chairs_playerstart/sitpose.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/sitpose.phy -------------------------------------------------------------------------------- /models/chairs_playerstart/sitpose.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/sitpose.vvd -------------------------------------------------------------------------------- /models/chairs_playerstart/sitposealt.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/sitposealt.dx90.vtx -------------------------------------------------------------------------------- /models/chairs_playerstart/sitposealt.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/sitposealt.mdl -------------------------------------------------------------------------------- /models/chairs_playerstart/sitposealt.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/sitposealt.phy -------------------------------------------------------------------------------- /models/chairs_playerstart/sitposealt.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/sitposealt.vvd -------------------------------------------------------------------------------- /models/chairs_playerstart/standingpose.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/standingpose.dx90.vtx -------------------------------------------------------------------------------- /models/chairs_playerstart/standingpose.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/standingpose.mdl -------------------------------------------------------------------------------- /models/chairs_playerstart/standingpose.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/standingpose.phy -------------------------------------------------------------------------------- /models/chairs_playerstart/standingpose.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/chairs_playerstart/standingpose.vvd -------------------------------------------------------------------------------- /models/engines/1cylbig.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylbig.dx90.vtx -------------------------------------------------------------------------------- /models/engines/1cylbig.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylbig.mdl -------------------------------------------------------------------------------- /models/engines/1cylbig.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylbig.phy -------------------------------------------------------------------------------- /models/engines/1cylbig.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylbig.vvd -------------------------------------------------------------------------------- /models/engines/1cylmed.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylmed.dx90.vtx -------------------------------------------------------------------------------- /models/engines/1cylmed.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylmed.mdl -------------------------------------------------------------------------------- /models/engines/1cylmed.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylmed.phy -------------------------------------------------------------------------------- /models/engines/1cylmed.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylmed.vvd -------------------------------------------------------------------------------- /models/engines/1cylsml.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylsml.dx90.vtx -------------------------------------------------------------------------------- /models/engines/1cylsml.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylsml.mdl -------------------------------------------------------------------------------- /models/engines/1cylsml.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylsml.phy -------------------------------------------------------------------------------- /models/engines/1cylsml.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/1cylsml.vvd -------------------------------------------------------------------------------- /models/engines/b4med.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b4med.dx90.vtx -------------------------------------------------------------------------------- /models/engines/b4med.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b4med.mdl -------------------------------------------------------------------------------- /models/engines/b4med.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b4med.phy -------------------------------------------------------------------------------- /models/engines/b4med.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b4med.vvd -------------------------------------------------------------------------------- /models/engines/b4small.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b4small.dx90.vtx -------------------------------------------------------------------------------- /models/engines/b4small.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b4small.mdl -------------------------------------------------------------------------------- /models/engines/b4small.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b4small.phy -------------------------------------------------------------------------------- /models/engines/b4small.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b4small.vvd -------------------------------------------------------------------------------- /models/engines/b6large.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6large.dx90.vtx -------------------------------------------------------------------------------- /models/engines/b6large.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6large.mdl -------------------------------------------------------------------------------- /models/engines/b6large.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6large.phy -------------------------------------------------------------------------------- /models/engines/b6large.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6large.vvd -------------------------------------------------------------------------------- /models/engines/b6med.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6med.dx90.vtx -------------------------------------------------------------------------------- /models/engines/b6med.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6med.mdl -------------------------------------------------------------------------------- /models/engines/b6med.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6med.phy -------------------------------------------------------------------------------- /models/engines/b6med.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6med.vvd -------------------------------------------------------------------------------- /models/engines/b6small.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6small.dx90.vtx -------------------------------------------------------------------------------- /models/engines/b6small.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6small.mdl -------------------------------------------------------------------------------- /models/engines/b6small.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6small.phy -------------------------------------------------------------------------------- /models/engines/b6small.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/b6small.vvd -------------------------------------------------------------------------------- /models/engines/emotor-standalone-big.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-big.dx90.vtx -------------------------------------------------------------------------------- /models/engines/emotor-standalone-big.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-big.mdl -------------------------------------------------------------------------------- /models/engines/emotor-standalone-big.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-big.phy -------------------------------------------------------------------------------- /models/engines/emotor-standalone-big.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-big.vvd -------------------------------------------------------------------------------- /models/engines/emotor-standalone-mid.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-mid.dx90.vtx -------------------------------------------------------------------------------- /models/engines/emotor-standalone-mid.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-mid.mdl -------------------------------------------------------------------------------- /models/engines/emotor-standalone-mid.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-mid.phy -------------------------------------------------------------------------------- /models/engines/emotor-standalone-mid.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-mid.vvd -------------------------------------------------------------------------------- /models/engines/emotor-standalone-sml.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-sml.dx90.vtx -------------------------------------------------------------------------------- /models/engines/emotor-standalone-sml.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-sml.mdl -------------------------------------------------------------------------------- /models/engines/emotor-standalone-sml.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-sml.phy -------------------------------------------------------------------------------- /models/engines/emotor-standalone-sml.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-sml.vvd -------------------------------------------------------------------------------- /models/engines/emotor-standalone-tiny.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-tiny.dx90.vtx -------------------------------------------------------------------------------- /models/engines/emotor-standalone-tiny.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-tiny.mdl -------------------------------------------------------------------------------- /models/engines/emotor-standalone-tiny.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-tiny.phy -------------------------------------------------------------------------------- /models/engines/emotor-standalone-tiny.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotor-standalone-tiny.vvd -------------------------------------------------------------------------------- /models/engines/emotorlarge.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorlarge.dx90.vtx -------------------------------------------------------------------------------- /models/engines/emotorlarge.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorlarge.mdl -------------------------------------------------------------------------------- /models/engines/emotorlarge.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorlarge.phy -------------------------------------------------------------------------------- /models/engines/emotorlarge.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorlarge.vvd -------------------------------------------------------------------------------- /models/engines/emotorlarge2.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorlarge2.dx90.vtx -------------------------------------------------------------------------------- /models/engines/emotorlarge2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorlarge2.mdl -------------------------------------------------------------------------------- /models/engines/emotorlarge2.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorlarge2.phy -------------------------------------------------------------------------------- /models/engines/emotorlarge2.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorlarge2.vvd -------------------------------------------------------------------------------- /models/engines/emotormed.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotormed.dx90.vtx -------------------------------------------------------------------------------- /models/engines/emotormed.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotormed.mdl -------------------------------------------------------------------------------- /models/engines/emotormed.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotormed.phy -------------------------------------------------------------------------------- /models/engines/emotormed.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotormed.vvd -------------------------------------------------------------------------------- /models/engines/emotormed2.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotormed2.dx90.vtx -------------------------------------------------------------------------------- /models/engines/emotormed2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotormed2.mdl -------------------------------------------------------------------------------- /models/engines/emotormed2.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotormed2.phy -------------------------------------------------------------------------------- /models/engines/emotormed2.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotormed2.vvd -------------------------------------------------------------------------------- /models/engines/emotorsmall.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorsmall.dx90.vtx -------------------------------------------------------------------------------- /models/engines/emotorsmall.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorsmall.mdl -------------------------------------------------------------------------------- /models/engines/emotorsmall.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorsmall.phy -------------------------------------------------------------------------------- /models/engines/emotorsmall.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorsmall.vvd -------------------------------------------------------------------------------- /models/engines/emotorsmall2.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorsmall2.dx90.vtx -------------------------------------------------------------------------------- /models/engines/emotorsmall2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorsmall2.mdl -------------------------------------------------------------------------------- /models/engines/emotorsmall2.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorsmall2.phy -------------------------------------------------------------------------------- /models/engines/emotorsmall2.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/emotorsmall2.vvd -------------------------------------------------------------------------------- /models/engines/flywheelclutchb.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchb.dx90.vtx -------------------------------------------------------------------------------- /models/engines/flywheelclutchb.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchb.mdl -------------------------------------------------------------------------------- /models/engines/flywheelclutchb.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchb.phy -------------------------------------------------------------------------------- /models/engines/flywheelclutchb.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchb.vvd -------------------------------------------------------------------------------- /models/engines/flywheelclutchm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchm.dx90.vtx -------------------------------------------------------------------------------- /models/engines/flywheelclutchm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchm.mdl -------------------------------------------------------------------------------- /models/engines/flywheelclutchm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchm.phy -------------------------------------------------------------------------------- /models/engines/flywheelclutchm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchm.vvd -------------------------------------------------------------------------------- /models/engines/flywheelclutchs.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchs.dx90.vtx -------------------------------------------------------------------------------- /models/engines/flywheelclutchs.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchs.mdl -------------------------------------------------------------------------------- /models/engines/flywheelclutchs.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchs.phy -------------------------------------------------------------------------------- /models/engines/flywheelclutchs.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutchs.vvd -------------------------------------------------------------------------------- /models/engines/flywheelclutcht.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutcht.dx90.vtx -------------------------------------------------------------------------------- /models/engines/flywheelclutcht.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutcht.mdl -------------------------------------------------------------------------------- /models/engines/flywheelclutcht.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutcht.phy -------------------------------------------------------------------------------- /models/engines/flywheelclutcht.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/flywheelclutcht.vvd -------------------------------------------------------------------------------- /models/engines/gasturbine_l.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_l.dx90.vtx -------------------------------------------------------------------------------- /models/engines/gasturbine_l.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_l.mdl -------------------------------------------------------------------------------- /models/engines/gasturbine_l.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_l.phy -------------------------------------------------------------------------------- /models/engines/gasturbine_l.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_l.vvd -------------------------------------------------------------------------------- /models/engines/gasturbine_m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/gasturbine_m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_m.mdl -------------------------------------------------------------------------------- /models/engines/gasturbine_m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_m.phy -------------------------------------------------------------------------------- /models/engines/gasturbine_m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_m.vvd -------------------------------------------------------------------------------- /models/engines/gasturbine_s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/gasturbine_s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_s.mdl -------------------------------------------------------------------------------- /models/engines/gasturbine_s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_s.phy -------------------------------------------------------------------------------- /models/engines/gasturbine_s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/gasturbine_s.vvd -------------------------------------------------------------------------------- /models/engines/inline2b.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2b.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline2b.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2b.mdl -------------------------------------------------------------------------------- /models/engines/inline2b.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2b.phy -------------------------------------------------------------------------------- /models/engines/inline2b.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2b.vvd -------------------------------------------------------------------------------- /models/engines/inline2m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline2m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2m.mdl -------------------------------------------------------------------------------- /models/engines/inline2m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2m.phy -------------------------------------------------------------------------------- /models/engines/inline2m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2m.vvd -------------------------------------------------------------------------------- /models/engines/inline2s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline2s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2s.mdl -------------------------------------------------------------------------------- /models/engines/inline2s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2s.phy -------------------------------------------------------------------------------- /models/engines/inline2s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline2s.vvd -------------------------------------------------------------------------------- /models/engines/inline3b.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3b.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline3b.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3b.mdl -------------------------------------------------------------------------------- /models/engines/inline3b.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3b.phy -------------------------------------------------------------------------------- /models/engines/inline3b.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3b.vvd -------------------------------------------------------------------------------- /models/engines/inline3m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline3m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3m.mdl -------------------------------------------------------------------------------- /models/engines/inline3m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3m.phy -------------------------------------------------------------------------------- /models/engines/inline3m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3m.vvd -------------------------------------------------------------------------------- /models/engines/inline3s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline3s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3s.mdl -------------------------------------------------------------------------------- /models/engines/inline3s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3s.phy -------------------------------------------------------------------------------- /models/engines/inline3s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline3s.vvd -------------------------------------------------------------------------------- /models/engines/inline4l.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4l.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline4l.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4l.mdl -------------------------------------------------------------------------------- /models/engines/inline4l.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4l.phy -------------------------------------------------------------------------------- /models/engines/inline4l.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4l.vvd -------------------------------------------------------------------------------- /models/engines/inline4m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline4m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4m.mdl -------------------------------------------------------------------------------- /models/engines/inline4m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4m.phy -------------------------------------------------------------------------------- /models/engines/inline4m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4m.vvd -------------------------------------------------------------------------------- /models/engines/inline4s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline4s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4s.mdl -------------------------------------------------------------------------------- /models/engines/inline4s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4s.phy -------------------------------------------------------------------------------- /models/engines/inline4s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline4s.vvd -------------------------------------------------------------------------------- /models/engines/inline5b.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5b.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline5b.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5b.mdl -------------------------------------------------------------------------------- /models/engines/inline5b.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5b.phy -------------------------------------------------------------------------------- /models/engines/inline5b.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5b.vvd -------------------------------------------------------------------------------- /models/engines/inline5m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline5m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5m.mdl -------------------------------------------------------------------------------- /models/engines/inline5m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5m.phy -------------------------------------------------------------------------------- /models/engines/inline5m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5m.vvd -------------------------------------------------------------------------------- /models/engines/inline5s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline5s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5s.mdl -------------------------------------------------------------------------------- /models/engines/inline5s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5s.phy -------------------------------------------------------------------------------- /models/engines/inline5s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline5s.vvd -------------------------------------------------------------------------------- /models/engines/inline6l.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6l.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline6l.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6l.mdl -------------------------------------------------------------------------------- /models/engines/inline6l.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6l.phy -------------------------------------------------------------------------------- /models/engines/inline6l.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6l.vvd -------------------------------------------------------------------------------- /models/engines/inline6m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline6m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6m.mdl -------------------------------------------------------------------------------- /models/engines/inline6m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6m.phy -------------------------------------------------------------------------------- /models/engines/inline6m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6m.vvd -------------------------------------------------------------------------------- /models/engines/inline6s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/inline6s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6s.mdl -------------------------------------------------------------------------------- /models/engines/inline6s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6s.phy -------------------------------------------------------------------------------- /models/engines/inline6s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/inline6s.vvd -------------------------------------------------------------------------------- /models/engines/linear_l.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_l.dx90.vtx -------------------------------------------------------------------------------- /models/engines/linear_l.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_l.mdl -------------------------------------------------------------------------------- /models/engines/linear_l.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_l.phy -------------------------------------------------------------------------------- /models/engines/linear_l.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_l.vvd -------------------------------------------------------------------------------- /models/engines/linear_m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/linear_m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_m.mdl -------------------------------------------------------------------------------- /models/engines/linear_m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_m.phy -------------------------------------------------------------------------------- /models/engines/linear_m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_m.vvd -------------------------------------------------------------------------------- /models/engines/linear_s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/linear_s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_s.mdl -------------------------------------------------------------------------------- /models/engines/linear_s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_s.phy -------------------------------------------------------------------------------- /models/engines/linear_s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/linear_s.vvd -------------------------------------------------------------------------------- /models/engines/radial7l.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7l.dx90.vtx -------------------------------------------------------------------------------- /models/engines/radial7l.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7l.mdl -------------------------------------------------------------------------------- /models/engines/radial7l.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7l.phy -------------------------------------------------------------------------------- /models/engines/radial7l.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7l.vvd -------------------------------------------------------------------------------- /models/engines/radial7m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/radial7m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7m.mdl -------------------------------------------------------------------------------- /models/engines/radial7m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7m.phy -------------------------------------------------------------------------------- /models/engines/radial7m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7m.vvd -------------------------------------------------------------------------------- /models/engines/radial7s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/radial7s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7s.mdl -------------------------------------------------------------------------------- /models/engines/radial7s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7s.phy -------------------------------------------------------------------------------- /models/engines/radial7s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/radial7s.vvd -------------------------------------------------------------------------------- /models/engines/t5large.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5large.dx90.vtx -------------------------------------------------------------------------------- /models/engines/t5large.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5large.mdl -------------------------------------------------------------------------------- /models/engines/t5large.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5large.phy -------------------------------------------------------------------------------- /models/engines/t5large.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5large.vvd -------------------------------------------------------------------------------- /models/engines/t5med.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5med.dx90.vtx -------------------------------------------------------------------------------- /models/engines/t5med.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5med.mdl -------------------------------------------------------------------------------- /models/engines/t5med.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5med.phy -------------------------------------------------------------------------------- /models/engines/t5med.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5med.vvd -------------------------------------------------------------------------------- /models/engines/t5small.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5small.dx90.vtx -------------------------------------------------------------------------------- /models/engines/t5small.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5small.mdl -------------------------------------------------------------------------------- /models/engines/t5small.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5small.phy -------------------------------------------------------------------------------- /models/engines/t5small.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/t5small.vvd -------------------------------------------------------------------------------- /models/engines/transaxial_l.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_l.dx90.vtx -------------------------------------------------------------------------------- /models/engines/transaxial_l.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_l.mdl -------------------------------------------------------------------------------- /models/engines/transaxial_l.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_l.phy -------------------------------------------------------------------------------- /models/engines/transaxial_l.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_l.vvd -------------------------------------------------------------------------------- /models/engines/transaxial_m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/transaxial_m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_m.mdl -------------------------------------------------------------------------------- /models/engines/transaxial_m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_m.phy -------------------------------------------------------------------------------- /models/engines/transaxial_m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_m.vvd -------------------------------------------------------------------------------- /models/engines/transaxial_s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/transaxial_s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_s.mdl -------------------------------------------------------------------------------- /models/engines/transaxial_s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_s.phy -------------------------------------------------------------------------------- /models/engines/transaxial_s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/transaxial_s.vvd -------------------------------------------------------------------------------- /models/engines/turbine_l.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_l.dx90.vtx -------------------------------------------------------------------------------- /models/engines/turbine_l.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_l.mdl -------------------------------------------------------------------------------- /models/engines/turbine_l.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_l.phy -------------------------------------------------------------------------------- /models/engines/turbine_l.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_l.vvd -------------------------------------------------------------------------------- /models/engines/turbine_m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/turbine_m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_m.mdl -------------------------------------------------------------------------------- /models/engines/turbine_m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_m.phy -------------------------------------------------------------------------------- /models/engines/turbine_m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_m.vvd -------------------------------------------------------------------------------- /models/engines/turbine_s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/turbine_s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_s.mdl -------------------------------------------------------------------------------- /models/engines/turbine_s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_s.phy -------------------------------------------------------------------------------- /models/engines/turbine_s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/turbine_s.vvd -------------------------------------------------------------------------------- /models/engines/v-twinl2.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twinl2.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v-twinl2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twinl2.mdl -------------------------------------------------------------------------------- /models/engines/v-twinl2.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twinl2.phy -------------------------------------------------------------------------------- /models/engines/v-twinl2.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twinl2.vvd -------------------------------------------------------------------------------- /models/engines/v-twinm2.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twinm2.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v-twinm2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twinm2.mdl -------------------------------------------------------------------------------- /models/engines/v-twinm2.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twinm2.phy -------------------------------------------------------------------------------- /models/engines/v-twinm2.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twinm2.vvd -------------------------------------------------------------------------------- /models/engines/v-twins2.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twins2.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v-twins2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twins2.mdl -------------------------------------------------------------------------------- /models/engines/v-twins2.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twins2.phy -------------------------------------------------------------------------------- /models/engines/v-twins2.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v-twins2.vvd -------------------------------------------------------------------------------- /models/engines/v10big.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10big.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v10big.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10big.mdl -------------------------------------------------------------------------------- /models/engines/v10big.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10big.phy -------------------------------------------------------------------------------- /models/engines/v10big.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10big.vvd -------------------------------------------------------------------------------- /models/engines/v10med.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10med.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v10med.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10med.mdl -------------------------------------------------------------------------------- /models/engines/v10med.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10med.phy -------------------------------------------------------------------------------- /models/engines/v10med.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10med.vvd -------------------------------------------------------------------------------- /models/engines/v10sml.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10sml.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v10sml.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10sml.mdl -------------------------------------------------------------------------------- /models/engines/v10sml.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10sml.phy -------------------------------------------------------------------------------- /models/engines/v10sml.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v10sml.vvd -------------------------------------------------------------------------------- /models/engines/v12l.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12l.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v12l.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12l.mdl -------------------------------------------------------------------------------- /models/engines/v12l.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12l.phy -------------------------------------------------------------------------------- /models/engines/v12l.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12l.vvd -------------------------------------------------------------------------------- /models/engines/v12m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v12m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12m.mdl -------------------------------------------------------------------------------- /models/engines/v12m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12m.phy -------------------------------------------------------------------------------- /models/engines/v12m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12m.vvd -------------------------------------------------------------------------------- /models/engines/v12s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v12s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12s.mdl -------------------------------------------------------------------------------- /models/engines/v12s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12s.phy -------------------------------------------------------------------------------- /models/engines/v12s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v12s.vvd -------------------------------------------------------------------------------- /models/engines/v4l.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4l.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v4l.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4l.mdl -------------------------------------------------------------------------------- /models/engines/v4l.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4l.phy -------------------------------------------------------------------------------- /models/engines/v4l.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4l.vvd -------------------------------------------------------------------------------- /models/engines/v4m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v4m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4m.mdl -------------------------------------------------------------------------------- /models/engines/v4m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4m.phy -------------------------------------------------------------------------------- /models/engines/v4m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4m.vvd -------------------------------------------------------------------------------- /models/engines/v4s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v4s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4s.mdl -------------------------------------------------------------------------------- /models/engines/v4s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4s.phy -------------------------------------------------------------------------------- /models/engines/v4s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v4s.vvd -------------------------------------------------------------------------------- /models/engines/v6large.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6large.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v6large.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6large.mdl -------------------------------------------------------------------------------- /models/engines/v6large.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6large.phy -------------------------------------------------------------------------------- /models/engines/v6large.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6large.vvd -------------------------------------------------------------------------------- /models/engines/v6med.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6med.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v6med.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6med.mdl -------------------------------------------------------------------------------- /models/engines/v6med.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6med.phy -------------------------------------------------------------------------------- /models/engines/v6med.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6med.vvd -------------------------------------------------------------------------------- /models/engines/v6small.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6small.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v6small.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6small.mdl -------------------------------------------------------------------------------- /models/engines/v6small.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6small.phy -------------------------------------------------------------------------------- /models/engines/v6small.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v6small.vvd -------------------------------------------------------------------------------- /models/engines/v8l.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8l.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v8l.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8l.mdl -------------------------------------------------------------------------------- /models/engines/v8l.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8l.phy -------------------------------------------------------------------------------- /models/engines/v8l.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8l.vvd -------------------------------------------------------------------------------- /models/engines/v8m.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8m.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v8m.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8m.mdl -------------------------------------------------------------------------------- /models/engines/v8m.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8m.phy -------------------------------------------------------------------------------- /models/engines/v8m.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8m.vvd -------------------------------------------------------------------------------- /models/engines/v8s.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8s.dx90.vtx -------------------------------------------------------------------------------- /models/engines/v8s.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8s.mdl -------------------------------------------------------------------------------- /models/engines/v8s.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8s.phy -------------------------------------------------------------------------------- /models/engines/v8s.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/v8s.vvd -------------------------------------------------------------------------------- /models/engines/wankel_2_med.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_2_med.dx90.vtx -------------------------------------------------------------------------------- /models/engines/wankel_2_med.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_2_med.mdl -------------------------------------------------------------------------------- /models/engines/wankel_2_med.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_2_med.phy -------------------------------------------------------------------------------- /models/engines/wankel_2_med.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_2_med.vvd -------------------------------------------------------------------------------- /models/engines/wankel_2_small.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_2_small.dx90.vtx -------------------------------------------------------------------------------- /models/engines/wankel_2_small.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_2_small.mdl -------------------------------------------------------------------------------- /models/engines/wankel_2_small.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_2_small.phy -------------------------------------------------------------------------------- /models/engines/wankel_2_small.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_2_small.vvd -------------------------------------------------------------------------------- /models/engines/wankel_3_med.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_3_med.dx90.vtx -------------------------------------------------------------------------------- /models/engines/wankel_3_med.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_3_med.mdl -------------------------------------------------------------------------------- /models/engines/wankel_3_med.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_3_med.phy -------------------------------------------------------------------------------- /models/engines/wankel_3_med.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_3_med.vvd -------------------------------------------------------------------------------- /models/engines/wankel_4_med.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_4_med.dx90.vtx -------------------------------------------------------------------------------- /models/engines/wankel_4_med.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_4_med.mdl -------------------------------------------------------------------------------- /models/engines/wankel_4_med.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_4_med.phy -------------------------------------------------------------------------------- /models/engines/wankel_4_med.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/engines/wankel_4_med.vvd -------------------------------------------------------------------------------- /models/howitzer/howitzer_105mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/howitzer/howitzer_105mm.dx90.vtx -------------------------------------------------------------------------------- /models/howitzer/howitzer_105mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/howitzer/howitzer_105mm.mdl -------------------------------------------------------------------------------- /models/howitzer/howitzer_105mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/howitzer/howitzer_105mm.phy -------------------------------------------------------------------------------- /models/howitzer/howitzer_105mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/howitzer/howitzer_105mm.vvd -------------------------------------------------------------------------------- /models/launcher/40mmgl.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/launcher/40mmgl.dx90.vtx -------------------------------------------------------------------------------- /models/launcher/40mmgl.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/launcher/40mmgl.mdl -------------------------------------------------------------------------------- /models/launcher/40mmgl.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/launcher/40mmgl.phy -------------------------------------------------------------------------------- /models/launcher/40mmgl.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/launcher/40mmgl.vvd -------------------------------------------------------------------------------- /models/launcher/40mmsl.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/launcher/40mmsl.dx90.vtx -------------------------------------------------------------------------------- /models/launcher/40mmsl.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/launcher/40mmsl.mdl -------------------------------------------------------------------------------- /models/launcher/40mmsl.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/launcher/40mmsl.phy -------------------------------------------------------------------------------- /models/launcher/40mmsl.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/launcher/40mmsl.vvd -------------------------------------------------------------------------------- /models/machinegun/machinegun_20mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/machinegun/machinegun_20mm.dx90.vtx -------------------------------------------------------------------------------- /models/machinegun/machinegun_20mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/machinegun/machinegun_20mm.mdl -------------------------------------------------------------------------------- /models/machinegun/machinegun_20mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/machinegun/machinegun_20mm.phy -------------------------------------------------------------------------------- /models/machinegun/machinegun_20mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/machinegun/machinegun_20mm.vvd -------------------------------------------------------------------------------- /models/machinegun/machinegun_40mm_compact.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/machinegun/machinegun_40mm_compact.dx90.vtx -------------------------------------------------------------------------------- /models/machinegun/machinegun_40mm_compact.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/machinegun/machinegun_40mm_compact.mdl -------------------------------------------------------------------------------- /models/machinegun/machinegun_40mm_compact.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/machinegun/machinegun_40mm_compact.phy -------------------------------------------------------------------------------- /models/machinegun/machinegun_40mm_compact.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/machinegun/machinegun_40mm_compact.vvd -------------------------------------------------------------------------------- /models/mortar/mortar_120mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/mortar/mortar_120mm.dx90.vtx -------------------------------------------------------------------------------- /models/mortar/mortar_120mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/mortar/mortar_120mm.mdl -------------------------------------------------------------------------------- /models/mortar/mortar_120mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/mortar/mortar_120mm.phy -------------------------------------------------------------------------------- /models/mortar/mortar_120mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/mortar/mortar_120mm.vvd -------------------------------------------------------------------------------- /models/munitions/dart_100mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/dart_100mm.dx90.vtx -------------------------------------------------------------------------------- /models/munitions/dart_100mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/dart_100mm.mdl -------------------------------------------------------------------------------- /models/munitions/dart_100mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/dart_100mm.phy -------------------------------------------------------------------------------- /models/munitions/dart_100mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/dart_100mm.vvd -------------------------------------------------------------------------------- /models/munitions/round_100mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm.dx90.vtx -------------------------------------------------------------------------------- /models/munitions/round_100mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm.mdl -------------------------------------------------------------------------------- /models/munitions/round_100mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm.phy -------------------------------------------------------------------------------- /models/munitions/round_100mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm.vvd -------------------------------------------------------------------------------- /models/munitions/round_100mm_ap.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_ap.dx90.vtx -------------------------------------------------------------------------------- /models/munitions/round_100mm_ap.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_ap.mdl -------------------------------------------------------------------------------- /models/munitions/round_100mm_ap.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_ap.phy -------------------------------------------------------------------------------- /models/munitions/round_100mm_ap.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_ap.vvd -------------------------------------------------------------------------------- /models/munitions/round_100mm_ap_shot.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_ap_shot.dx90.vtx -------------------------------------------------------------------------------- /models/munitions/round_100mm_ap_shot.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_ap_shot.mdl -------------------------------------------------------------------------------- /models/munitions/round_100mm_ap_shot.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_ap_shot.phy -------------------------------------------------------------------------------- /models/munitions/round_100mm_ap_shot.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_ap_shot.vvd -------------------------------------------------------------------------------- /models/munitions/round_100mm_mortar_shot.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_mortar_shot.dx90.vtx -------------------------------------------------------------------------------- /models/munitions/round_100mm_mortar_shot.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_mortar_shot.mdl -------------------------------------------------------------------------------- /models/munitions/round_100mm_mortar_shot.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_mortar_shot.phy -------------------------------------------------------------------------------- /models/munitions/round_100mm_mortar_shot.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_mortar_shot.vvd -------------------------------------------------------------------------------- /models/munitions/round_100mm_shot.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_shot.dx90.vtx -------------------------------------------------------------------------------- /models/munitions/round_100mm_shot.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_shot.mdl -------------------------------------------------------------------------------- /models/munitions/round_100mm_shot.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_shot.phy -------------------------------------------------------------------------------- /models/munitions/round_100mm_shot.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_shot.vvd -------------------------------------------------------------------------------- /models/munitions/round_100mm_shot_ap.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_shot_ap.dx90.vtx -------------------------------------------------------------------------------- /models/munitions/round_100mm_shot_ap.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_shot_ap.mdl -------------------------------------------------------------------------------- /models/munitions/round_100mm_shot_ap.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_shot_ap.phy -------------------------------------------------------------------------------- /models/munitions/round_100mm_shot_ap.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/round_100mm_shot_ap.vvd -------------------------------------------------------------------------------- /models/munitions/sabot_piece_100mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/sabot_piece_100mm.dx90.vtx -------------------------------------------------------------------------------- /models/munitions/sabot_piece_100mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/sabot_piece_100mm.mdl -------------------------------------------------------------------------------- /models/munitions/sabot_piece_100mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/sabot_piece_100mm.phy -------------------------------------------------------------------------------- /models/munitions/sabot_piece_100mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/sabot_piece_100mm.vvd -------------------------------------------------------------------------------- /models/munitions/shell_casing.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/shell_casing.dx90.vtx -------------------------------------------------------------------------------- /models/munitions/shell_casing.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/shell_casing.mdl -------------------------------------------------------------------------------- /models/munitions/shell_casing.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/shell_casing.phy -------------------------------------------------------------------------------- /models/munitions/shell_casing.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/munitions/shell_casing.vvd -------------------------------------------------------------------------------- /models/piledriver/piledriver_100mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/piledriver/piledriver_100mm.dx90.vtx -------------------------------------------------------------------------------- /models/piledriver/piledriver_100mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/piledriver/piledriver_100mm.mdl -------------------------------------------------------------------------------- /models/piledriver/piledriver_100mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/piledriver/piledriver_100mm.phy -------------------------------------------------------------------------------- /models/piledriver/piledriver_100mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/piledriver/piledriver_100mm.vvd -------------------------------------------------------------------------------- /models/rotarycannon/kw/20mmRAC.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/rotarycannon/kw/20mmRAC.dx90.vtx -------------------------------------------------------------------------------- /models/rotarycannon/kw/20mmRAC.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/rotarycannon/kw/20mmRAC.phy -------------------------------------------------------------------------------- /models/rotarycannon/kw/20mmrac.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/rotarycannon/kw/20mmrac.mdl -------------------------------------------------------------------------------- /models/rotarycannon/kw/20mmrac.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/rotarycannon/kw/20mmrac.vvd -------------------------------------------------------------------------------- /models/tankgun/tankgun_100mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_100mm.dx90.vtx -------------------------------------------------------------------------------- /models/tankgun/tankgun_100mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_100mm.mdl -------------------------------------------------------------------------------- /models/tankgun/tankgun_100mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_100mm.phy -------------------------------------------------------------------------------- /models/tankgun/tankgun_100mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_100mm.vvd -------------------------------------------------------------------------------- /models/tankgun/tankgun_al_100mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_al_100mm.dx90.vtx -------------------------------------------------------------------------------- /models/tankgun/tankgun_al_100mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_al_100mm.mdl -------------------------------------------------------------------------------- /models/tankgun/tankgun_al_100mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_al_100mm.phy -------------------------------------------------------------------------------- /models/tankgun/tankgun_al_100mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_al_100mm.vvd -------------------------------------------------------------------------------- /models/tankgun/tankgun_short_100mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_short_100mm.dx90.vtx -------------------------------------------------------------------------------- /models/tankgun/tankgun_short_100mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_short_100mm.mdl -------------------------------------------------------------------------------- /models/tankgun/tankgun_short_100mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_short_100mm.phy -------------------------------------------------------------------------------- /models/tankgun/tankgun_short_100mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun/tankgun_short_100mm.vvd -------------------------------------------------------------------------------- /models/tankgun_new/tankgun_100mm.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun_new/tankgun_100mm.dx90.vtx -------------------------------------------------------------------------------- /models/tankgun_new/tankgun_100mm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun_new/tankgun_100mm.mdl -------------------------------------------------------------------------------- /models/tankgun_new/tankgun_100mm.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun_new/tankgun_100mm.phy -------------------------------------------------------------------------------- /models/tankgun_new/tankgun_100mm.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/tankgun_new/tankgun_100mm.vvd -------------------------------------------------------------------------------- /models/vehicles/driver_pod.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/vehicles/driver_pod.dx90.vtx -------------------------------------------------------------------------------- /models/vehicles/driver_pod.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/vehicles/driver_pod.mdl -------------------------------------------------------------------------------- /models/vehicles/driver_pod.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/vehicles/driver_pod.phy -------------------------------------------------------------------------------- /models/vehicles/driver_pod.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/vehicles/driver_pod.vvd -------------------------------------------------------------------------------- /models/vehicles/pilot_seat.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/vehicles/pilot_seat.dx90.vtx -------------------------------------------------------------------------------- /models/vehicles/pilot_seat.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/vehicles/pilot_seat.mdl -------------------------------------------------------------------------------- /models/vehicles/pilot_seat.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/vehicles/pilot_seat.phy -------------------------------------------------------------------------------- /models/vehicles/pilot_seat.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/vehicles/pilot_seat.vvd -------------------------------------------------------------------------------- /models/weapons/c_cuttingtorch.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/weapons/c_cuttingtorch.dx90.vtx -------------------------------------------------------------------------------- /models/weapons/c_cuttingtorch.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/weapons/c_cuttingtorch.mdl -------------------------------------------------------------------------------- /models/weapons/c_cuttingtorch.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/weapons/c_cuttingtorch.vvd -------------------------------------------------------------------------------- /models/weapons/w_cuttingtorch.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/weapons/w_cuttingtorch.dx90.vtx -------------------------------------------------------------------------------- /models/weapons/w_cuttingtorch.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/weapons/w_cuttingtorch.mdl -------------------------------------------------------------------------------- /models/weapons/w_cuttingtorch.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/weapons/w_cuttingtorch.phy -------------------------------------------------------------------------------- /models/weapons/w_cuttingtorch.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/models/weapons/w_cuttingtorch.vvd -------------------------------------------------------------------------------- /particles/acf_muzzleflashes.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/particles/acf_muzzleflashes.pcf -------------------------------------------------------------------------------- /particles/explosion1.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/particles/explosion1.pcf -------------------------------------------------------------------------------- /particles/rocket_motor.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/particles/rocket_motor.pcf -------------------------------------------------------------------------------- /resource/fonts/16segments-basic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/resource/fonts/16segments-basic.ttf -------------------------------------------------------------------------------- /sound/acf_base/engines/b4_petrollarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/b4_petrollarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/b4_petrolmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/b4_petrolmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/b4_petrolsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/b4_petrolsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/b6_petrollarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/b6_petrollarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/b6_petrolmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/b6_petrolmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/b6_petrolsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/b6_petrolsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/electric_large.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/electric_large.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/electric_medium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/electric_medium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/electric_small.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/electric_small.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i1_large.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i1_large.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i1_medium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i1_medium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i1_small.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i1_small.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i4_diesel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i4_diesel.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i4_diesel2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i4_diesel2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i4_diesellarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i4_diesellarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i4_dieselmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i4_dieselmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i4_petrollarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i4_petrollarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i4_petrolmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i4_petrolmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i4_petrolmedium2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i4_petrolmedium2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i4_petrolsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i4_petrolsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i4_petrolsmall2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i4_petrolsmall2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i4_special.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i4_special.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i5_dieselmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i5_dieselmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i5_dieselsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i5_dieselsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i5_dieselsmall2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i5_dieselsmall2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i5_petrolmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i5_petrolmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/i5_petrolsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/i5_petrolsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/l6_diesellarge2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/l6_diesellarge2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/l6_dieselmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/l6_dieselmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/l6_dieselmedium4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/l6_dieselmedium4.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/l6_dieselsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/l6_dieselsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/l6_petrollarge2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/l6_petrollarge2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/l6_petrolmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/l6_petrolmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/l6_petrolsmall2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/l6_petrolsmall2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/l6_special.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/l6_special.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/mid_on_in.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/mid_on_in.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/newl6pet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/newl6pet.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/r7_petrollarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/r7_petrollarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/r7_petrolmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/r7_petrolmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/r7_petrolsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/r7_petrolsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/turbine.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/turbine.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/turbine_large.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/turbine_large.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/turbine_medium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/turbine_medium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/turbine_small.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/turbine_small.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v10_diesellarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v10_diesellarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v10_petrolmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v10_petrolmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v10_petrolsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v10_petrolsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v10_special.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v10_special.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v12_diesellarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v12_diesellarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v12_dieselmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v12_dieselmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v12_dieselsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v12_dieselsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v12_maybach.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v12_maybach.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v12_petrollarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v12_petrollarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v12_petrollargeorig.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v12_petrollargeorig.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v12_petrolmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v12_petrolmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v12_petrolsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v12_petrolsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v12_russian.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v12_russian.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v12_special.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v12_special.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v6_diesellarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v6_diesellarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v6_petrollarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v6_petrollarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v6_petrolmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v6_petrolmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v6_petrolsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v6_petrolsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v6_petrolsmall2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v6_petrolsmall2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_diesel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_diesel.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_diesel2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_diesel2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_diesellarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_diesellarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_dieselmedium2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_dieselmedium2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_dieselsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_dieselsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_petrol.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_petrol.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_petrol2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_petrol2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_petrollarge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_petrollarge.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_petrolmedium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_petrolmedium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_petrolsmall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_petrolsmall.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_smalldiesel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_smalldiesel.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_special.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_special.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/v8_special2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/v8_special2.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/vtwin_large.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/vtwin_large.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/vtwin_medium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/vtwin_medium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/vtwin_small.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/vtwin_small.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/wankel_large.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/wankel_large.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/wankel_medium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/wankel_medium.wav -------------------------------------------------------------------------------- /sound/acf_base/engines/wankel_small.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/engines/wankel_small.wav -------------------------------------------------------------------------------- /sound/acf_base/fx/penetration1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/penetration1.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/penetration2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/penetration2.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/penetration3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/penetration3.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/penetration4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/penetration4.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/penetration5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/penetration5.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/penetration6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/penetration6.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/resupply_loop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/resupply_loop.wav -------------------------------------------------------------------------------- /sound/acf_base/fx/resupply_single.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/resupply_single.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/ricochet1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/ricochet1.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/ricochet2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/ricochet2.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/ricochet3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/ricochet3.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/ricochet4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/ricochet4.mp3 -------------------------------------------------------------------------------- /sound/acf_base/fx/turret_electric.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/turret_electric.wav -------------------------------------------------------------------------------- /sound/acf_base/fx/turret_handcrank.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/turret_handcrank.wav -------------------------------------------------------------------------------- /sound/acf_base/fx/turret_hydraulic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/fx/turret_hydraulic.wav -------------------------------------------------------------------------------- /sound/acf_base/weapons/ac_fire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/ac_fire.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/ac_fire1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/ac_fire1.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/ac_fire3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/ac_fire3.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/ac_fire4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/ac_fire4.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/ac_fire4_old.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/ac_fire4_old.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/autoloader.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/autoloader.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/cannon_fire3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/cannon_fire3.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/cannon_new.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/cannon_new.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/distancecannon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/distancecannon.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/distancehowitzer.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/distancehowitzer.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/distancemortar.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/distancemortar.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/grenadelauncher.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/grenadelauncher.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/howitzer_fire3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/howitzer_fire3.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/howitzer_new2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/howitzer_new2.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/mg_fire1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/mg_fire1.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/mg_fire2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/mg_fire2.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/mg_fire3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/mg_fire3.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/mg_fire4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/mg_fire4.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/missilefire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/missilefire.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/mortar_fire1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/mortar_fire1.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/mortar_new.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/mortar_new.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/rac_fire1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/rac_fire1.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/rac_fire2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/rac_fire2.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/sa_fire1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/sa_fire1.mp3 -------------------------------------------------------------------------------- /sound/acf_base/weapons/smoke_launch.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACF-Team/ACF-3/02f5595bec15ce048af1f69a274e3040c1b82c46/sound/acf_base/weapons/smoke_launch.mp3 --------------------------------------------------------------------------------