Page MenuHomeFeedback Tracker

Slow crouching movement diagonally with lowered weapon
New, NormalPublic

Description

Crouching movement with lowered weapon diagonally to the right is slower than to the left:

Details

Severity
None
Resolution
Open
Reproducibility
Always
Operating System
Windows 10 x64
Category
Movement
Steps To Reproduce
  1. Place a unit with a primary weapon in Eden.
  2. Start the mission.
  3. Lower the weapon and crouch.
  4. Move diagonally to the left (press W + A).
  5. Move diagonally to the right (press W + D).

Event Timeline

Schatten created this task.Jan 26 2023, 4:36 PM

Fix:

class CfgPatches
{
	class AnimFix
	{
		requiredAddons[] = { "A3_Anims_F_Config_Sdr" };
		requiredVersion = 1.00;
		units[] = { };
		weapons[] = { };
	};
};
class CfgAddons
{
	class PreloadAddons
	{
		class AnimFix
		{
			list[] = { "AnimFix" };
		};
	};
};

class CfgMovesBasic;
class CfgMovesMaleSdr: CfgMovesBasic
{
	class States
	{
		class AmovPknlMrunSlowWrflDfl;
		class AmovPknlMrunSlowWrflDfr: AmovPknlMrunSlowWrflDfl
		{
			delete speed;
		};
	};
};
dedmen set Ref Ticket to AIII-55531.Jan 30 2023, 10:54 AM

Another fix (also fixes tactical movement):

class CfgPatches
{
    class AnimFix
    {
        requiredAddons[] = { "A3_Anims_F_Config_Sdr" };
        requiredVersion = 1.00;
        units[] = { };
        weapons[] = { };
    };
};
class CfgAddons
{
    class PreloadAddons
    {
        class AnimFix
        {
            list[] = { "AnimFix" };
        };
    };
};

class CfgMovesBasic;
class CfgMovesMaleSdr: CfgMovesBasic
{
    class States
    {
        class AmovPknlMrunSlowWrflDfl;
        class AmovPknlMrunSlowWrflDfr: AmovPknlMrunSlowWrflDfl
        {
            delete speed;
        };
        class AmovPknlMtacSlowWrflDfr: AmovPknlMrunSlowWrflDfr
        {
            speed = 1.45;
        };
    };
};