Requesting TargetAcquired event handler that triggers every time when group receives a new target. These targets would be same as the targets acquired by the nearTargets command.
The new command would help with performance impact since you don't need to poll nearTargets all the time
The new command could look like this:
```
addEventHandler ["TargetAcquired ",
{
params ["_group", "_targetUnit"];
}];
```