Page MenuHomeFeedback Tracker

Warning: looped for animation
New, NormalPublic

Description

Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\briefing\hubbriefing_loop.rtm differs (looped now 0)! MoveName: hubbriefing_ext
Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\spectator\hubspectator_stand.rtm differs (looped now 1)! MoveName: hubspectator_stand_contact

Details

Severity
None
Resolution
Open
Reproducibility
N/A
Operating System
Windows 7
Category
General

Event Timeline

Wulf added a subscriber: Wulf.Apr 17 2020, 11:50 AM

Hello.

Again, when did this happen, what were you doing. when this has shown up.

@Wulf just launching the game and checking rpt

Both A3 and A3 dedicated server are affected. This is a possible fix:

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

class CfgMovesBasic;
class CfgMovesMaleSdr: CfgMovesBasic
{
    class States
    {
        class CutSceneAnimationBaseZoZo;
        class HubSpectator_stand;
        class HubTemplate_Briefing;
        class HubBriefing_ext: HubTemplate_Briefing
        {
            looped = 1;
        };
        class HubBriefing_ext_Contact: CutSceneAnimationBaseZoZo
        {
            delete looped;
        };
        class HubSpectator_stand_Contact: HubSpectator_stand
        {
            delete looped;
        };
    };
};