mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
32 lines
743 B
Plaintext
32 lines
743 B
Plaintext
/*
|
|
* Author: KoffeinFlummi
|
|
*
|
|
* Starts watching the target for sideways correction.
|
|
*
|
|
* Arguments:
|
|
* none
|
|
*
|
|
* Return Value:
|
|
* none
|
|
*/
|
|
|
|
private ["_vehicle", "_distance", "_weaponDirection"];
|
|
|
|
_vehicle = _this select 0;
|
|
_distance = _this select 1;
|
|
|
|
AGM_FCSEnabled = true;
|
|
AGM_FCSTime = time;
|
|
|
|
if (_distance == 0) then {
|
|
_distance = [5, 5000, 0] call AGM_Core_fnc_getTargetDistance; // maximum distance: 5000m, 5m precision
|
|
};
|
|
|
|
_weaponDirection = _vehicle weaponDirection currentWeapon _vehicle;
|
|
|
|
AGM_FCSPosition = [
|
|
(getPos _vehicle select 0) + _distance * (_weaponDirection select 0),
|
|
(getPos _vehicle select 1) + _distance * (_weaponDirection select 1),
|
|
(getPos _vehicle select 2) + _distance * (_weaponDirection select 2)
|
|
];
|