From 4681ec66f74de6953f43b76da1b01846ea6d8b47 Mon Sep 17 00:00:00 2001 From: AChesheireCat Date: Tue, 3 Dec 2024 10:56:33 -0500 Subject: [PATCH] GTK Boxer Handling + Turret Tweaks - Increased initial acceleration to make vehicle feel more responsive - Increased braking torque to make braking feel more responsive - Decreased fording depth due to being able to operate despite the engine and exhaust being submurged by +1m of water over the hull - Swapped the gunner's HMG turret from the M2 to the M3M per the wikipedia page - Moved the countermeasures smoke from the commander's turret to the gunner's turret --- addons/miscFixes/patchCUP/config.cpp | 46 ++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/addons/miscFixes/patchCUP/config.cpp b/addons/miscFixes/patchCUP/config.cpp index 8bc4660e..13076cf9 100644 --- a/addons/miscFixes/patchCUP/config.cpp +++ b/addons/miscFixes/patchCUP/config.cpp @@ -56,6 +56,52 @@ class CfgVehicles { }; }; }; + // Tweaks to the GTK Boxer's handling (accel/braking) + HMG swap to M3M + countermeasures move to gunner + class Wheeled_APC_F: Car_F { + class NewTurret; + class Turrets { + class MainTurret: NewTurret { + class Turrets {}; + }; + }; + }; + class CUP_Boxer_Base: Wheeled_APC_F {}; + class CUP_Boxer_Base_HMG: CUP_Boxer_Base { + class CargoTurret; + class Turrets { + class MainTurret: NewTurret { + weapons[] = {"CUP_Vhmg_M3P_veh","SmokeLauncher"}; // was CUP_Vhmg_M2_veh + magazines[] = {"CUP_250Rnd_TE1_Red_Tracer_127x99_M","CUP_250Rnd_TE1_Red_Tracer_127x99_M","CUP_250Rnd_TE1_Red_Tracer_127x99_M","CUP_250Rnd_TE1_Red_Tracer_127x99_M","CUP_250Rnd_TE1_Red_Tracer_127x99_M","SmokeLauncherMag"}; // was CUP_200Rnd_TE1_Red_Tracer_127x99_M + }; + class CommanderTurret: NewTurret { + weapons[] = {}; // was "SmokeLauncher" + magazines[] = {}; // was "SmokeLauncherMag" + }; + }; + accelAidForceCoef = 2.3; // was 1.4 + accelAidForceSpd = 25; // was 5 + brakeIdleSpeed = 1.78; // was 0 + maxFordingDepth = 1.0; // was 1.5 + class Wheels { + class wheel_1_1 { + maxBrakeTorque = 20000; // was 12500 + maxHandBrakeTorque = 30000; // was 25000 + }; + }; + }; + class CUP_Boxer_Base_GMG: CUP_Boxer_Base_HMG { + class CargoTurret; + class Turrets { + class MainTurret: NewTurret { + weapons[] = {"CUP_Vgmg_HKGMG_veh","SmokeLauncher"}; // added smoke launcher + magazines[] = {"CUP_32Rnd_40mm_MK19_M","CUP_32Rnd_40mm_MK19_M","CUP_32Rnd_40mm_MK19_M","CUP_32Rnd_40mm_MK19_M","CUP_32Rnd_40mm_MK19_M","CUP_32Rnd_40mm_MK19_M","SmokeLauncherMag"}; // added smoke mag + }; + class CommanderTurret: NewTurret { + weapons[] = {}; // was "SmokeLauncher" + magazines[] = {}; // was "SmokeLauncherMag" + }; + }; + }; }; class CfgRecoils {