playerTargetLock

From Bohemia Interactive Community
Jump to navigation Jump to search
Hover & click on the images for description
Only available in Development branch(es) until its release with Arma 3 patch v2.18.

Description

Description:
Get the local player's current locked target (with weapons that can lock on).
Groups:
Object Manipulation

Syntax

Syntax:
playerTargetLock
Return Value:
Array format [target, lockValue, config]:
  • target: Object - the locked object
  • lockValue: Number - in range 0..1 where 1 is fully locked
  • config: Config - used weapon's CfgWeapons config

Examples

Example 1:
playerTargetLock params ["_target", "_lock", "_cfg"]; if (_lock == 1) then { hint format ["%1 locked %2", getText (_cfg >> "displayName"), getText (configOf _target >> "displayName")]; };
Example 2:
playerTargetLock; // returns [objNull, 0, configNull] if no lock is being done

Additional Information

See also:
cursorTarget

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note