Table of Contents
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.
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.
