• 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
  • Important: Magazines in your inventory are not objects but simply string references with the same string content so you can't check which IR Strobe a unit is currently using. That way you can only carry ONE IR strobe. If you need to carry more, put them in your rucksack.

     

    Adding an IR strobe to units, even AI:

      _unit addMagazine "ACE_IRStrobe";

     

    Making AI use the IR strobe:

      ["ace_sys_irstrobe_aradd", [_unit]] call CBA_fnc_globalEvent;

     

    Creating an attached IR strobe that blinks:

      _irstrobe = "ACE_IRStrobe_Object" createVehicle  getPos  _crate;
    _irstrobe attachTo[_crate,[0,0,0],""];
    ["ace_sys_irstrobe_aradd", [_irstrobe]] call CBA_fnc_globalEvent;