• View
  • Changes
  • Options
  • Related
  • Edit
  • Download | Support | Changelogs

     

    Documentation:

    General Information

    Introduction | Overview | Features | Goals and Scope | FAQ Installation | Running an ACE Server | Tracking Problems

     

    Community Information

    About Us (contact) | Compatible Mods | Contribute | Guides | Missions | Servers | Videos

     

    Developer Information

    API | Classlists | Compatibility | Modification | Resources

     

  • View
  • Changes
  • Options
  • Related
  • Edit
  • News    

    Ongoing development Wagn_feed_icon-medium-9343

       ACE 1.13 RC5 [2011-12-09. Hotfix: 2012-04-27]

     

    Stable Wagn_feed_icon-medium-9343

       ACE 1.13 for OA [2011-12-23]

       ACE 1.3 for A2 [2010-07-05] (Deprecated)

     

    Dev blogs Wagn_feed_icon-medium-9343

    1 2 next » (37)

    1 2 next » (37)

     

    Wheeled by Wagn v. 1.8.1
  • View
  • Changes
  • Options
  • Related
  • Edit
  • Addon Makers

    CQB sights

    To use CQB sighting on a model with Scope, the default eyepoint should be set at the CQB sight position (so you can look through it, or at least 'over' the scope).

    You should add a _CQB class for your rifle, without the modelOptics defined. or defined as "-".

    There are also config requirements (both attachments and cqb documented):

    class CfgSettings {
       class ACE {
           class sys_attachments {
               class Weapons {
                    class Default;
                class m16a4 {
                   class ACE_Attach: Default {
                      ACE_ATTACH_AVAILABLE[]   = { "M203", "M203_ACOG", "AIM", "ACOG" };
                      ACE_ATTACH_M203      = "M16A4_GL";
                      ACE_ATTACH_ACOG      = "m16a4_acg";
                      ACE_ATTACH_M203_ACOG   = "M16A4_ACG_GL";
                      ACE_ATTACH_AIM      = "THIS";
                   };
                };
                class M16A4_ACG_GL: M16A4 {
                   class ACE_Attach: ACE_Attach {
                      ACE_ATTACH_M203_ACOG   = "THIS";
                      ACE_ATTACH_AIM      = "M16A4";
                   };
                   class ACE_CQB {
                      ACE_CQB_SCOPE      = "THIS";
                      ACE_CQB_CQB      = "ACE_M16A4_ACG_GL_CQB";
                   };   
                };
                class ACE_M16A4_ACG_GL_CQB: M16A4_ACG_GL {
                   class ACE_CQB {
                      ACE_CQB_SCOPE      = "M16A4_ACG_GL";
                      ACE_CQB_CQB      = "THIS";
                   };
                };      
              };
           };
       };
    };