Tracking markers - Global-Conflicts-ArmA/Olsen-Framework-Arma-3 GitHub Wiki

Description

The tracking_markers module allows missions makers to select certain markers they wish to track/follow a unit on the map.

Usage

  1. Go to modules>module.sqf and enable the tracking_markers module.
  2. In the editor, place down your chosen markers that you wish for to track/follow a unit and give it a variable name.
  3. Go to modules>tracking_markers>settings.sqf

In the settings.sqf file you'll see the following

GVAR(trackedMarkers) = [](/Global-Conflicts-ArmA/Olsen-Framework-Arma-3/wiki/); - Don't touch this.
GVAR(markerUpdateInterval) = 30; - How often the markers update on the map in seconds.

["trackingMarker", test_unit] call FUNC(trackMarker);

  • trackingMarker - This is the variable of the marker(s) you placed that you wish to follow the unit.
  • test_unit - This is the variable of the unit you wish the marker to track/follow.