From 45d6970864d193ac06cf05c99d5d050a1e32f125 Mon Sep 17 00:00:00 2001 From: MistakenHyena Date: Fri, 27 Feb 2026 21:14:54 -0500 Subject: [PATCH 1/2] Update autoloader.lua Added 50mm breach autoloader --- lua/acf/shared/guns/autoloader.lua | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/lua/acf/shared/guns/autoloader.lua b/lua/acf/shared/guns/autoloader.lua index 801deffc..a854b7b5 100644 --- a/lua/acf/shared/guns/autoloader.lua +++ b/lua/acf/shared/guns/autoloader.lua @@ -139,19 +139,36 @@ ACF_defineGun("170mmAL", { --PLACEHOLDERS until we get an actual autoloader system. +ACF_defineGun("50mmBAL", { + name = "50mm Breech Autoloader", + desc = "PLACEHOLDER. 50mm Breech Autoloader. Autoloading giving it a consistent rate of fire in all conditions.", + model = "models/tankgun_new/tankgun_50mm.mdl", + sound = "ace_weapons/multi_sound/50mm_multi.mp3", + gunclass = "AL", + caliber = 7.5, + weight = 900, + year = 1960, + rofmod = 1.2, + round = { + maxlength = 78, + propweight = 3.8 + }, + acepoints = 2000 +} ) + ACF_defineGun("75mmBAL", { name = "75mm Breech Autoloader", desc = "PLACEHOLDER. 75mm Breech Autoloader. Autoloading giving it a consistent rate of fire in all conditions.", model = "models/tankgun_new/tankgun_75mm.mdl", sound = "ace_weapons/multi_sound/75mm_multi.mp3", gunclass = "AL", - caliber = 7.5, + caliber = 5, weight = 1400, year = 1960, rofmod = 1.2, round = { - maxlength = 78, - propweight = 3.8 + maxlength = 63, + propweight = 2.1 }, acepoints = 2400 } ) @@ -222,4 +239,4 @@ ACF_defineGun("170mmBAL", { propweight = 34 }, acepoints = 5200 -} ) \ No newline at end of file +} ) From 81963e142a71de1b6b5c288220bd9216b9e3f7eb Mon Sep 17 00:00:00 2001 From: MistakenHyena Date: Fri, 27 Feb 2026 21:16:57 -0500 Subject: [PATCH 2/2] Update autoloader.lua fixed mistake --- lua/acf/shared/guns/autoloader.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lua/acf/shared/guns/autoloader.lua b/lua/acf/shared/guns/autoloader.lua index a854b7b5..598b4a00 100644 --- a/lua/acf/shared/guns/autoloader.lua +++ b/lua/acf/shared/guns/autoloader.lua @@ -145,13 +145,13 @@ ACF_defineGun("50mmBAL", { model = "models/tankgun_new/tankgun_50mm.mdl", sound = "ace_weapons/multi_sound/50mm_multi.mp3", gunclass = "AL", - caliber = 7.5, + caliber = 5, weight = 900, year = 1960, rofmod = 1.2, round = { - maxlength = 78, - propweight = 3.8 + maxlength = 63, + propweight = 2.1 }, acepoints = 2000 } ) @@ -162,13 +162,13 @@ ACF_defineGun("75mmBAL", { model = "models/tankgun_new/tankgun_75mm.mdl", sound = "ace_weapons/multi_sound/75mm_multi.mp3", gunclass = "AL", - caliber = 5, + caliber = 7.5, weight = 1400, year = 1960, rofmod = 1.2, round = { - maxlength = 63, - propweight = 2.1 + maxlength = 78, + propweight = 3.8 }, acepoints = 2400 } )