• 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
  • Mission Makers

    In your mission you can exert much finer control on group markers at the global, group, or individual unit level.

     

    Global Variables

    Mission-wide settings. False means disabled, true means enabled.

    • ace_sys_tracking_markers_enabled - Enable groups to be tracked.
    • ace_sys_tracking_radio_required - Exclude tracking of units not carrying a radio.
    • ace_sys_tracking_gps_required Exclude tracking of units not carrying a gps.
    Example

    To disable the markers for all players on a server, add the following to a mission or server side addon:

      if (isServer) then {
    ace_sys_tracking_markers_enabled = false;
    publicVariable "ace_sys_tracking_markers_enabled";
    };

     

    Group Variables

    Use these on a group to override your global settings. Setting a variable to nil means the setting/override is not active, true or any other value means active.

    • ace_sys_tracking_marker_override - Disable tracking of this unit regardless of global settings.
    • ace_sys_tracking_radio_required -  Exclude tracking of units in this group if not carrying a radio.
    • ace_sys_tracking_gps_required - Exclude tracking of units in this group if not carrying a gps.

    Example:

      (group _unit) setVariable ["ace_sys_tracking_radio_required", true];

     

     

    Unit Specific Variables

    Used to override global and group settings.

     

    • ace_sys_tracking_marker_override - Disable tracking of this unit regardless of global or group settings.